:root {
    --bg: #f4f8ff;
    --bg-strong: #e6f0ff;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-solid: #ffffff;
    --surface-border: rgba(255, 255, 255, 0.8);
    --line: rgba(15, 67, 176, 0.12);
    --text: #173566;
    --text-muted: #54709d;
    --primary: #0f4edb;
    --primary-strong: #06359d;
    --accent: #ff9b2f;
    --teal: #34c3d2;
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;
    --shadow-lg: 0 30px 70px rgba(18, 44, 108, 0.14);
    --shadow-md: 0 18px 40px rgba(28, 65, 145, 0.12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --content-width: min(1320px, calc(100vw - 40px));
    --font-display: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
    --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    animation: none !important;
    transition: none !important;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(88, 149, 255, 0.22), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(68, 206, 214, 0.16), transparent 22%),
        linear-gradient(180deg, #f7fbff 0%, #eef4ff 44%, #f9fbff 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sr-only,
.hp-field {
    position: absolute;
    width: 1px;
    max-width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-shell {
    position: relative;
    z-index: 1;
    width: 100%;
}

.ambient {
    position: fixed;
    inset: auto auto 10% -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(68, 206, 214, 0.2), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.ambient--two {
    inset: 8% -80px auto auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(15, 78, 219, 0.22), transparent 70%);
}

.site-main,
.site-header,
.nav-shell,
.site-footer {
    width: var(--content-width);
    margin-inline: auto;
}

.site-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-bottom: 52px;
    min-width: 0;
}

.glass-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-header {
    position: relative;
    z-index: 20;
    padding: 14px 0 12px;
}

.nav-shell {
    position: sticky;
    top: 8px;
    z-index: 32;
    margin-bottom: 14px;
}

.topbar,
.main-nav,
.category-panel,
.hero-card,
.article-spotlight,
.section-block,
.newsletter,
.footer-grid,
.about-band,
.catalog-hero,
.catalog-sidebar,
.empty-state,
.product-hero__media,
.product-hero__content,
.panel-card,
.panel-intro {
    border-radius: var(--radius-lg);
}

.topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 18px 22px;
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: fit-content;
}

.brand__logo {
    width: clamp(180px, 18vw, 248px);
    height: auto;
    object-fit: contain;
}

.brand--footer .brand__logo {
    width: 220px;
}

.searchbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px 8px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(13, 63, 164, 0.08);
}

.searchbar input,
.newsletter__form input,
.catalog-filter-form input,
.catalog-filter-form select,
.quote-form input,
.quote-form textarea,
.panel-card input,
.panel-card select,
.panel-card textarea {
    width: 100%;
    border: 1px solid rgba(18, 74, 182, 0.12);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 16px;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.catalog-filter-form input,
.catalog-filter-form select {
    min-height: 46px;
    border-radius: 14px;
    padding: 11px 12px;
}

.searchbar input {
    border: none;
    box-shadow: none;
    background: transparent;
    padding-inline: 0;
}

.searchbar input:focus,
.newsletter__form input:focus,
.catalog-filter-form input:focus,
.catalog-filter-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.panel-card input:focus,
.panel-card select:focus,
.panel-card textarea:focus {
    outline: none;
    border-color: rgba(15, 78, 219, 0.34);
    box-shadow: 0 0 0 4px rgba(15, 78, 219, 0.1);
    transform: translateY(-1px);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 12px;
    border-radius: 22px;
}

.search-suggestions[hidden] {
    display: none;
}

.search-suggestion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-suggestion:hover,
.search-suggestion.is-active {
    background: rgba(15, 78, 219, 0.08);
    transform: translateX(4px);
}

.search-suggestion strong {
    display: block;
    font-size: 0.98rem;
}

.search-suggestion span {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-action,
.icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background: transparent;
    color: var(--text);
    transition: transform 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-action {
    flex-direction: column;
    min-width: 74px;
    padding: 8px 10px;
    font-size: 0.84rem;
    border-radius: 18px;
}

.header-action:hover {
    color: var(--primary);
}

.header-action em {
    position: absolute;
    top: 4px;
    right: 10px;
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ff7b29);
    color: white;
    font-size: 0.75rem;
    font-style: normal;
    box-shadow: 0 10px 18px rgba(255, 129, 31, 0.28);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 8px 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.nav-link,
.nav-pill {
    border: none;
    color: var(--text);
    white-space: nowrap;
    border-radius: 18px;
    padding: 10px 14px;
    font-weight: 600;
    background: transparent;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-pill:hover {
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary-strong);
}

.nav-pill--primary {
    background: linear-gradient(135deg, var(--primary), #2f7cff);
    color: white;
    box-shadow: 0 14px 28px rgba(15, 78, 219, 0.26);
}

.nav-pill--primary:hover {
    background: linear-gradient(135deg, #1358ef, #2f7cff);
    color: white;
}

.category-panel {
    margin-top: 14px;
    padding: 20px;
}

.category-panel[hidden] {
    display: none;
}

.category-panel__header,
.drawer__header,
.section-heading,
.panel-card__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.section-heading {
    align-items: flex-end;
    flex-wrap: wrap;
}

.category-grid,
.detail-grid {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}

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

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.category-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(16, 70, 176, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.category-tile:hover,
.category-pill:hover,
.service-tile:hover,
.detail-card:hover,
.benefit-card:hover,
.article-mini:hover {
    box-shadow: var(--shadow-md);
}

.nav-shell + .site-main {
    margin-top: 14px;
}

section[id],
footer[id] {
    scroll-margin-top: 86px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(320px, 0.78fr);
    gap: 22px;
    align-items: start;
    min-width: 0;
    width: 100%;
}

.hero-card,
.article-spotlight {
    padding: 26px;
    overflow: hidden;
    position: relative;
    min-width: 0;
    width: 100%;
}

.hero-slider {
    position: relative;
    min-height: auto;
    min-width: 0;
}

.hero-slide {
    position: static;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 24px;
    align-items: start;
    min-width: 0;
    width: 100%;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide--static {
    min-height: 100%;
}

.hero-slide__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary-strong);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.86rem;
}

.hero-slide h1,
.catalog-hero h1,
.product-hero__content h1,
.panel-intro h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 3.35vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
    max-width: 13ch;
}

.catalog-hero h1 {
    max-width: 24ch;
}

.page--articles .catalog-hero h1 {
    max-width: 24ch;
    font-size: clamp(2.1rem, 3vw, 3.25rem);
}

.hero-slide p,
.catalog-hero p {
    max-width: 56ch;
}

.hero-slide p,
.product-hero__content p,
.catalog-hero p,
.section-block p,
.service-tile p,
.detail-card p,
.about-band p,
.newsletter p,
.panel-intro p,
.panel-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.hero-slide__actions,
.product-hero__actions,
.modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tags,
.toggle-row,
.showcase-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-slide__actions {
    align-items: center;
}

.hero-slide__actions .button {
    min-width: 220px;
}

.hero-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
    max-width: 520px;
}

.hero-tag,
.chip-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 22px;
    font-weight: 700;
}

.hero-tag {
    min-height: 74px;
    border: 1px solid rgba(15, 78, 219, 0.12);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.hero-tag__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.hero-tag__content {
    display: grid;
    gap: 4px;
}

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

.hero-tag__content strong {
    font-size: 0.98rem;
    line-height: 1.2;
}

.hero-tag--blue {
    color: var(--primary-strong);
    border-color: rgba(15, 78, 219, 0.18);
}

.hero-tag--blue .hero-tag__icon {
    background: rgba(15, 78, 219, 0.1);
    color: var(--primary);
}

.hero-tag--orange {
    color: var(--primary-strong);
    border-color: rgba(255, 151, 38, 0.24);
}

.hero-tag--orange .hero-tag__icon {
    background: rgba(255, 151, 38, 0.14);
    color: #eb8a1f;
}

.hero-scene {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 0;
}

.hero-scene__glass {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: 360px;
    border-radius: 34px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(8, 56, 145, 0.16)),
        linear-gradient(180deg, rgba(11, 41, 101, 0.08), rgba(11, 41, 101, 0.02)),
        url("/assets/images/hero/classroom-learning.jpg") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    align-content: end;
    gap: 12px;
    padding: 22px;
}

.hero-scene__screen {
    display: none;
}

.hero-scene__floating {
    position: static;
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: none;
    max-width: none;
}

.hero-scene__floating strong {
    font-size: 1.1rem;
}

.hero-scene__floating span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.hero-scene__floating--one {
    top: auto;
    left: auto;
}

.hero-scene__floating--two {
    right: auto;
    top: auto;
    max-width: none;
}

.hero-scene__floating--three {
    left: auto;
    bottom: auto;
    max-width: none;
}

.hero-scene__tiles {
    display: none;
}

.hero-scene__tiles span {
    height: 76px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(226, 236, 255, 0.48));
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-dots {
    display: none;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 78, 219, 0.22);
    transition: transform 0.24s ease, background 0.24s ease;
}

.hero-dots button.is-active {
    background: var(--primary);
    transform: scale(1.16);
}

.article-spotlight {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-heading--small h2,
.article-spotlight h2,
.section-heading h2,
.newsletter h2,
.showcase-copy h3,
.service-tile h3,
.detail-card h3,
.empty-state h1,
.empty-state h3,
.panel-card h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading > div:first-child {
    display: grid;
    gap: 8px;
    flex: 1 1 420px;
}

.article-feature {
    display: grid;
    gap: 14px;
}

.article-feature__media,
.article-mini__thumb {
    display: block;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(14, 70, 177, 0.18), rgba(255, 176, 72, 0.28)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
    overflow: hidden;
}

.article-feature__media {
    min-height: 220px;
}

.article-feature p,
.article-mini h4 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.article-feature p {
    -webkit-line-clamp: 3;
}

.article-feature__media img,
.article-mini__thumb img,
.article-card__media img,
.article-page__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-feature__tag,
.product-card__badge,
.panel-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 78, 219, 0.1);
    color: var(--primary-strong);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.article-list {
    display: grid;
    gap: 12px;
}

.article-mini {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 8px;
    border-radius: 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.article-mini__thumb {
    min-height: 72px;
}

.article-mini span,
.product-card__category,
.catalog-count,
.footer-column p span {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.article-mini h4,
.product-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    line-height: 1.25;
}

.article-mini h4 {
    -webkit-line-clamp: 2;
}

.section-block {
    padding: 28px;
}

.section-heading a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
}

.product-grid {
    display: grid;
    gap: 18px;
}

.product-grid--four {
    margin-top: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.product-grid--three {
    margin-top: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 78, 219, 0.16);
}

.product-card__media {
    position: relative;
    aspect-ratio: 1.18 / 1;
    min-height: 0;
    padding: 16px;
    overflow: hidden;
}

.product-card__media img,
.product-hero__media img,
.drawer-item__media img,
.panel-product-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.product-card__media img {
    transition: transform 0.38s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.06);
}

.product-card--compact .product-card__media {
    aspect-ratio: 1.35 / 1;
}

.product-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent), #ff7f23);
    color: white;
}

.product-card__content {
    display: grid;
    grid-template-rows: auto auto minmax(4.8em, auto) auto auto;
    gap: 10px;
    flex: 1;
    padding: 0 20px 22px;
}

.product-card__status,
.product-hero__status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.product-card__status strong,
.product-hero__status strong {
    font-size: 1.65rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.product-card__status span,
.product-hero__status span {
    color: rgba(84, 112, 157, 0.88);
}

.product-card small,
.product-card__note,
.home-product-card__note {
    color: var(--text-muted);
}

.product-card__note,
.home-product-card__note {
    display: block;
    line-height: 1.45;
    min-height: 2.9em;
}

.product-card__actions,
.drawer-item__actions,
.panel-inline-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card__actions .button {
    flex: 1 0 116px;
    min-width: 0;
    padding-inline: 14px;
    white-space: nowrap;
}

.product-card__actions {
    margin-top: auto;
}

.button,
.icon-button {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, opacity 0.22s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 18px;
    font-weight: 800;
}

.button:hover,
.icon-button:hover {
    transform: none;
}

.button--primary,
.icon-button--filled {
    background: linear-gradient(135deg, var(--primary), #2a82ff);
    color: white;
    box-shadow: 0 16px 26px rgba(15, 78, 219, 0.24);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-strong);
    border: 1px solid rgba(15, 78, 219, 0.12);
}

.button--soft,
.icon-button--soft {
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary-strong);
}

.icon-button {
    min-width: 46px;
    min-height: 46px;
    border-radius: 16px;
}

.icon-button--danger {
    background: rgba(220, 38, 38, 0.08);
    color: var(--danger);
}

.icon-button--rotate svg {
    transform: rotate(180deg);
}

.icon-button.is-active,
[data-toggle-favorite].is-active {
    color: #e4456f;
    background: rgba(228, 69, 111, 0.12);
}

.button[disabled],
.icon-button[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.button.is-loading::after,
.icon-button.is-loading::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

.category-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 20px;
}

.category-pill {
    display: grid;
    flex: 1 1 240px;
    max-width: calc(25% - 11px);
    min-width: 240px;
    justify-items: center;
    gap: 10px;
    text-align: center;
    padding: 18px 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.category-pill span,
.category-tile__icon,
.benefit-card__icon,
.service-tile span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.market-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    align-items: start;
    min-height: 100%;
    padding: 20px;
    border: 1px solid rgba(15, 78, 219, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.64);
}

.market-card__icon {
    grid-row: span 3;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary);
}

.market-card strong {
    line-height: 1.2;
}

.market-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
}

.market-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
}

.product-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, calc((100% - 72px) / 5));
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    width: 100%;
    max-width: 100%;
    overscroll-behavior-x: contain;
    scroll-padding-left: 2px;
    scrollbar-width: none;
}

.product-carousel::-webkit-scrollbar {
    height: 0;
}

.product-carousel > * {
    scroll-snap-align: start;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.benefit-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 10px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(15, 78, 219, 0.92), rgba(52, 195, 210, 0.86));
    box-shadow: var(--shadow-lg);
}

.benefit-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border-radius: 26px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.82);
}

.showcase-grid,
.catalog-layout,
.product-hero,
.panel-dashboard,
.newsletter,
.article-page__hero {
    display: grid;
    gap: 22px;
    min-width: 0;
    width: 100%;
}

.hero-grid > *,
.showcase-grid > *,
.catalog-layout > *,
.product-hero > *,
.panel-dashboard > *,
.newsletter > *,
.product-grid > *,
.benefit-band > *,
.footer-grid > * {
    min-width: 0;
}

.showcase-grid {
    grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1.06fr);
    align-items: stretch;
}

.showcase-copy,
.service-tile,
.detail-card,
.catalog-sidebar,
.catalog-results,
.panel-card,
.newsletter,
.product-hero__content,
.product-hero__media {
    padding: 26px;
}

.showcase-copy {
    position: static;
    top: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    overflow: hidden;
}

.showcase-copy::after {
    content: "";
    display: block;
    flex: 0 0 auto;
    min-height: 240px;
    max-height: 320px;
    aspect-ratio: 16 / 10;
    margin-top: auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(180deg, rgba(8, 38, 104, 0.08), rgba(8, 38, 104, 0.32)),
        url("/assets/images/products/conectividade.jpg") center/cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(15, 78, 219, 0.06);
}

#linha-kids .showcase-copy::after {
    background:
        linear-gradient(180deg, rgba(8, 38, 104, 0.04), rgba(255, 157, 43, 0.28)),
        url("/assets/images/products/pre-escola-2.jpg") center/cover no-repeat;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}

.service-grid {
    margin-top: 20px;
}

.service-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.service-tile,
.detail-card,
.service-cta {
    border-radius: 26px;
}

.service-tile span {
    margin-bottom: 18px;
}

.service-cta {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 26px;
}

.service-cta p {
    margin: 0;
    color: var(--text-muted);
}

.about-band {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 24px;
    padding: 32px;
}

.about-band__stats {
    display: grid;
    gap: 14px;
}

.about-band__stats article {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
}

.about-band__stats strong,
.catalog-hero__meta strong {
    display: block;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.newsletter {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: center;
}

.newsletter__content {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.newsletter__icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 78, 219, 0.12), rgba(52, 195, 210, 0.14));
    color: var(--primary);
}

.newsletter__icon svg {
    width: 1.6rem;
    height: 1.6rem;
}

.newsletter__form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.form-feedback {
    margin: 2px 0 0;
    min-height: 1.3em;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-feedback.is-error {
    color: var(--danger);
}

.form-feedback.is-success {
    color: var(--success);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 12px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding: 30px;
    min-width: 0;
    width: 100%;
}

.footer-brand {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.brand--footer {
    position: relative;
    padding: 14px 18px 12px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 255, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow:
        0 18px 34px rgba(5, 17, 44, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

.brand--footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.78), transparent 28%),
        radial-gradient(circle at 82% 84%, rgba(15, 75, 155, 0.08), transparent 26%);
    pointer-events: none;
}

.brand--footer::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 18px;
    border: 1px solid rgba(15, 75, 155, 0.08);
    pointer-events: none;
}

.brand--footer .brand__logo {
    position: relative;
    z-index: 1;
    width: 220px;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-column h3 {
    margin: 0 0 6px;
}

.footer-column p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-row a {
    min-height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary);
    font-weight: 700;
}

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

.article-hub {
    display: grid;
    gap: 20px;
}

.article-topic-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.article-topic-row span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary-strong);
    font-size: 0.84rem;
    font-weight: 800;
}

.article-directory {
    display: grid;
    gap: 16px;
}

.article-card {
    overflow: hidden;
    border-radius: 28px;
}

.article-card--horizontal {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    align-items: stretch;
}

.article-card__media {
    display: block;
    min-height: 220px;
    overflow: hidden;
}

.article-card__content,
.article-page__summary,
.article-richtext {
    display: grid;
    gap: 14px;
}

.article-card__content {
    padding: 20px;
}

.article-card__content h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
}

.article-card__content p {
    margin: 0;
    color: var(--text-muted);
}

.article-page__hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    padding: 0;
    overflow: hidden;
}

.article-page__hero--featured {
    border-radius: 28px;
    border: 1px solid rgba(15, 78, 219, 0.1);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: var(--shadow-md);
}

.article-page__media {
    min-height: 360px;
}

.article-page__summary {
    padding: 28px;
    align-content: center;
}

.article-page__summary h1,
.article-page__summary h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-richtext {
    padding: 30px;
}

.article-richtext p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}

.article-richtext__aside {
    margin-top: 8px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(15, 78, 219, 0.06);
}

.article-richtext__aside strong {
    display: block;
    margin-bottom: 12px;
}

.article-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.article-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 20px;
    padding: 0 6px 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.drawer,
.modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
}

.drawer.is-open,
.modal.is-open {
    display: block;
}

.drawer__backdrop,
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 26, 55, 0.42);
    backdrop-filter: blur(6px);
}

.drawer__panel,
.modal__card {
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: 18px;
    width: min(460px, calc(100vw - 28px));
    padding: 24px;
    border-radius: 30px;
    overflow: auto;
}

.modal__card {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(680px, calc(100vw - 28px));
    transform: translate(-50%, -50%);
}

.drawer__body,
.panel-product-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.drawer__footer {
    margin-top: 18px;
}

.drawer__footer--stack {
    display: grid;
    gap: 14px;
}

.drawer__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    background: rgba(15, 78, 219, 0.06);
}

.drawer-item {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.66);
}

.drawer-item__media {
    min-height: 88px;
}

.drawer-item__copy {
    display: grid;
    gap: 6px;
}

.drawer-item__copy strong {
    font-size: 1rem;
}

.drawer-item__copy span,
.drawer-item__copy small {
    color: var(--text-muted);
}

.drawer-empty {
    padding: 24px;
    border-radius: 24px;
    background: rgba(15, 78, 219, 0.04);
    color: var(--text-muted);
}

.modal__intro {
    margin: 4px 0 18px;
}

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

.quote-form,
.catalog-filter-form,
.panel-card {
    display: grid;
    gap: 16px;
}

.quote-form label,
.catalog-filter-form label,
.panel-card label {
    display: grid;
    gap: 8px;
}

.quote-form label span,
.catalog-filter-form label span,
.panel-card label span {
    font-weight: 700;
}

.catalog-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    gap: 24px;
    align-items: center;
    padding: 24px 28px;
    overflow: hidden;
}

.catalog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 22%, rgba(15, 78, 219, 0.11), transparent 22%),
        radial-gradient(circle at 92% 78%, rgba(255, 192, 128, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.94));
    pointer-events: none;
}

.catalog-hero > * {
    position: relative;
    z-index: 1;
}

.catalog-hero__copy {
    display: grid;
    gap: 12px;
    align-content: start;
    max-width: 760px;
}

.catalog-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    max-width: 440px;
    align-self: center;
    justify-self: center;
}

.catalog-hero__meta article {
    min-width: 0;
    min-height: 146px;
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(15, 78, 219, 0.08);
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    gap: 8px;
}

.catalog-layout {
    grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
    align-items: start;
    gap: 18px;
}

.catalog-results {
    display: grid;
    align-content: start;
    gap: 14px;
}

.catalog-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 18px;
}

.catalog-sidebar__head {
    display: grid;
    gap: 8px;
}

.catalog-sidebar__head h2 {
    margin: 0;
    font-size: 1.35rem;
}

.catalog-hero__meta strong {
    font-size: clamp(3rem, 3.8vw, 3.7rem);
    line-height: 0.88;
    color: var(--primary-strong);
}

.catalog-hero__meta span {
    font-size: 1.06rem;
    line-height: 1.3;
    color: rgba(23, 53, 102, 0.84);
}

.section-heading--catalog {
    padding-top: 2px;
}

.section-heading--catalog h2 {
    font-size: clamp(1.9rem, 2.4vw, 2.5rem);
}

.catalog-count {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 78, 219, 0.1);
    color: var(--primary-strong);
    font-weight: 700;
}

.catalog-filter-form {
    display: grid;
    gap: 14px;
}

.catalog-filter-form .button {
    width: 100%;
}

.catalog-sidebar__chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.chip-link {
    min-height: 42px;
    width: 100%;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary-strong);
    font-size: 0.88rem;
    line-height: 1.25;
}

.chip-link.is-active {
    background: linear-gradient(135deg, var(--primary), #2f7cff);
    color: white;
}

.empty-state {
    padding: 38px;
    text-align: center;
}

.product-hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr);
    align-items: stretch;
}

.product-hero__media {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero__media img {
    min-height: 420px;
}

.product-hero__media .product-visual,
.panel-product-item__media .product-visual {
    width: 100%;
    height: 100%;
}

.product-hero__content {
    align-content: start;
}

.product-hero__status {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 12px 0;
}

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.product-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-shell {
    display: grid;
    gap: 22px;
}

.panel-intro {
    padding: 28px;
}

.panel-dashboard {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
}

.panel-card__heading p {
    margin-top: 8px;
}

.panel-tip {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.toggle-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(15, 78, 219, 0.06);
}

.toggle-row input {
    width: auto;
}

.panel-product-item {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.62);
}

.panel-product-item__media {
    min-height: 82px;
}

.panel-product-item__copy {
    display: grid;
    gap: 4px;
}

.flash {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary-strong);
}

.flash--success {
    background: rgba(22, 163, 74, 0.12);
    color: var(--success);
}

.flash--warning {
    background: rgba(245, 158, 11, 0.16);
    color: #8a5a07;
}

.flash--error {
    background: rgba(220, 38, 38, 0.12);
    color: var(--danger);
}

.product-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 190px;
    border-radius: 30px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(226, 235, 255, 0.58)),
        radial-gradient(circle at 75% 16%, rgba(255, 173, 71, 0.22), transparent 26%),
        radial-gradient(circle at 16% 18%, rgba(15, 78, 219, 0.18), transparent 22%);
    overflow: hidden;
}

.product-visual::before,
.product-visual::after {
    content: "";
    position: absolute;
    border-radius: 28px;
}

.product-visual::before {
    inset: 26% 20% 18% 20%;
    background: linear-gradient(145deg, var(--visual-primary, #2b6df0), var(--visual-secondary, #68c6ff));
    box-shadow: 0 18px 30px rgba(19, 54, 124, 0.16);
}

.product-visual::after {
    inset: auto 18% 16% 18%;
    height: 22%;
    background: rgba(255, 255, 255, 0.88);
}

.product-visual span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: block;
    color: var(--text);
    font-weight: 700;
    font-size: 0.9rem;
}

.product-visual--projector {
    --visual-primary: #f3f5fa;
    --visual-secondary: #d6e2ff;
}

.product-visual--projector::before {
    inset: 42% 20% 22% 20%;
    border-radius: 22px;
}

.product-visual--projector::after {
    inset: 34% 15% 18% 54%;
    height: auto;
    background: radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.95), rgba(98, 157, 255, 0.12) 60%, transparent 75%);
}

.product-visual--cafeteria {
    --visual-primary: #f2c58b;
    --visual-secondary: #de924b;
}

.product-visual--cafeteria::before {
    inset: 44% 18% 18% 18%;
    border-radius: 18px 18px 26px 26px;
}

.product-visual--cafeteria::after {
    inset: 22% 22% auto 22%;
    height: 16%;
    background: linear-gradient(90deg, #345d9d, #5688d6);
    box-shadow: 0 90px 0 0 rgba(59, 82, 124, 0.32);
}

.product-visual--maker {
    --visual-primary: #285cf0;
    --visual-secondary: #49c7d8;
}

.product-visual--maker::before {
    inset: 24% 14% 18% 14%;
    border-radius: 24px;
    background: conic-gradient(from 160deg, #2e6ef4, #40d5e0, #ffb34a, #2e6ef4);
}

.product-visual--maker::after {
    inset: 34% 22% 28% 22%;
    height: auto;
    background: rgba(255, 255, 255, 0.82);
}

.product-visual--robotics {
    --visual-primary: #3657d0;
    --visual-secondary: #ffa534;
}

.product-visual--robotics::before {
    inset: 34% 26% 24% 26%;
}

.product-visual--robotics::after {
    inset: 20% 36% auto 36%;
    height: 16%;
    background: linear-gradient(135deg, #ffb74f, #ffdba3);
    box-shadow: -70px 70px 0 -12px rgba(53, 116, 233, 0.8), 70px 70px 0 -12px rgba(53, 116, 233, 0.8);
}

.product-visual--notebook,
.product-visual--chromebook {
    --visual-primary: #0e4ddb;
    --visual-secondary: #40d0db;
}

.product-visual--notebook::before,
.product-visual--chromebook::before {
    inset: 26% 18% 34% 18%;
}

.product-visual--notebook::after,
.product-visual--chromebook::after {
    inset: auto 12% 18% 12%;
    height: 10%;
    background: linear-gradient(180deg, #d8e2f6, #8aa5d8);
}

.product-visual--printer {
    --visual-primary: #f4f7fc;
    --visual-secondary: #c9d7ec;
}

.product-visual--printer::before {
    inset: 34% 22% 28% 22%;
}

.product-visual--printer::after {
    inset: 22% 27% auto 27%;
    height: 18%;
    background: linear-gradient(180deg, #283c74, #6785c4);
}

.product-visual--desk {
    --visual-primary: #1c4fd9;
    --visual-secondary: #f2a53a;
}

.product-visual--desk::before {
    inset: 26% 26% 24% 26%;
    border-radius: 18px 18px 28px 28px;
    box-shadow: 0 70px 0 -42px rgba(46, 87, 166, 0.8);
}

.product-visual--desk::after {
    inset: auto 26% 16% 26%;
    height: 18%;
    background: transparent;
    border-left: 6px solid rgba(46, 87, 166, 0.8);
    border-right: 6px solid rgba(46, 87, 166, 0.8);
}

.product-visual--display {
    --visual-primary: #1c2f71;
    --visual-secondary: #2c7dff;
}

.product-visual--display::before {
    inset: 18% 12% 28% 12%;
}

.product-visual--display::after {
    inset: auto 36% 16% 36%;
    height: 8%;
    background: #38508f;
}

.product-visual--cabinet {
    --visual-primary: #ffffff;
    --visual-secondary: #dbe7ff;
}

.product-visual--cabinet::before {
    inset: 18% 30% 18% 30%;
    box-shadow: inset -4px 0 0 rgba(15, 78, 219, 0.12), inset 4px 0 0 rgba(15, 78, 219, 0.12);
}

.product-visual--cabinet::after {
    inset: 22% 38% 22% 38%;
    height: auto;
    background: transparent;
    border-left: 3px solid rgba(15, 78, 219, 0.18);
}

.product-visual--books {
    --visual-primary: #2261e0;
    --visual-secondary: #50c9d7;
}

.product-visual--books::before {
    inset: 26% 18% 18% 18%;
    background: linear-gradient(90deg, #2d68eb 0 18%, #ffb14b 18% 36%, #40ccd8 36% 54%, #2344a2 54% 72%, #6fcbff 72% 100%);
}

.product-visual--books::after {
    inset: auto 14% 14% 14%;
    height: 12%;
    background: rgba(255, 255, 255, 0.92);
}

.product-visual--service,
.product-visual--platform,
.product-visual--science {
    --visual-primary: #2555d8;
    --visual-secondary: #49c8d8;
}

.product-visual--service::before,
.product-visual--platform::before,
.product-visual--science::before {
    inset: 22% 18% 22% 18%;
    background: linear-gradient(145deg, rgba(37, 85, 216, 0.95), rgba(73, 200, 216, 0.95));
}

.product-visual--service::after {
    inset: 30% 26% 30% 26%;
    height: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72));
}

.product-visual--platform::after {
    inset: 26% 22% 26% 22%;
    height: auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
        linear-gradient(90deg, transparent 0 14%, rgba(15, 78, 219, 0.14) 14% 16%, transparent 16% 100%);
}

.product-visual--science::after {
    inset: 18% 28% 18% 28%;
    height: auto;
    background: radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.22) 64%, transparent 64%);
    box-shadow: -60px 60px 0 -14px rgba(255, 184, 73, 0.84), 60px 60px 0 -14px rgba(66, 214, 223, 0.84);
}

.page--home {
    --content-width: min(1440px, calc(100vw - 28px));
}

.page--home .site-main {
    gap: 14px;
    padding-bottom: 36px;
}

.page--home .glass-card {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-utility-bar,
.home-main-header,
.home-primary-nav,
.home-hero,
.home-category-grid,
.home-section,
.home-benefit-strip,
.home-footer {
    border-radius: 26px;
}

.page--home .site-main {
    gap: 14px;
    padding-bottom: 34px;
}

.home-utility-bar {
    min-height: 38px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #0c46b8, #174db5 52%, #0a2d87);
    color: white;
    box-shadow: var(--shadow-md);
}

.home-utility-bar__links {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    width: 100%;
}

.home-utility-bar__links a,
.home-utility-bar__links button {
    min-height: 38px;
    padding: 0 18px;
    border: none;
    background: transparent;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    position: relative;
    font-weight: 600;
}

.home-utility-bar__links a + a::before,
.home-utility-bar__links a + button::before,
.home-utility-bar__links button + a::before,
.home-utility-bar__links button + button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(255, 255, 255, 0.34);
}

.home-utility-bar__links em {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    font-style: normal;
}

.home-main-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    padding: 18px 24px;
    box-shadow: var(--shadow-md);
}

.home-main-header__brand {
    display: inline-flex;
    align-items: center;
}

.home-main-header__brand .brand__logo {
    width: clamp(200px, 18vw, 260px);
}

.home-main-header__search {
    min-height: 58px;
}

.home-main-header__search .search-suggestions {
    z-index: 8;
}

.home-primary-nav {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 8px;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
}

.home-primary-nav::-webkit-scrollbar {
    display: none;
}

.home-primary-nav a {
    flex: 0 0 auto;
    min-height: 54px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(23, 53, 102, 0.9);
    font-weight: 600;
    position: relative;
}

.home-primary-nav a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: rgba(15, 78, 219, 0.12);
}

.home-primary-nav a.is-highlight {
    color: #f57d1f;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.78fr);
    gap: 24px;
    padding: 28px 28px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 38%, rgba(255, 175, 79, 0.28), transparent 28%),
        radial-gradient(circle at 88% 76%, rgba(255, 226, 196, 0.76), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.96));
    pointer-events: none;
}

.home-hero > * {
    position: relative;
    z-index: 1;
}

.home-hero__copy {
    display: grid;
    gap: 14px;
    align-content: start;
    padding-top: 4px;
}

.home-hero__eyebrow {
    width: fit-content;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 247, 255, 0.98);
    box-shadow: inset 0 0 0 1px rgba(15, 78, 219, 0.18);
    color: var(--primary-strong);
    font-weight: 700;
}

.home-hero__eyebrow span:nth-child(1) {
    color: #0c46b8;
}

.home-hero__eyebrow span:nth-child(3) {
    color: #ef8124;
}

.home-hero__eyebrow small {
    color: var(--text-muted);
    font-weight: 600;
}

.home-hero h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2.95rem, 4.25vw, 4.4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    color: #08348f;
}

.home-hero p {
    max-width: 42ch;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-hero__actions .button {
    min-width: 212px;
}

.home-hero__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-top: 4px;
}

.home-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 78, 219, 0.08);
}

.home-highlight__icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary);
    flex: 0 0 auto;
}

.home-highlight div {
    display: grid;
    gap: 2px;
}

.home-highlight strong,
.home-highlight span {
    font-size: 0.94rem;
    line-height: 1.25;
}

.home-hero__quote-wrap {
    position: relative;
    display: grid;
    align-items: start;
    isolation: isolate;
}

.home-hero__decor {
    position: absolute;
    inset: 6% -5% 4% auto;
    width: 120px;
    pointer-events: none;
    z-index: 0;
}

.home-hero__decor span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.82);
}

.home-hero__decor span:nth-child(1) {
    top: 6%;
    right: 32px;
    background: rgba(255, 212, 170, 0.9);
}

.home-hero__decor span:nth-child(2) {
    top: 20%;
    right: 4px;
    background: rgba(163, 219, 255, 0.92);
}

.home-hero__decor span:nth-child(3) {
    top: 28%;
    right: 48px;
    background: rgba(210, 236, 151, 0.94);
}

.home-hero__decor span:nth-child(4) {
    top: 80%;
    right: 10px;
    background: rgba(255, 196, 169, 0.94);
}

.home-hero__decor span:nth-child(5) {
    top: 72%;
    right: 58px;
    background: rgba(234, 237, 178, 0.96);
}

.home-quote-card {
    justify-self: center;
    width: min(420px, 100%);
    padding: 28px;
    display: grid;
    gap: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 74, 182, 0.08);
    box-shadow: 0 24px 52px rgba(245, 167, 73, 0.12);
    position: relative;
    z-index: 1;
}

.home-quote-card__head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 6px;
}

.home-quote-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary);
    flex: 0 0 auto;
}

.home-quote-card__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-quote-card__trust span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 78, 219, 0.06);
    border: 1px solid rgba(15, 78, 219, 0.1);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-quote-card h2,
.home-section__heading h2,
.home-footer__column h3 {
    margin: 0;
}

.home-quote-card p,
.home-quote-card small {
    margin: 0;
    color: var(--text-muted);
}

.home-quote-card__fields {
    display: grid;
    gap: 12px;
}

.home-quote-field {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(18, 74, 182, 0.14);
    background: rgba(247, 249, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.home-quote-field:focus-within {
    border-color: rgba(15, 78, 219, 0.3);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 78, 219, 0.09);
}

.home-quote-field__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 100%;
    color: var(--primary);
    opacity: 0.78;
}

.home-quote-card input {
    width: 100%;
    min-height: 58px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    padding: 0 18px 0 0;
    font: inherit;
    box-shadow: none;
    appearance: none;
}

.home-quote-card input::placeholder {
    color: rgba(26, 48, 87, 0.55);
}

.home-quote-card .button {
    width: 100%;
    min-height: 56px;
    margin-top: 2px;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.home-category-card {
    min-height: 108px;
    padding: 16px 12px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 78, 219, 0.1);
    box-shadow: var(--shadow-md);
}

.home-category-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-category-card--blue .home-category-card__icon {
    background: rgba(15, 78, 219, 0.1);
    color: #0c46b8;
}

.home-category-card--green .home-category-card__icon {
    background: rgba(82, 174, 71, 0.12);
    color: #2f8f3f;
}

.home-category-card--orange .home-category-card__icon {
    background: rgba(245, 128, 34, 0.12);
    color: #ef8124;
}

.home-category-card--purple .home-category-card__icon {
    background: rgba(148, 94, 255, 0.12);
    color: #8648df;
}

.home-category-card--indigo .home-category-card__icon {
    background: rgba(53, 92, 211, 0.12);
    color: #3f61c9;
}

.home-category-card--pink .home-category-card__icon {
    background: rgba(241, 91, 141, 0.12);
    color: #ec5d92;
}

.home-category-card--teal .home-category-card__icon {
    background: rgba(34, 184, 168, 0.12);
    color: #149b8c;
}

.home-section,
.home-benefit-strip,
.home-footer {
    padding: 16px;
    box-shadow: var(--shadow-md);
}

.home-section__heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
}

.home-section__heading h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    line-height: 1.12;
}

.home-section__heading a {
    color: var(--primary);
    font-weight: 700;
}

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

.home-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 78, 219, 0.1);
    overflow: hidden;
}

.home-product-card__favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.home-product-card__media {
    aspect-ratio: 1.32 / 1;
    overflow: hidden;
}

.home-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-product-card__body {
    display: grid;
    gap: 6px;
    padding: 12px 12px 0;
    flex: 1;
}

.home-product-card__body h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.15;
}

.home-product-card__body h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home-product-card__body p,
.home-product-card__body small {
    margin: 0;
}

.home-product-card__meta {
    min-height: 2.5em;
    color: var(--text-muted);
    font-size: 0.84rem;
}

.home-product-card__status strong {
    font-size: 1.6rem;
    line-height: 1.05;
    color: var(--primary-strong);
}

.home-product-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
}

.home-product-card__actions .button {
    flex: 1 1 auto;
}

.home-product-card__actions .icon-button {
    flex: 0 0 auto;
}

.home-solution-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.home-solution-card {
    min-height: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 78, 219, 0.1);
}

.home-solution-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
}

.home-solution-card__body {
    display: grid;
    gap: 8px;
    padding: 12px;
}

.home-solution-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-solution-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.home-solution-card__icon--blue {
    background: rgba(15, 78, 219, 0.12);
    color: #0c46b8;
}

.home-solution-card__icon--green {
    background: rgba(82, 174, 71, 0.12);
    color: #2f8f3f;
}

.home-solution-card__icon--orange {
    background: rgba(245, 128, 34, 0.12);
    color: #ef8124;
}

.home-solution-card__icon--purple {
    background: rgba(148, 94, 255, 0.12);
    color: #8648df;
}

.home-solution-card__icon--indigo {
    background: rgba(53, 92, 211, 0.12);
    color: #3f61c9;
}

.home-solution-card__icon--pink {
    background: rgba(241, 91, 141, 0.12);
    color: #ec5d92;
}

.home-solution-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.home-article-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.88fr) minmax(0, 0.88fr);
    gap: 14px;
}

.home-article-card {
    min-height: 100%;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 78, 219, 0.1);
}

.home-article-card--featured {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1fr);
}

.home-article-card__media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.home-article-card__body {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 14px;
}

.home-article-card__tag {
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
}

.home-article-card__body h3,
.home-footer__column a,
.home-footer__column button {
    margin: 0;
}

.home-article-card__body p,
.home-article-card__body small {
    margin: 0;
    color: var(--text-muted);
}

.home-benefit-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 6px;
}

.home-benefit__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.home-benefit--blue .home-benefit__icon {
    background: rgba(15, 78, 219, 0.12);
    color: #0c46b8;
}

.home-benefit--green .home-benefit__icon {
    background: rgba(82, 174, 71, 0.12);
    color: #2f8f3f;
}

.home-benefit--orange .home-benefit__icon {
    background: rgba(245, 128, 34, 0.12);
    color: #ef8124;
}

.home-benefit--purple .home-benefit__icon {
    background: rgba(148, 94, 255, 0.12);
    color: #8648df;
}

.home-benefit p {
    margin: 2px 0 0;
    color: var(--text-muted);
}

.home-footer {
    display: grid;
    gap: 16px;
}

.home-footer__brand .brand__logo {
    width: 212px;
}

.home-footer__columns {
    display: grid;
    grid-template-columns: minmax(180px, 0.9fr) repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.home-footer__column {
    display: grid;
    gap: 10px;
}

.home-footer__column a,
.home-footer__column button {
    color: var(--text-muted);
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
}

.home-footer__social {
    display: flex;
    gap: 10px;
}

.home-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary);
}

.home-footer__bottom {
    padding-top: 14px;
    border-top: 1px solid rgba(15, 78, 219, 0.08);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
}

.reveal {
    opacity: 1;
    transform: none;
}

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

[data-parallax] {
    will-change: auto;
    transform: none !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1480px) {
    .product-carousel {
        grid-auto-columns: minmax(260px, calc((100% - 54px) / 4));
    }
}

@media (max-width: 1180px) {
    .topbar {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .header-actions {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hero-grid,
    .product-hero,
    .catalog-layout,
    .catalog-hero,
    .showcase-grid,
    .about-band,
    .newsletter,
    .panel-dashboard,
    .article-page__hero {
        grid-template-columns: 1fr;
    }

    .product-grid--four,
    .product-grid--three,
    .benefit-band,
    .footer-grid,
    .service-grid,
    .service-products,
    .detail-grid,
    .market-grid,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-pill {
        max-width: calc(50% - 7px);
    }

    .product-carousel {
        grid-auto-columns: minmax(260px, calc((100% - 36px) / 3));
    }

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

    .home-main-header,
    .home-hero,
    .home-article-card--featured,
    .home-footer__columns {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .home-article-card--featured {
        grid-column: 1 / -1;
    }

    .home-hero h1 {
        max-width: 13ch;
    }

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

    .catalog-sidebar {
        position: static;
    }

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

    .hero-slide {
        grid-template-columns: 1fr;
        min-height: 100%;
        gap: 18px;
    }

    .hero-slider {
        min-height: auto;
    }
}

@media (max-width: 820px) {
    :root {
        --content-width: min(100vw - 20px, 100vw - 20px);
    }

    .site-header {
        padding-top: 10px;
    }

    .page--home {
        --content-width: min(100vw - 16px, 100vw - 16px);
    }

    .nav-shell {
        top: 6px;
    }

    .home-utility-bar {
        padding: 0 8px;
    }

    .home-utility-bar__links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        justify-content: stretch;
    }

    .home-utility-bar__links a,
    .home-utility-bar__links button {
        min-height: 40px;
        padding: 0 6px;
        justify-content: center;
        font-size: 0.78rem;
        gap: 6px;
        text-align: center;
    }

    .home-utility-bar__links a::before,
    .home-utility-bar__links button::before {
        display: none;
    }

    .home-main-header,
    .home-hero,
    .home-section,
    .home-benefit-strip,
    .home-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .home-main-header {
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: center;
        text-align: center;
    }

    .home-main-header__brand {
        width: 100%;
        justify-content: center;
    }

    .home-main-header__brand .brand__logo {
        width: min(240px, 70vw);
    }

    .home-main-header__search {
        min-height: 56px;
        width: 100%;
    }

    .home-primary-nav {
        padding: 0 4px;
    }

    .home-primary-nav a {
        min-height: 52px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .home-hero {
        gap: 20px;
        padding-top: 20px;
    }

    .home-hero h1 {
        max-width: none;
        font-size: clamp(2.3rem, 10.5vw, 3.6rem);
    }

    .home-hero p {
        font-size: 1rem;
    }

    .home-hero__actions,
    .home-hero__highlights {
        grid-template-columns: 1fr;
    }

    .home-hero__actions {
        display: grid;
    }

    .home-hero__actions .button {
        min-width: 0;
        width: 100%;
    }

    .home-quote-card {
        width: 100%;
        padding: 18px;
    }

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

    .home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-article-grid {
        grid-template-columns: 1fr;
    }

    .home-category-card {
        min-height: 108px;
        padding: 14px 12px;
    }

    .home-category-card strong {
        align-self: start;
    }

    .home-section__heading {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .home-product-card {
        border-radius: 18px;
    }

    .home-product-card__favorite {
        top: 8px;
        right: 8px;
    }

    .home-product-card__body {
        gap: 5px;
        padding: 10px 10px 0;
    }

    .home-product-card__body h3 {
        font-size: 0.9rem;
    }

    .home-product-card__meta,
    .home-product-card__body small {
        font-size: 0.76rem;
    }

    .home-product-card__meta {
        min-height: 2.3em;
    }

    .home-product-card__status strong {
        font-size: 1.24rem;
    }

    .home-product-card__actions {
        gap: 8px;
        padding: 10px;
    }

    .home-product-card__actions .button {
        min-height: 40px;
        padding-inline: 10px;
        font-size: 0.82rem;
    }

    .home-product-card__actions .icon-button {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .home-benefit {
        padding-inline: 0;
    }

    .home-footer__columns {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
    }

    .topbar {
        padding: 14px;
        gap: 12px;
    }

    .searchbar {
        padding: 6px 8px 6px 14px;
    }

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

    .header-action {
        min-width: 0;
        gap: 6px;
        padding: 8px 4px;
    }

    .header-action span {
        font-size: 0.74rem;
    }

    .header-action em {
        right: 6px;
    }

    .main-nav {
        min-height: 54px;
        padding: 8px;
        gap: 6px;
    }

    .nav-link,
    .nav-pill {
        padding: 9px 12px;
        border-radius: 16px;
        font-size: 0.92rem;
    }

    section[id],
    footer[id] {
        scroll-margin-top: 76px;
    }

    .hero-card,
    .article-spotlight,
    .section-block,
    .catalog-hero,
    .catalog-sidebar,
    .showcase-copy,
    .product-hero__media,
    .product-hero__content,
    .newsletter,
    .footer-grid,
    .panel-card,
    .panel-intro,
    .article-page__summary,
    .article-richtext {
        padding: 20px;
    }

    .brand__logo {
        width: min(235px, 76vw);
    }

    .hero-slider {
        min-height: auto;
    }

    .hero-slide h1,
    .catalog-hero h1,
    .product-hero__content h1,
    .panel-intro h1 {
        max-width: none;
        font-size: clamp(1.9rem, 8vw, 2.7rem);
    }

    .hero-slide__copy {
        gap: 14px;
    }

    .hero-scene {
        padding: 0;
    }

    .hero-scene__glass {
        min-height: 300px;
        max-width: none;
        padding: 18px;
    }

    .hero-scene__screen {
        display: none;
    }

    .hero-scene__floating {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .hero-scene__floating strong {
        font-size: 0.9rem;
    }

    .hero-scene__floating span {
        font-size: 0.74rem;
    }

    .hero-scene__floating--one {
        top: auto;
        left: auto;
        right: auto;
    }

    .hero-scene__floating--two {
        top: auto;
        right: auto;
        left: auto;
        max-width: none;
    }

    .hero-scene__floating--three {
        left: auto;
        right: auto;
        bottom: auto;
    }

    .hero-scene__tiles {
        display: none;
    }

    .hero-scene__tiles span {
        height: 52px;
        border-radius: 16px;
    }

    .category-grid,
    .service-grid,
    .service-products,
    .detail-grid,
    .product-grid--four,
    .product-grid--three,
    .product-grid--two,
    .product-grid--catalog,
    .market-grid,
    .footer-grid,
    .benefit-band,
    .form-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .catalog-layout {
        gap: 18px;
    }

    .catalog-sidebar {
        gap: 14px;
    }

    .catalog-filter-form {
        gap: 12px;
    }

    .catalog-sidebar__chips {
        display: flex;
        gap: 8px;
        margin-inline: -4px;
        padding: 2px 4px 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .catalog-sidebar__chips::-webkit-scrollbar {
        display: none;
    }

    .chip-link {
        flex: 0 0 auto;
        width: auto;
        max-width: 220px;
        white-space: nowrap;
    }

    .market-card {
        grid-template-columns: 1fr;
    }

    .market-card__icon {
        grid-row: auto;
    }

    .article-topic-row {
        justify-content: flex-start;
    }

    .article-card--horizontal {
        grid-template-columns: 1fr;
    }

    .article-page__media {
        min-height: 280px;
    }

    .category-strip {
        justify-content: stretch;
        padding: 14px;
    }

    .category-pill {
        flex: 1 1 calc(50% - 7px);
        max-width: none;
        min-width: 0;
        grid-template-columns: auto 1fr;
        justify-items: start;
        align-items: center;
        text-align: left;
        gap: 10px;
        padding: 14px 12px;
    }

    .category-pill span {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

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

    .product-carousel {
        grid-auto-columns: 86%;
    }

    .carousel-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-slide__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-slide__actions .button {
        width: 100%;
        min-width: 0;
    }

    .hero-tags {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
    }

    .hero-tag {
        width: 100%;
    }

    .catalog-hero__meta {
        flex-direction: column;
    }

    .catalog-hero__meta article {
        width: 100%;
    }

    .drawer__panel,
    .modal__card {
        top: 12px;
        bottom: 12px;
        right: 10px;
        left: 10px;
        width: auto;
        transform: none;
    }

    .modal__card {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }

.panel-product-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .home-main-header__brand .brand__logo {
        width: min(220px, 64vw);
    }

    .home-hero {
        padding: 18px 14px 16px;
    }

    .home-quote-card {
        padding: 16px;
    }

    .home-category-grid,
    .home-solution-grid,
    .home-benefit-strip,
    .home-product-grid {
        gap: 8px;
    }

    .home-category-card {
        min-height: 94px;
        padding: 12px 10px;
    }

    .home-category-card strong,
    .home-solution-card__body strong {
        font-size: 0.84rem;
    }

    .home-product-card__media {
        aspect-ratio: 1.08 / 1;
    }

    .home-product-card__body {
        padding: 9px 9px 0;
    }

    .home-product-card__body h3 {
        font-size: 0.84rem;
        line-height: 1.18;
    }

    .home-product-card__meta,
    .home-product-card__body small {
        font-size: 0.72rem;
    }

    .home-product-card__status strong {
        font-size: 1.08rem;
    }

    .home-product-card__actions {
        padding: 9px;
    }

    .home-product-card__actions .button {
        min-height: 38px;
        font-size: 0.76rem;
    }
}

/* 2026 visual refresh */

:root {
    --bg: #f8f3ea;
    --bg-strong: #f0e6d6;
    --surface: rgba(255, 252, 247, 0.94);
    --surface-solid: #fffdfa;
    --surface-border: rgba(185, 155, 109, 0.16);
    --line: rgba(20, 54, 107, 0.1);
    --text: #112d57;
    --text-muted: #5e6f8a;
    --primary: #0f4b9b;
    --primary-strong: #0a3370;
    --accent: #c69b5d;
    --shadow-lg: 0 28px 64px rgba(30, 45, 75, 0.12);
    --shadow-md: 0 16px 34px rgba(30, 45, 75, 0.09);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --content-width: min(1440px, calc(100vw - 48px));
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

body {
    background:
        radial-gradient(circle at top left, rgba(235, 201, 149, 0.2), transparent 22%),
        radial-gradient(circle at 92% 10%, rgba(199, 224, 245, 0.52), transparent 24%),
        linear-gradient(180deg, #fffaf2 0%, #f8f3ea 44%, #f7efe3 100%);
    color: var(--text);
    font-family: var(--font-body);
}

.ambient {
    display: none;
}

.glass-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-main {
    gap: 24px;
    padding-bottom: 34px;
}

.site-header {
    padding: 20px 0 12px;
}

.nav-shell {
    position: sticky;
    top: 8px;
    margin-bottom: 10px;
}

.topbar,
.main-nav,
.catalog-hero,
.catalog-sidebar,
.catalog-results,
.empty-state,
.product-hero__media,
.product-hero__content,
.panel-card,
.panel-intro,
.section-block,
.newsletter {
    border-radius: 26px;
}

.topbar {
    padding: 18px 26px;
    background: rgba(255, 253, 248, 0.96);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 28px;
}

.brand__logo {
    width: clamp(164px, 16vw, 218px);
}

.searchbar {
    min-height: 56px;
    padding: 7px 10px 7px 18px;
    border-radius: 999px;
    background: #fffdfa;
    box-shadow: inset 0 0 0 1px rgba(15, 75, 155, 0.12);
}

.searchbar input,
.newsletter__form input,
.catalog-filter-form input,
.catalog-filter-form select,
.quote-form input,
.quote-form textarea,
.panel-card input,
.panel-card select,
.panel-card textarea {
    border-radius: 14px;
}

.searchbar input::placeholder {
    color: rgba(64, 82, 109, 0.75);
}

.header-actions {
    gap: 18px;
}

.header-action {
    min-width: 78px;
    padding: 6px 4px;
    font-size: 0.83rem;
    color: #1d2b45;
}

.header-action em {
    top: 0;
    right: 2px;
    min-width: 20px;
    height: 20px;
    font-size: 0.7rem;
    background: linear-gradient(135deg, #d7b271, #c89644);
    color: #fff;
}

.main-nav {
    min-height: 58px;
    padding: 0 14px;
    background: rgba(255, 253, 248, 0.94);
}

.nav-link,
.nav-pill {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    color: #2d374f;
}

.nav-link:hover,
.nav-link.is-active,
.nav-pill:hover {
    background: rgba(15, 75, 155, 0.07);
    color: var(--primary-strong);
}

.nav-pill--primary {
    background: linear-gradient(135deg, #0a438d, #114f9f);
    color: #fff;
    box-shadow: none;
}

.button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 800;
}

.button--primary,
.icon-button--filled {
    background: linear-gradient(135deg, #0b3f85, #1457af);
    box-shadow: 0 14px 24px rgba(15, 75, 155, 0.18);
}

.button--ghost {
    background: rgba(255, 253, 248, 0.92);
    border: 1.5px solid rgba(15, 75, 155, 0.22);
    color: var(--primary-strong);
}

.button--soft,
.icon-button--soft {
    background: rgba(15, 75, 155, 0.07);
    color: var(--primary-strong);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 75, 155, 0.07);
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-slide h1,
.catalog-hero h1,
.product-hero__content h1,
.panel-intro h1,
.home-hero h1,
.article-page__summary h1,
.home-section__heading h2,
.section-heading h2,
.newsletter h2,
.footer-column h3 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
    color: #10274f;
}

.home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
    gap: 34px;
    padding: 34px 34px 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at left center, rgba(236, 205, 155, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(253, 247, 239, 0.96));
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 56%, rgba(126, 182, 228, 0.24), transparent 30%),
        radial-gradient(circle at 88% 14%, rgba(214, 185, 134, 0.18), transparent 14%);
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    right: 16%;
    top: 0;
    width: 46%;
    height: 100%;
    background:
        radial-gradient(circle at 78% 20%, rgba(23, 100, 183, 0.9), transparent 8%),
        radial-gradient(circle at 68% 42%, rgba(140, 188, 229, 0.22), transparent 22%),
        radial-gradient(circle at 44% 64%, rgba(255, 255, 255, 0.24), transparent 16%),
        radial-gradient(circle at 72% 74%, rgba(255, 255, 255, 0.3), transparent 10%),
        linear-gradient(140deg, rgba(77, 138, 209, 0.36), rgba(27, 97, 175, 0.72));
    clip-path: ellipse(55% 62% at 54% 50%);
    opacity: 0.94;
    pointer-events: none;
}

.home-hero > * {
    position: relative;
    z-index: 1;
}

.home-hero__copy {
    gap: 18px;
    padding: 6px 12px 8px 14px;
}

.home-hero__eyebrow {
    width: fit-content;
    min-height: 32px;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-hero h1 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(3.8rem, 5.2vw, 5.6rem);
    line-height: 0.92;
}

.home-hero h1 strong,
.home-hero h1 span {
    color: var(--primary);
}

.home-hero p {
    max-width: 33ch;
    font-size: 1.08rem;
    line-height: 1.6;
}

.home-hero__actions {
    gap: 16px;
    padding-top: 6px;
}

.home-hero__actions .button {
    min-width: 236px;
}

.home-hero__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 75, 155, 0.1);
}

.home-highlight {
    min-height: 0;
    padding: 10px 16px 0 0;
    border-top: none;
}

.home-highlight + .home-highlight {
    padding-left: 18px;
    border-left: 1px solid rgba(15, 75, 155, 0.08);
}

.home-highlight strong {
    font-size: 0.96rem;
}

.home-highlight span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.home-hero__quote-wrap {
    align-items: center;
}

.home-hero__decor {
    inset: 5% 0 0 auto;
    width: 160px;
}

.home-hero__decor span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
}

.home-quote-card {
    width: min(520px, 100%);
    padding: 30px 26px 20px;
    gap: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 48px rgba(28, 58, 109, 0.14);
}

.home-quote-card__head {
    margin-bottom: 0;
    align-items: center;
}

.home-quote-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(15, 75, 155, 0.08);
}

.home-quote-card__head h2 {
    margin: 0;
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    line-height: 0.95;
}

.home-quote-card__head p {
    font-size: 0.95rem;
}

.home-quote-card__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-quote-field,
.home-quote-card__message textarea {
    border-radius: 12px;
    border: 1px solid rgba(15, 75, 155, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.home-quote-field {
    min-height: 50px;
    grid-template-columns: 1fr;
}

.home-quote-field__icon {
    display: none;
}

.home-quote-card input,
.home-quote-card select {
    min-height: 50px;
    padding: 0 14px;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 0.94rem;
}

.home-quote-card select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 34px;
}

.home-quote-card__message textarea {
    width: 100%;
    min-height: 96px;
    padding: 14px;
    resize: vertical;
}

.home-quote-card .button {
    min-height: 48px;
}

.home-quote-card__contact {
    display: grid;
    gap: 6px;
}

.home-quote-card__contact a {
    color: var(--primary-strong);
    font-size: 0.9rem;
    font-weight: 700;
    word-break: break-word;
}

@media (max-width: 560px) {
    .home-quote-card__contact {
        display: none !important;
    }
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    padding: 12px 18px;
}

.home-category-card {
    min-height: 86px;
    padding: 10px 16px;
    border-radius: 0;
    background: transparent;
    border: none;
    position: relative;
    gap: 8px;
}

.home-category-card + .home-category-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: rgba(15, 75, 155, 0.12);
}

.home-category-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(15, 75, 155, 0.07);
    color: var(--primary);
}

.home-category-card strong {
    font-size: 0.98rem;
    line-height: 1.2;
}

.home-section,
.section-block,
.catalog-hero,
.catalog-sidebar,
.product-hero__media,
.product-hero__content,
.article-page__hero,
.article-richtext,
.panel-card,
.panel-intro {
    background: rgba(255, 253, 248, 0.92);
}

.home-section {
    padding: 0;
}

.home-section__heading {
    padding: 22px 24px 8px;
}

.home-section__heading h2 {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    line-height: 1;
}

.home-section__heading a,
.section-heading a,
.text-link {
    color: var(--primary-strong);
    font-weight: 800;
}

.home-product-grid {
    padding: 0 18px 18px;
    gap: 18px;
}

.home-product-card,
.product-card {
    border-radius: 22px;
    background: #fffdfa;
    border: 1px solid rgba(15, 75, 155, 0.1);
    box-shadow: 0 14px 26px rgba(22, 39, 76, 0.07);
}

.home-product-card__media,
.product-card__media {
    padding: 16px 16px 0;
    aspect-ratio: auto;
}

.home-product-card__media img,
.product-card__media img {
    aspect-ratio: 1.28 / 1;
    object-fit: contain;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f7f3ec);
}

.home-product-card__favorite {
    top: 18px;
    right: 18px;
}

.product-card__favorite,
.product-card__actions .icon-button--soft {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
}

.home-product-card__body,
.product-card__content {
    padding: 8px 18px 0;
    gap: 8px;
}

.home-product-card__body h3,
.product-card h3 {
    font-size: 1.1rem;
    line-height: 1.24;
}

.home-product-card__meta,
.product-card__category,
.product-card p,
.product-card small {
    color: var(--text-muted);
}

.home-product-card__status strong,
.product-card__status strong,
.product-hero__status strong {
    font-size: 2rem;
    line-height: 0.95;
    color: var(--primary);
}

.product-card__status span,
.product-hero__status span {
    color: #97a5bf;
}

.home-product-card__actions,
.product-card__actions {
    gap: 12px;
    padding: 14px 18px 18px;
}

.home-product-card__actions .button,
.product-card__actions .button {
    min-height: 44px;
    font-family: var(--font-display);
    font-size: 0.92rem;
    letter-spacing: 0.015em;
    font-weight: 700;
}

.home-solution-grid {
    padding: 0 18px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-solution-card {
    min-height: 148px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #fffdfa;
    border: 1px solid rgba(15, 75, 155, 0.1);
    box-shadow: 0 12px 22px rgba(22, 39, 76, 0.06);
}

.home-solution-card > img {
    display: none;
}

.home-solution-card__body {
    padding: 0;
    gap: 10px;
}

.home-solution-card__title {
    justify-content: flex-start;
    gap: 12px;
}

.home-solution-card__icon {
    width: 46px;
    height: 46px;
}

.home-solution-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.home-article-grid {
    padding: 0 18px 18px;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
    gap: 16px;
}

.home-article-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 20px;
    background: #fffdfa;
    border: 1px solid rgba(15, 75, 155, 0.1);
    overflow: hidden;
}

.home-article-card--featured {
    grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: stretch;
}

.home-article-card__media img {
    height: 100%;
    object-fit: cover;
}

.home-article-card__body {
    padding: 18px 18px 16px;
    display: grid;
    gap: 8px;
}

.home-article-card__tag,
.article-feature__tag {
    width: fit-content;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 75, 155, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.home-article-card h3,
.article-card h3 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.18;
}

.home-benefit-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 12px 16px;
    background: rgba(255, 252, 247, 0.95);
}

.home-benefit {
    padding: 12px 18px;
}

.home-benefit + .home-benefit {
    border-left: 1px solid rgba(15, 75, 155, 0.1);
}

.newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 20px;
    align-items: center;
    padding: 22px 26px;
}

.newsletter__content {
    align-items: center;
}

.newsletter__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(15, 75, 155, 0.08);
    color: var(--primary);
}

.newsletter h2 {
    margin: 0;
    font-size: clamp(2rem, 2.3vw, 2.6rem);
}

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

.site-footer {
    background: linear-gradient(180deg, #0d3979, #092f67 76%);
    border-radius: 24px 24px 0 0;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 28px;
    padding: 32px 28px;
}

.footer-brand p,
.footer-column a,
.footer-column button,
.footer-column p,
.footer-certification small {
    color: rgba(255, 255, 255, 0.76);
}

.footer-column h3 {
    margin: 0 0 14px;
    font-family: var(--font-body);
    font-size: 1.04rem;
    color: #fff;
}

.footer-column button {
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
}

.social-row {
    gap: 12px;
}

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

.footer-certification {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-certification div {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.footer-certification strong,
.footer-certification small {
    display: block;
    line-height: 1.15;
}

.footer-certification strong {
    color: #fff;
    font-size: 0.96rem;
}

.footer-certification small {
    max-width: 160px;
}

.footer-certification__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
    padding: 12px 28px 18px;
    color: rgba(255, 255, 255, 0.64);
}

.catalog-hero,
.article-page__hero,
.product-hero__content,
.product-hero__media,
.section-block,
.panel-card,
.panel-intro {
    box-shadow: var(--shadow-md);
}

.catalog-hero {
    padding: 28px 30px;
}

.catalog-hero__copy,
.article-page__summary,
.product-hero__content {
    display: grid;
    gap: 12px;
}

.catalog-hero h1,
.product-hero__content h1,
.article-page__summary h1 {
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 0.96;
}

.catalog-hero__meta article {
    background: rgba(255, 255, 255, 0.9);
}

.catalog-layout {
    gap: 22px;
}

.catalog-sidebar,
.catalog-results,
.section-block {
    padding: 22px;
}

.catalog-results {
    background: rgba(255, 253, 248, 0.68);
    border-radius: 26px;
}

.catalog-sidebar__head h2,
.section-heading h2 {
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 0.98;
}

.product-grid--catalog,
.product-grid--three,
.product-grid--four,
.article-grid {
    gap: 18px;
}

.product-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.product-hero__media {
    min-height: 520px;
    padding: 20px;
}

.product-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    background: linear-gradient(180deg, #fff, #f7f1e7);
    border-radius: 22px;
}

.product-hero__content {
    padding: 28px;
}

.product-feature-list li,
.article-richtext p,
.detail-card p {
    color: var(--text-muted);
}

.article-page__hero {
    padding: 20px;
}

.article-page__media,
.article-card__media,
.article-feature__media {
    border-radius: 20px;
    overflow: hidden;
}

.article-richtext {
    padding: 26px;
}

.panel-shell {
    gap: 22px;
}

@media (max-width: 1180px) {
    .topbar {
        grid-template-columns: 1fr;
    }

    .header-actions {
        justify-content: space-between;
    }

    .home-hero,
    .newsletter,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-article-grid,
    .home-solution-grid,
    .home-category-grid,
    .home-benefit-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --content-width: min(100vw - 18px, 100vw - 18px);
    }

    .topbar {
        padding: 18px 16px;
        gap: 16px;
    }

    .main-nav {
        padding: 8px;
    }

    .nav-link,
    .nav-pill {
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .home-hero {
        padding: 24px 16px 18px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-hero::after {
        width: 100%;
        right: 0;
        top: 20%;
        height: 48%;
    }

    .home-hero h1,
    .catalog-hero h1,
    .product-hero__content h1,
    .article-page__summary h1 {
        max-width: none;
        font-size: clamp(2.4rem, 10vw, 3.8rem);
    }

    .home-hero__highlights {
        grid-template-columns: 1fr;
    }

    .home-highlight + .home-highlight {
        padding-left: 0;
        border-left: none;
    }

    .home-quote-card {
        width: 100%;
        padding: 22px 16px 18px;
    }

    .home-quote-card__fields,
    .newsletter__form,
    .footer-grid,
    .home-category-grid,
    .home-solution-grid,
    .home-article-grid,
    .home-benefit-strip {
        grid-template-columns: 1fr;
    }

    .home-product-grid,
    .product-grid--catalog,
    .product-grid--three,
    .product-grid--four,
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-category-card + .home-category-card::before,
    .home-benefit + .home-benefit {
        border: none;
    }

    .catalog-results,
    .catalog-sidebar,
    .section-block,
    .product-hero__content,
    .product-hero__media,
    .article-richtext {
        padding: 18px;
    }

    .article-page__hero {
        padding: 16px;
    }
}

@media (max-width: 560px) {
    .header-actions {
        width: 100%;
        gap: 4px;
        justify-content: space-between;
    }

    .header-action {
        min-width: 0;
        flex: 1 1 0;
        padding: 4px 2px;
        font-size: 0.68rem;
    }

    .header-action span {
        display: block;
        white-space: normal;
        line-height: 1.08;
    }

    .home-hero__actions .button,
    .button {
        min-width: 0;
        width: 100%;
    }

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

    .home-product-card__actions,
    .product-card__actions {
        flex-wrap: wrap;
    }
}

/* Local visual unification */
.nav-shell {
    margin-top: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.nav-pill,
.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-align: center;
    white-space: nowrap;
}

.nav-pill--primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-inline: 18px;
}

.header-actions {
    align-items: center;
}

.header-action {
    position: relative;
}

.header-action svg {
    flex-shrink: 0;
}

.header-action--portal {
    color: var(--primary-strong);
}

.header-action + .header-action::before {
    content: "";
    position: absolute;
    left: -9px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(15, 75, 155, 0.12);
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.home-hero__eyebrow span:nth-child(1),
.home-hero__eyebrow span:nth-child(3) {
    color: var(--primary);
}

.home-hero__eyebrow small {
    color: rgba(29, 43, 69, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.catalog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) auto;
    align-items: center;
    gap: 28px;
}

.catalog-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 210px));
    justify-content: end;
    gap: 16px;
}

.catalog-hero__meta article {
    min-height: 150px;
    padding: 16px;
    place-content: center;
    text-align: center;
}

.catalog-hero__meta strong {
    display: block;
    font-size: clamp(3rem, 3vw, 4rem);
    line-height: 0.9;
}

.catalog-hero__meta span {
    display: block;
    margin-top: 8px;
}

.catalog-layout {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 18px;
}

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

.chip-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding-inline: 16px;
    border-radius: 16px;
}

.catalog-filter-form {
    gap: 14px;
}

.product-hero__content .eyebrow,
.catalog-hero .eyebrow,
.article-page__summary .eyebrow {
    width: fit-content;
}

.article-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.article-page__summary {
    align-content: center;
}

.article-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.article-directory {
    display: grid;
    gap: 16px;
}

.article-card--horizontal {
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    overflow: hidden;
}

.article-card--horizontal .article-card__media img {
    height: 100%;
    object-fit: cover;
}

.article-card--horizontal .article-card__content {
    padding: 18px 20px;
}

.article-richtext {
    max-width: none;
}

.article-richtext__aside {
    margin-top: 22px;
}

@media (max-width: 1180px) {
    .catalog-hero {
        grid-template-columns: 1fr;
    }

    .catalog-hero__meta {
        justify-content: start;
    }
}

@media (max-width: 820px) {
    .main-nav {
        justify-content: flex-start;
    }

    .header-action + .header-action::before {
        display: none;
    }

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

    .catalog-sidebar {
        position: static;
    }

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

    .article-page__hero,
    .article-card--horizontal {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .topbar {
        padding: 16px 14px;
    }

    .brand {
        justify-content: center;
    }

    .brand__logo {
        width: min(200px, 74vw);
        margin: 0 auto;
    }

    .header-actions {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
        overflow: hidden;
    }

    .header-action {
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 54px;
        padding: 6px 2px;
        min-width: 0;
    }

    .header-action--whatsapp span {
        font-size: 0.58rem;
        line-height: 1.1;
    }

    .main-nav {
        padding: 8px;
    }

    .nav-pill,
    .nav-link {
        min-height: 42px;
        padding-inline: 14px;
        font-size: 0.84rem;
    }

    .home-hero {
        padding: 22px 14px 16px;
    }

    .home-hero h1,
    .catalog-hero h1,
    .product-hero__content h1,
    .article-page__summary h1 {
        font-size: clamp(2.1rem, 12vw, 3.15rem);
    }

    .home-quote-card {
        padding: 18px 12px 14px;
    }

    .home-quote-card__head h2,
    .home-section__heading h2,
    .section-heading h2,
    .newsletter h2 {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
    }

    .home-quote-card__head {
        gap: 10px;
        margin-bottom: 2px;
    }

    .home-quote-card__head h2 {
        font-size: clamp(1.35rem, 6.4vw, 1.8rem);
        line-height: 1.02;
    }

    .home-quote-card__head p {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .home-quote-card__fields {
        gap: 8px;
    }

    .home-quote-field {
        min-height: 46px;
        border-radius: 16px;
    }

    .home-quote-card input,
    .home-quote-card select {
        min-height: 46px;
        padding-inline: 12px 10px;
        font-size: 0.88rem;
    }

    .home-quote-card__message textarea {
        min-height: 64px;
        padding: 12px;
        font-size: 0.88rem;
    }

    .home-quote-card .button {
        min-height: 42px;
        font-size: 0.84rem;
    }

    .home-quote-card__contact {
        display: none;
    }

    .contact-strip-card {
        min-height: 60px;
        padding: 0 12px;
        grid-template-columns: 38px minmax(0, 1fr) 14px;
        gap: 10px;
        border-radius: 16px;
    }

    .contact-strip-card__icon {
        width: 38px;
        height: 38px;
    }

    .contact-strip-card__body strong {
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .contact-strip-card__body small {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .home-quote-card__contact a {
        font-size: 0.82rem;
    }

    .page--home .home-section--products {
        order: 1;
    }

    .page--home .home-category-grid {
        order: 2;
    }

    .page--home .home-hero {
        order: 3;
    }

    .page--home .home-section#marketplace {
        order: 4;
    }

    .page--home .home-section#artigos-conteudos {
        order: 5;
    }

    .page--home .home-benefit-strip {
        order: 6;
    }

    .home-category-grid,
    .home-solution-grid,
    .home-benefit-strip,
    .newsletter__form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .catalog-hero__meta article {
        min-height: 120px;
    }

    .home-product-card__actions,
    .product-card__actions {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 12px 12px 14px;
    }

    .home-product-card__body h3,
    .product-card h3 {
        font-size: 0.95rem;
    }

    .home-product-card__status strong,
    .product-card__status strong,
    .product-hero__status strong {
        font-size: 1.45rem;
    }

    .home-product-card__actions .button,
    .product-card__actions .button {
        min-height: 36px;
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        padding: 8px 10px;
        font-size: 0.72rem;
        line-height: 1.1;
        border-radius: 16px;
        white-space: normal;
        text-align: center;
        text-wrap: balance;
    }

    .home-product-card__actions .icon-button,
    .product-card__actions .icon-button {
        width: 36px;
        height: 36px;
        flex: 0 0 auto;
    }

    .home-article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-article-card--featured {
        grid-template-columns: 1fr;
    }

    .home-article-card__body {
        padding: 10px;
        gap: 6px;
    }

    .home-article-card__media img {
        min-height: 120px;
    }

    .home-article-card__body h3 {
        font-size: 0.9rem;
    }

    .home-article-card__body p,
    .home-article-card__body small {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .article-page__actions {
        flex-direction: column;
    }
}

/* Premium card language */
.home-quote-card__contact {
    display: grid;
    gap: 12px;
    margin-top: 2px;
}

.contact-strip-card {
    --contact-accent: #0f4b9b;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 0 18px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(15, 75, 155, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 244, 235, 0.92));
    box-shadow: 0 12px 24px rgba(16, 39, 79, 0.08);
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease, color 0.38s ease;
}

.contact-strip-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 75, 155, 0.98), rgba(41, 113, 205, 0.96));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s ease;
    z-index: 0;
}

.contact-strip-card::after {
    content: "";
    position: absolute;
    top: -140%;
    left: -38%;
    width: 52%;
    height: 340%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(20deg);
    transition: transform 0.65s ease, opacity 0.65s ease;
    opacity: 0;
    z-index: 0;
}

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

.contact-strip-card__icon,
.contact-strip-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-strip-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(15, 75, 155, 0.08);
    color: var(--contact-accent);
    transition: background 0.38s ease, color 0.38s ease, transform 0.38s ease;
}

.contact-strip-card__body {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.contact-strip-card__body strong,
.contact-strip-card__body small {
    transition: color 0.38s ease;
}

.contact-strip-card__body strong {
    color: var(--primary-strong);
    font-size: 1rem;
    font-weight: 800;
}

.contact-strip-card__body small {
    color: rgba(35, 55, 88, 0.74);
    font-size: 0.88rem;
    font-weight: 600;
    word-break: break-word;
}

.contact-strip-card__arrow {
    color: rgba(15, 75, 155, 0.68);
    transition: color 0.38s ease, transform 0.38s ease;
}

.contact-strip-card--whatsapp {
    --contact-accent: #159b57;
}

.contact-strip-card--whatsapp::before {
    background: linear-gradient(90deg, #118f50, #1ca862);
}

.contact-strip-card--email {
    --contact-accent: #0f4b9b;
}

.contact-strip-card:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(15, 75, 155, 0.18);
}

.contact-strip-card:hover::before {
    transform: scaleX(1);
}

.contact-strip-card:hover::after {
    transform: translateX(245%) rotate(20deg);
    opacity: 1;
}

.contact-strip-card:hover .contact-strip-card__icon {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: scale(1.05);
}

.contact-strip-card:hover .contact-strip-card__body strong,
.contact-strip-card:hover .contact-strip-card__body small,
.contact-strip-card:hover .contact-strip-card__arrow {
    color: #fff;
}

.contact-strip-card:hover .contact-strip-card__arrow {
    transform: translateX(4px);
}

.home-product-card,
.product-card,
.home-solution-card,
.home-article-card,
.article-card,
.detail-card,
.home-benefit,
.catalog-hero__meta article {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(16, 56, 116, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 242, 232, 0.94)),
        linear-gradient(135deg, rgba(15, 75, 155, 0.08), transparent 42%);
    box-shadow:
        0 18px 34px rgba(16, 39, 79, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, filter 0.45s ease;
}

.home-product-card::before,
.product-card::before,
.home-solution-card::before,
.home-article-card::before,
.article-card::before,
.detail-card::before,
.home-benefit::before,
.catalog-hero__meta article::before {
    content: "";
    position: absolute;
    top: -34%;
    left: -130%;
    width: 56%;
    height: 240%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: skewX(-22deg);
    transition: left 0.72s ease, opacity 0.72s ease;
    opacity: 0;
    z-index: 0;
}

.home-product-card::after,
.product-card::after,
.home-solution-card::after,
.home-article-card::after,
.article-card::after,
.detail-card::after,
.home-benefit::after,
.catalog-hero__meta article::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -44px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 75, 155, 0.14), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.home-product-card > *,
.product-card > *,
.home-solution-card > *,
.home-article-card > *,
.article-card > *,
.detail-card > *,
.home-benefit > *,
.catalog-hero__meta article > * {
    position: relative;
    z-index: 1;
}

.home-product-card:hover,
.product-card:hover,
.home-solution-card:hover,
.home-article-card:hover,
.article-card:hover,
.detail-card:hover,
.home-benefit:hover,
.catalog-hero__meta article:hover {
    transform: translateY(-7px);
    border-color: rgba(15, 75, 155, 0.24);
    box-shadow:
        0 24px 48px rgba(16, 39, 79, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    filter: brightness(1.02);
}

.home-product-card:hover::before,
.product-card:hover::before,
.home-solution-card:hover::before,
.home-article-card:hover::before,
.article-card:hover::before,
.detail-card:hover::before,
.home-benefit:hover::before,
.catalog-hero__meta article:hover::before {
    left: 170%;
    opacity: 1;
}

.home-product-card__media,
.product-card__media,
.home-article-card__media,
.article-card__media {
    position: relative;
}

.home-product-card__media::before,
.product-card__media::before {
    content: "";
    position: absolute;
    inset: 16px 16px 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 82% 18%, rgba(17, 84, 166, 0.16), transparent 24%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(231, 240, 255, 0.82) 48%, rgba(249, 240, 226, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    z-index: 0;
    transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.home-product-card__media::after,
.product-card__media::after {
    content: "";
    position: absolute;
    inset: 18px 18px 2px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 20%, rgba(27, 105, 203, 0.22), transparent 30%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.38), transparent 26%),
        radial-gradient(circle at 70% 76%, rgba(245, 157, 51, 0.18), transparent 28%);
    opacity: 0;
    transform: scale(0.96);
    filter: blur(10px);
    transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
    pointer-events: none;
    z-index: 1;
}

.home-product-card__media img,
.product-card__media img {
    position: relative;
    z-index: 2;
    box-shadow: 0 14px 28px rgba(16, 39, 79, 0.1);
    transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.home-product-card:hover .home-product-card__media img,
.product-card:hover .product-card__media img {
    transform: translateY(-4px) scale(1.07);
    filter: saturate(1.08) brightness(1.03);
    box-shadow: 0 20px 34px rgba(16, 39, 79, 0.18);
}

.home-product-card:hover .home-product-card__media::before,
.product-card:hover .product-card__media::before {
    transform: scale(1.02);
    filter: saturate(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 18px 34px rgba(15, 75, 155, 0.12);
}

.home-product-card:hover .home-product-card__media::after,
.product-card:hover .product-card__media::after {
    opacity: 1;
    transform: scale(1.04);
    filter: blur(4px);
}

.home-product-card__favorite,
.product-card__favorite,
.product-card__actions .icon-button,
.home-product-card__actions .icon-button,
.product-card__actions .icon-button--soft {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-product-card__body,
.product-card__content,
.home-article-card__body,
.article-card__content {
    gap: 10px;
}

.home-product-card__body h3,
.product-card h3,
.home-article-card h3,
.article-card h3,
.detail-card h3,
.home-solution-card__title strong {
    color: #16325f;
}

.home-product-card__meta,
.product-card__category,
.product-card p,
.product-card small,
.home-solution-card p,
.article-card__content p,
.home-article-card__body p,
.detail-card p,
.home-benefit p {
    color: rgba(36, 55, 86, 0.78);
}

.home-product-card__status strong,
.product-card__status strong,
.product-hero__status strong {
    text-shadow: 0 10px 22px rgba(15, 75, 155, 0.12);
}

.product-card__badge,
.home-article-card__tag,
.article-feature__tag {
    box-shadow: 0 10px 20px rgba(15, 75, 155, 0.12);
}

.home-solution-card {
    min-height: 164px;
}

.home-solution-card__icon,
.home-benefit__icon {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 10px 18px rgba(15, 75, 155, 0.1);
}

.detail-card--accent {
    background:
        linear-gradient(180deg, rgba(16, 65, 132, 0.96), rgba(21, 84, 168, 0.9)),
        radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.22), transparent 20%);
    border-color: rgba(15, 75, 155, 0.2);
}

.detail-card--accent h3,
.detail-card--accent p {
    color: #fff;
}

.detail-card--accent::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
}

.modal--product-preview .modal__card {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(1040px, calc(100vw - 34px));
    max-height: calc(100vh - 34px);
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.94);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.modal--product-preview.is-open .modal__card {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.product-preview-modal__header {
    justify-content: flex-end;
    align-items: start;
    gap: 18px;
}

.product-preview-modal__header p {
    margin: 8px 0 0;
    max-width: 560px;
    color: rgba(36, 55, 86, 0.78);
}

.product-preview-modal__body {
    margin-top: 20px;
}

.product-preview {
    display: grid;
}

.product-preview__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: stretch;
}

.product-preview__media {
    position: relative;
    min-height: 420px;
    padding: 22px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(17, 84, 166, 0.18), transparent 24%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(231, 240, 255, 0.82) 48%, rgba(249, 240, 226, 0.92));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 20px 36px rgba(16, 39, 79, 0.1);
}

.product-preview__media::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 20%, rgba(27, 105, 203, 0.16), transparent 28%),
        radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.34), transparent 24%),
        radial-gradient(circle at 72% 74%, rgba(245, 157, 51, 0.16), transparent 26%);
    pointer-events: none;
}

.product-preview__media img,
.product-preview__media .product-visual {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.product-preview__media img {
    object-fit: contain;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f7f3ec);
    box-shadow: 0 18px 30px rgba(16, 39, 79, 0.12);
}

.product-preview__content {
    display: grid;
    align-content: start;
    gap: 16px;
}

.product-preview__category {
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(15, 78, 219, 0.08);
    color: var(--primary-strong);
    font-size: 0.84rem;
    font-weight: 800;
}

.product-preview__content h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 0.98;
    color: #16325f;
}

.product-preview__summary {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(36, 55, 86, 0.82);
}

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

.product-preview__fact {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 78, 219, 0.08);
    box-shadow: 0 12px 22px rgba(16, 39, 79, 0.05);
}

.product-preview__fact strong {
    color: var(--primary-strong);
    font-size: 0.9rem;
}

.product-preview__fact span {
    color: rgba(36, 55, 86, 0.78);
    font-size: 0.92rem;
    line-height: 1.5;
}

.product-preview__description {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 78, 219, 0.08);
}

.product-preview__description h3,
.product-preview__description p {
    margin: 0;
}

.product-preview__description h3 {
    font-size: 1rem;
    color: #16325f;
}

.product-preview__description p {
    color: rgba(36, 55, 86, 0.82);
    line-height: 1.72;
}

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

.product-preview__actions .button {
    flex: 1 1 220px;
}

.product-preview__favorite {
    min-width: 52px;
    min-height: 52px;
    border: 1px solid rgba(15, 78, 219, 0.12);
    background: rgba(255, 255, 255, 0.84);
}

.home-product-card__favorite,
.product-card__favorite {
    position: absolute !important;
    top: 26px;
    right: 26px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex: 0 0 46px;
    border-radius: 16px;
    border: 1px solid rgba(15, 78, 219, 0.14);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 24px rgba(16, 39, 79, 0.14);
    z-index: 5;
}

.home-product-card__favorite svg,
.product-preview__favorite svg {
    width: 18px;
    height: 18px;
}

.home-product-card__favorite:hover,
.product-preview__favorite:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(15, 78, 219, 0.22);
}

@media (max-width: 900px) {
    .modal--product-preview .modal__card {
        left: 50%;
        right: auto;
        top: 50%;
        bottom: auto;
        width: min(100vw - 22px, 920px);
        padding: 22px;
    }

    .product-preview__layout {
        grid-template-columns: 1fr;
    }

    .product-preview__media {
        min-height: 320px;
    }

    .product-preview__facts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .modal--product-preview .modal__card {
        left: 50%;
        right: auto;
        top: 50%;
        bottom: auto;
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        padding: 18px;
        border-radius: 24px;
    }

    .product-preview-modal__header {
        gap: 12px;
    }

    .product-preview__media {
        min-height: 260px;
        padding: 16px;
    }

    .product-preview__media::after {
        inset: 16px;
    }

    .product-preview__content h2 {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
    }

    .product-preview__actions .button {
        flex-basis: 100%;
    }

    .home-product-card__favorite {
        top: 20px;
        right: 20px;
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
        flex-basis: 42px;
    }
}

.article-card--horizontal .article-card__content,
.article-page__hero,
.article-richtext {
    position: relative;
}

.article-card__media img,
.home-article-card__media img {
    transition: transform 0.45s ease, filter 0.45s ease;
}

.home-article-card:hover .home-article-card__media img,
.article-card:hover .article-card__media img {
    transform: scale(1.03);
    filter: saturate(1.05);
}

@media (max-width: 820px) {
    .contact-strip-card {
        min-height: 70px;
    }
}

@media (max-width: 560px) {
    .contact-strip-card {
        grid-template-columns: 46px minmax(0, 1fr) 16px;
        gap: 10px;
        padding: 0 14px;
        min-height: 68px;
    }

    .contact-strip-card__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .contact-strip-card__body strong {
        font-size: 0.9rem;
    }

    .contact-strip-card__body small {
        font-size: 0.78rem;
    }
}

/* Brand color tuning */
:root {
    --bg: #f8f1e6;
    --bg-strong: #efe1cb;
    --surface-border: rgba(194, 161, 106, 0.18);
    --text: #10305c;
    --text-muted: #5a6d87;
    --accent: #c99343;
    --success: #2f9c5b;
}

body {
    background:
        radial-gradient(circle at 12% 8%, rgba(15, 75, 155, 0.13), transparent 24%),
        radial-gradient(circle at 88% 11%, rgba(201, 147, 67, 0.18), transparent 20%),
        radial-gradient(circle at 18% 84%, rgba(47, 156, 91, 0.14), transparent 26%),
        linear-gradient(180deg, #fffaf2 0%, #f7efe2 46%, #f4f8ff 100%);
}

.ambient {
    display: block;
}

.ambient--one {
    background: radial-gradient(circle, rgba(15, 75, 155, 0.18) 0%, rgba(201, 147, 67, 0.16) 38%, transparent 72%);
}

.ambient--two {
    background: radial-gradient(circle, rgba(47, 156, 91, 0.16) 0%, rgba(15, 75, 155, 0.09) 42%, transparent 72%);
}

/* HERZ 2026 dark visual direction */
:root {
    --bg: #f3f7fc;
    --bg-strong: #e9f1fb;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-solid: #ffffff;
    --surface-border: rgba(10, 63, 133, 0.12);
    --line: rgba(255, 255, 255, 0.18);
    --text: #0c254a;
    --text-muted: #516781;
    --primary: #0050b8;
    --primary-strong: #001f55;
    --accent: #ff7a18;
    --success: #39d978;
    --teal: #11b8ff;
    --shadow-lg: 0 26px 58px rgba(0, 27, 75, 0.2);
    --shadow-md: 0 15px 34px rgba(0, 32, 84, 0.14);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --content-width: min(1480px, calc(100vw - 64px));
    --font-display: "Manrope", "Segoe UI", sans-serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

body {
    background:
        linear-gradient(180deg, #eef4fb 0, #f8fbff 54%, #edf4fb 100%);
    color: var(--text);
}

.ambient {
    display: none;
}

.site-header {
    width: 100%;
    padding: 0;
    background: #00255c;
    box-shadow: 0 18px 36px rgba(0, 24, 70, 0.18);
}

.site-header__bar {
    width: var(--content-width);
    min-height: 74px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: auto minmax(420px, 1fr) minmax(260px, 320px) auto;
    align-items: center;
    gap: 28px;
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand {
    min-width: auto;
}

.brand__text {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 900;
}

.site-header .main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    min-height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-header .nav-link {
    min-height: auto;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 800;
}

.site-header .nav-link:hover,
.site-header .nav-link.is-active {
    color: #fff;
}

.site-header .searchbar {
    min-height: 42px;
    padding: 0 8px 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
}

.site-header .searchbar input {
    color: #fff;
    font-size: 0.84rem;
}

.site-header .searchbar input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.site-header .searchbar .icon-button {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.header-action {
    width: auto;
    min-height: auto;
    padding: 0;
    color: #fff;
    gap: 7px;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 0.84rem;
    font-weight: 800;
}

.header-action svg {
    width: 1.35rem;
    height: 1.35rem;
}

.header-action em {
    top: -11px;
    right: -9px;
    background: var(--accent);
    color: #fff;
}

.header-action--portal {
    display: none;
}

.site-main {
    width: 100%;
    gap: 0;
    padding: 0 0 0;
}

.page--home .site-main {
    background:
        linear-gradient(180deg, #00255c 0 410px, #f3f7fc 410px 100%);
}

.home-hero {
    position: relative;
    width: var(--content-width);
    min-height: 500px;
    margin: 0 auto;
    padding: 38px 42px 72px;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.2fr) minmax(300px, 0.82fr);
    align-items: center;
    gap: 24px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, #001f55 0%, #003379 54%, #00235d 100%);
    border: 0;
    border-radius: 0 0 28px 28px;
    box-shadow: none;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 62%, rgba(31, 142, 255, 0.26), transparent 25%),
        linear-gradient(115deg, rgba(0, 12, 45, 0.62) 0 36%, transparent 36% 100%);
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: 150px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: #ff7a18;
    box-shadow: -110px 120px 0 rgba(255, 122, 24, 0.78);
    pointer-events: none;
}

.home-hero > * {
    position: relative;
    z-index: 1;
}

.home-hero__copy {
    max-width: 540px;
    gap: 18px;
}

.home-hero__eyebrow {
    min-height: 34px;
    padding: 0 14px;
    width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 800;
}

.home-hero__eyebrow svg {
    color: var(--accent);
}

.home-hero__eyebrow small {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
}

.home-hero h1 {
    max-width: 580px;
    margin: 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 3.6rem;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}

.home-hero h1 span {
    color: #17a8ff;
}

.home-hero h1 em {
    display: inline-block;
    color: #ffb21d;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 4.2rem;
    line-height: 0.8;
    font-style: italic;
    font-weight: 700;
}

.home-hero p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.home-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.home-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #fff;
}

.home-highlight__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #fff;
    background: rgba(17, 184, 255, 0.16);
    border: 1px solid rgba(17, 184, 255, 0.45);
}

.home-highlight:nth-child(2) .home-highlight__icon {
    color: #61ff9d;
    background: rgba(57, 217, 120, 0.12);
    border-color: rgba(57, 217, 120, 0.48);
}

.home-highlight:nth-child(3) .home-highlight__icon {
    color: #ff8a24;
    background: rgba(255, 122, 24, 0.12);
    border-color: rgba(255, 122, 24, 0.5);
}

.home-highlight strong {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
}

.home-hero__actions {
    margin-top: 4px;
    gap: 16px;
}

.home-hero__actions .button {
    min-height: 54px;
    border-radius: 999px;
    padding: 0 28px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 900;
}

.home-hero__actions .button--primary {
    background: linear-gradient(135deg, #ff8a24, #ff6418);
    color: #fff;
    box-shadow: 0 18px 30px rgba(255, 99, 24, 0.35);
}

.home-hero__actions .button--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.home-hero__visual {
    align-self: stretch;
    min-height: 390px;
    clip-path: ellipse(58% 62% at 50% 50%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 28px 50px rgba(0, 15, 52, 0.28);
}

.home-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.02);
}

.home-hero__quote-wrap {
    width: 100%;
}

.home-hero__decor {
    display: none;
}

.home-quote-card {
    width: 100%;
    padding: 28px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(17, 61, 124, 0.92), rgba(6, 34, 84, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 24px 46px rgba(0, 20, 69, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.home-quote-card__head {
    margin-bottom: 14px;
}

.home-quote-card__head h2 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.65rem;
    line-height: 1.08;
    font-weight: 900;
}

.home-quote-card__head p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.home-quote-card__icon {
    display: none;
}

.home-quote-card__fields {
    grid-template-columns: 1fr;
    gap: 10px;
}

.home-quote-field,
.home-quote-card__message textarea {
    min-height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}

.home-quote-card__message textarea {
    min-height: 58px;
    border-radius: 18px;
}

.home-quote-card input,
.home-quote-card select,
.home-quote-card textarea {
    color: #fff;
}

.home-quote-card input::placeholder,
.home-quote-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

.home-quote-field__icon {
    display: none;
}

.home-quote-card > .button {
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a24, #ff6418);
    box-shadow: 0 16px 28px rgba(255, 99, 24, 0.3);
}

.home-quote-card__contact {
    display: none;
}

.home-category-grid {
    width: min(1160px, calc(100vw - 96px));
    margin: -52px auto 14px;
    padding: 20px 32px;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(7, 39, 94, 0.96), rgba(3, 30, 76, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 24px 44px rgba(0, 24, 70, 0.28);
}

.home-category-card {
    min-height: 86px;
    padding: 8px 20px;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.home-category-card + .home-category-card {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.home-category-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #11b8ff;
    background: rgba(17, 184, 255, 0.08);
    border: 1px solid rgba(17, 184, 255, 0.5);
    box-shadow: 0 0 24px rgba(17, 184, 255, 0.35);
}

.home-category-card--green .home-category-card__icon,
.home-category-card--teal .home-category-card__icon {
    color: #57ff9a;
    border-color: rgba(87, 255, 154, 0.5);
    box-shadow: 0 0 24px rgba(87, 255, 154, 0.28);
}

.home-category-card--orange .home-category-card__icon {
    color: #ff8a24;
    border-color: rgba(255, 138, 36, 0.58);
    box-shadow: 0 0 24px rgba(255, 138, 36, 0.34);
}

.home-category-card--purple .home-category-card__icon,
.home-category-card--pink .home-category-card__icon {
    color: #9b74ff;
    border-color: rgba(155, 116, 255, 0.5);
    box-shadow: 0 0 24px rgba(155, 116, 255, 0.28);
}

.home-category-card strong {
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.14;
}

.home-section {
    width: var(--content-width);
    margin: 0 auto;
    padding: 18px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-section--products {
    display: grid;
    grid-template-columns: minmax(210px, 0.27fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    padding-top: 26px;
}

.home-section__heading {
    align-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.home-section__heading h2 {
    color: #0c254a;
    font-family: var(--font-body);
    font-size: 1.75rem;
    line-height: 1.15;
    font-weight: 900;
}

.home-section__heading a {
    color: #0050b8;
    font-size: 0.86rem;
    font-weight: 900;
}

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

.home-product-card,
.product-card,
.home-article-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 40, 102, 0.08);
    box-shadow: 0 12px 26px rgba(0, 40, 102, 0.12);
}

.home-product-card__media,
.product-card__media {
    padding: 0;
    aspect-ratio: 1.78 / 1;
    background: #eef4fb;
}

.home-product-card__media img,
.product-card__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    object-fit: cover;
}

.home-product-card__badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 3;
    min-height: 24px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: #fff;
    background: #1384ff;
    font-size: 0.72rem;
    font-weight: 900;
}

.home-product-card:nth-child(2) .home-product-card__badge {
    background: #22c96b;
}

.home-product-card:nth-child(3) .home-product-card__badge {
    background: #ff7a18;
}

.home-product-card:nth-child(4) .home-product-card__badge {
    background: #7d5cff;
}

.home-product-card__favorite,
.product-card__favorite {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    background: rgba(255, 255, 255, 0.88);
}

.home-product-card__body,
.product-card__content {
    padding: 12px 14px 0;
}

.home-product-card__body h3,
.product-card h3 {
    min-height: 2.5em;
    color: #0c254a;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.18;
    font-weight: 900;
}

.home-product-card__meta,
.product-card__category {
    color: #526983;
    font-size: 0.78rem;
}

.home-product-card__note,
.product-card__note {
    color: #526983;
    font-size: 0.78rem;
}

.home-product-card__actions,
.product-card__actions {
    padding: 12px 14px 14px;
    gap: 9px;
}

.home-product-card__actions .button,
.product-card__actions .button {
    min-height: 36px;
    border-radius: 7px;
    background: transparent;
    box-shadow: none;
    color: #ff6418;
    justify-content: flex-start;
    padding: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 900;
}

.home-product-card__actions .button::after,
.product-card__actions .button::after {
    content: "->";
    margin-left: 8px;
}

.home-product-card__actions .icon-button--filled,
.product-card__actions .icon-button--filled {
    width: 36px;
    min-width: 36px;
    height: 36px;
    min-height: 36px;
    border-radius: 9px;
    background: #0050b8;
    box-shadow: none;
}

#marketplace {
    display: grid;
    grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.home-solution-grid {
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-solution-card {
    min-height: 92px;
    padding: 16px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 40, 102, 0.1);
}

.home-solution-card > img {
    display: none;
}

.home-solution-card__body {
    padding: 0;
}

.home-solution-card__title {
    gap: 12px;
}

.home-solution-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.home-solution-card p {
    margin: 4px 0 0;
    color: #526983;
    font-size: 0.82rem;
}

#artigos-conteudos {
    display: grid;
    grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.home-article-grid {
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-article-card--featured {
    grid-template-columns: 1fr;
}

.home-article-card__media img {
    height: 126px;
    object-fit: cover;
}

.home-article-card__body {
    padding: 12px 14px 14px;
}

.home-article-card__tag {
    min-height: 22px;
    color: #0050b8;
    background: rgba(0, 80, 184, 0.08);
    font-size: 0.7rem;
}

.home-article-card h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.22;
}

.home-article-card p,
.home-article-card small {
    font-size: 0.78rem;
}

.home-benefit-strip {
    width: var(--content-width);
    margin: 18px auto 0;
    padding: 18px 24px;
    border-radius: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 40, 102, 0.1);
}

.site-footer {
    width: var(--content-width);
    margin: 0 auto;
    padding: 0;
    color: #fff;
    background:
        linear-gradient(135deg, #00255c 0%, #003d91 100%);
    border-radius: 0 0 14px 14px;
}

.newsletter {
    display: none;
}

.footer-grid {
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    padding: 34px 48px;
}

.brand--footer {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand--footer::before,
.brand--footer::after {
    display: none;
}

.footer-column h3,
.footer-brand p {
    color: #fff;
}

.footer-column a,
.footer-column button,
.footer-column p,
.footer-certification small {
    color: rgba(255, 255, 255, 0.78);
}

.social-row a,
.footer-certification {
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    padding: 14px 48px 22px;
    color: rgba(255, 255, 255, 0.62);
}

.catalog-hero,
.article-page__hero,
.section-block,
.catalog-results,
.catalog-sidebar,
.product-hero__content,
.product-hero__media,
.panel-card,
.panel-intro {
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0, 40, 102, 0.08);
    box-shadow: 0 12px 28px rgba(0, 40, 102, 0.1);
}

@media (max-width: 1180px) {
    :root {
        --content-width: min(100vw - 32px, 100vw - 32px);
    }

    .site-header__bar {
        grid-template-columns: auto 1fr;
        gap: 14px 22px;
        padding: 14px 0;
    }

    .site-header .main-nav {
        order: 3;
        grid-column: 1 / -1;
        overflow-x: auto;
    }

    .site-header .searchbar {
        grid-column: auto;
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .home-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    }

    .home-hero__visual {
        display: none;
    }

    .home-category-grid {
        width: var(--content-width);
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    :root {
        --content-width: min(100vw - 20px, 100vw - 20px);
    }

    .site-header__bar {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 18px 0;
    }

    .brand {
        justify-content: center;
    }

    .site-header .main-nav {
        order: 3;
        gap: 18px;
        width: 100%;
    }

    .site-header .searchbar {
        order: 2;
        width: 100%;
    }

    .header-actions {
        order: 4;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
    }

    .header-action {
        justify-content: center;
        min-height: 42px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
    }

    .page--home .site-main {
        background: linear-gradient(180deg, #00255c 0 720px, #f3f7fc 720px 100%);
    }

    .home-hero {
        min-height: auto;
        padding: 30px 20px 80px;
        grid-template-columns: 1fr;
        border-radius: 0 0 22px 22px;
    }

    .home-hero h1 {
        font-size: 2.55rem;
    }

    .home-hero h1 em {
        font-size: 3rem;
    }

    .home-hero__actions {
        grid-template-columns: 1fr;
    }

    .home-quote-card {
        padding: 22px;
    }

    .home-category-grid {
        margin-top: -42px;
        padding: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 20px;
    }

    .home-category-card {
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .home-section--products,
    #marketplace,
    #artigos-conteudos {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-product-grid,
    .home-solution-grid,
    .home-article-grid,
    .home-benefit-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-product-card__actions .button,
    .product-card__actions .button {
        font-size: 0.72rem;
    }

    .site-footer {
        width: 100%;
        border-radius: 0;
    }

    .footer-grid,
    .footer-bottom {
        padding-inline: 22px;
    }
}

@media (max-width: 460px) {
    .home-product-grid,
    .home-solution-grid,
    .home-article-grid,
    .home-benefit-strip {
        gap: 10px;
    }

    .home-product-card__body h3,
    .product-card h3 {
        font-size: 0.86rem;
    }

    .home-category-card {
        padding-inline: 8px;
    }
}

/* Reference visual repair: keep the home chrome dark despite legacy glass-card rules. */
.page--home .site-header {
    background: #03245c;
}

.page--home .topbar.site-header__bar.glass-card {
    width: min(100%, var(--content-width));
    min-height: 74px;
    padding: 0;
    background: #03245c;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.page--home .site-header .brand__text,
.page--home .site-header .nav-link,
.page--home .site-header .header-action {
    color: #fff;
}

.page--home .site-header .searchbar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: none;
}

.page--home .site-header .searchbar input,
.page--home .site-header .searchbar input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.page--home .home-hero.glass-card {
    min-height: 500px;
    margin: 0 auto;
    color: #fff;
    background:
        radial-gradient(circle at 94% 54%, rgba(255, 122, 24, 0.96) 0 86px, transparent 88px),
        radial-gradient(circle at 7% 48%, rgba(12, 77, 185, 0.36), transparent 210px),
        linear-gradient(135deg, #061f54 0%, #05306f 52%, #06265d 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.page--home .home-hero::before {
    background:
        linear-gradient(112deg, rgba(3, 17, 50, 0.74) 0 36%, transparent 36% 100%),
        radial-gradient(circle at 5% 70%, rgba(40, 142, 255, 0.22), transparent 190px);
}

.page--home .home-hero h1 {
    max-width: 520px;
    color: #fff;
    font-size: clamp(3rem, 4.2vw, 4.25rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.page--home .home-hero h1 span {
    color: #19a7ff;
}

.page--home .home-hero h1 em {
    color: #ffbd27;
    font-size: 1.08em;
}

.page--home .home-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.page--home .home-hero__visual {
    min-height: 380px;
    align-self: center;
    clip-path: ellipse(58% 63% at 50% 50%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #092e68;
}

.page--home .home-hero__visual img {
    opacity: 0.96;
}

.page--home .home-quote-card.glass-card {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(17, 60, 126, 0.96), rgba(5, 30, 78, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 26px 54px rgba(0, 18, 58, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.page--home .home-quote-card__head h2,
.page--home .home-quote-card__head p {
    color: #fff;
}

.page--home .home-quote-field,
.page--home .home-quote-card__message textarea {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page--home .home-quote-card input,
.page--home .home-quote-card select,
.page--home .home-quote-card textarea {
    color: #fff;
}

.page--home .home-quote-card input::placeholder,
.page--home .home-quote-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.page--home .home-quote-card select option {
    color: #0c254a;
}

.page--home .home-quote-card > .button {
    background: linear-gradient(135deg, #ff8a24, #ff6418);
    color: #fff;
}

.page--home .home-category-grid.glass-card {
    color: #fff;
    background: linear-gradient(180deg, rgba(8, 42, 101, 0.98), rgba(5, 31, 79, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 44px rgba(0, 24, 70, 0.3);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.page--home .home-category-card {
    background: transparent;
}

.page--home .home-category-card strong {
    color: #fff;
}

/* Reference visual correction: keep the current features, but force the
   homepage to follow the approved dark HERZ composition without old layers
   hiding the central hero image. */
.page--home .home-hero.glass-card {
    isolation: isolate;
    min-height: 470px;
    padding: 28px 56px 56px;
    grid-template-columns: minmax(410px, 1fr) minmax(360px, 0.96fr) minmax(320px, 0.88fr);
    gap: 26px;
    overflow: hidden;
}

.page--home .home-hero::before {
    z-index: 0;
    opacity: 0.9;
}

.page--home .home-hero::after {
    z-index: 1;
    right: -76px;
    top: 150px;
    width: 270px;
    height: 270px;
    opacity: 0.92;
}

.page--home .home-hero__copy,
.page--home .home-hero__visual,
.page--home .home-hero__quote-wrap {
    position: relative;
}

.page--home .home-hero__copy {
    z-index: 4;
}

.page--home .home-hero__visual {
    z-index: 2;
    width: 100%;
    min-height: 330px;
    height: 350px;
    background:
        linear-gradient(90deg, rgba(3, 20, 58, 0.08), rgba(3, 20, 58, 0.02)),
        url("/assets/images/products/painel-interativo-75.jpg") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 48% 52% 44% 56% / 54% 45% 55% 46%;
    clip-path: none;
    box-shadow: 0 32px 58px rgba(0, 14, 50, 0.34);
}

.page--home .home-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: block;
    object-fit: cover;
    opacity: 1;
    visibility: visible;
}

.page--home .home-hero__quote-wrap {
    z-index: 5;
}

.page--home .home-hero h1 {
    max-width: 430px;
    font-size: clamp(2.65rem, 3.15vw, 3.35rem);
    line-height: 1.02;
}

.page--home .home-hero h1 em {
    font-size: 1.08em;
}

.page--home .home-hero p {
    max-width: 480px;
    font-size: 0.94rem;
    line-height: 1.55;
}

.page--home .home-hero__copy {
    gap: 13px;
}

.page--home .home-hero__highlights {
    flex-wrap: nowrap;
    gap: 12px;
    margin-top: 2px;
    padding-top: 10px;
    max-width: 430px;
}

.page--home .home-highlight strong {
    font-size: 0.62rem;
    line-height: 1.15;
    white-space: nowrap;
}

.page--home .home-highlight {
    gap: 6px;
    padding: 0;
}

.page--home .home-highlight__icon {
    width: 25px;
    height: 25px;
    border-radius: 8px;
}

.page--home .home-hero__actions {
    gap: 14px;
    margin-top: 2px;
}

.page--home .home-hero__actions .button {
    min-height: 48px;
    min-width: 0;
    padding: 0 24px;
    font-size: 0.84rem;
}

.page--home .home-quote-card.glass-card {
    max-width: 350px;
    margin-left: auto;
    padding: 22px;
    gap: 10px;
    border-radius: 26px;
}

.page--home .home-quote-card__head {
    margin-bottom: 12px;
}

.page--home .home-quote-card__head h2 {
    font-size: 1.28rem;
    line-height: 1.08;
}

.page--home .home-quote-card__head p {
    font-size: 0.78rem;
}

.page--home .home-quote-card__fields {
    gap: 9px;
}

.page--home .home-quote-field {
    min-height: 42px;
}

.page--home .home-quote-card input,
.page--home .home-quote-card select {
    min-height: 42px;
    font-size: 0.82rem;
}

.page--home .home-quote-card__message textarea {
    min-height: 72px;
    height: 72px;
    resize: none;
    font-size: 0.82rem;
}

.page--home .home-quote-card > .button {
    min-height: 46px;
    margin-top: 8px;
    font-size: 0.84rem;
}

.page--home .home-category-grid.glass-card {
    position: relative;
    z-index: 8;
    margin-top: -48px;
}

@media (max-width: 1100px) {
    .page--home .home-hero.glass-card {
        grid-template-columns: 1fr;
        padding: 30px 20px 72px;
    }

    .page--home .home-hero__visual {
        display: block;
        order: 2;
        height: 320px;
        min-height: 320px;
    }

    .page--home .home-hero__quote-wrap {
        order: 3;
    }

    .page--home .home-quote-card.glass-card {
        max-width: none;
        margin: 0;
    }
}

@media (max-width: 720px) {
    .page--home .site-main {
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, #00255c 0 820px, #f3f7fc 820px 100%);
    }

    .page--home .home-hero {
        order: 1;
    }

    .page--home .home-category-grid {
        order: 2;
    }

    .page--home .home-section--products {
        order: 3;
    }

    .page--home .home-section#marketplace {
        order: 4;
    }

    .page--home .home-section#artigos-conteudos {
        order: 5;
    }

    .page--home .home-benefit-strip {
        order: 6;
    }

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

    .site-header .header-action {
        min-width: 0;
        padding-inline: 6px;
        font-size: 0.72rem;
    }

    .page--home .home-hero.glass-card {
        min-height: auto;
        padding: 24px 16px 56px;
    }

    .page--home .home-hero::after {
        right: -170px;
        top: 340px;
        width: 250px;
        height: 250px;
        opacity: 0.82;
    }

    .page--home .home-hero h1 {
        max-width: 340px;
        font-size: clamp(2.05rem, 9.1vw, 2.25rem);
    }

    .page--home .home-hero p {
        max-width: 320px;
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .page--home .home-hero__highlights {
        flex-wrap: wrap;
        max-width: 100%;
        gap: 10px;
    }

    .page--home .home-highlight strong {
        font-size: 0.66rem;
    }

    .page--home .home-hero__visual {
        height: 260px;
        min-height: 260px;
        border-radius: 30px;
    }
}

/* Site-wide reference polish: extend the dark HERZ visual language beyond the
   hero while keeping the existing PHP structure and interactions intact. */
:root {
    --ref-navy: #06245a;
    --ref-navy-2: #001a46;
    --ref-blue: #0f8eff;
    --ref-orange: #ff7a18;
    --ref-green: #25d775;
    --ref-card: rgba(255, 255, 255, 0.94);
    --ref-line: rgba(4, 42, 94, 0.12);
    --ref-shadow: 0 22px 46px rgba(0, 28, 80, 0.16);
}

body {
    background:
        radial-gradient(circle at 8% 16%, rgba(255, 122, 24, 0.13), transparent 260px),
        radial-gradient(circle at 92% 26%, rgba(15, 142, 255, 0.18), transparent 320px),
        linear-gradient(180deg, #edf5ff 0%, #f7fbff 42%, #eef5ff 100%);
}

.site-header {
    overflow-x: clip;
    background: var(--ref-navy);
}

.site-header__bar,
.page--home .topbar.site-header__bar.glass-card {
    width: min(1320px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    box-sizing: border-box;
    grid-template-columns: minmax(152px, 168px) minmax(390px, 1fr) minmax(250px, 320px) minmax(216px, max-content);
    gap: clamp(12px, 1.55vw, 22px);
    overflow: visible;
}

.site-header .brand {
    width: 164px;
    min-width: 0;
    height: 54px;
    padding: 7px 10px;
    border-radius: 18px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 32px rgba(0, 9, 36, 0.22);
    overflow: hidden;
}

.site-header .brand__logo {
    width: 146px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
}

.site-header .main-nav {
    min-width: 0;
    gap: clamp(16px, 1.85vw, 28px);
    overflow-x: auto;
    scrollbar-width: none;
}

.site-header .main-nav::-webkit-scrollbar {
    display: none;
}

.site-header .searchbar {
    min-width: 0;
    width: 100%;
}

.header-actions {
    min-width: 0;
    gap: clamp(10px, 1.15vw, 16px);
}

.header-action {
    min-width: 0;
}

.header-action span {
    white-space: nowrap;
}

.page--home .site-main {
    background:
        linear-gradient(180deg, #06245a 0 475px, transparent 475px),
        radial-gradient(circle at 8% 15%, rgba(255, 122, 24, 0.12), transparent 260px),
        radial-gradient(circle at 92% 18%, rgba(21, 172, 255, 0.16), transparent 320px),
        linear-gradient(180deg, #eef6ff 0%, #f8fbff 46%, #edf5ff 100%);
}

.home-section,
.catalog-results,
.catalog-sidebar,
.section-block,
.article-page__hero,
.article-page__content,
.product-hero__content,
.product-hero__media {
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--ref-shadow);
}

.home-section {
    margin-top: 24px;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
}

.home-section--products,
#marketplace,
#artigos-conteudos {
    grid-template-columns: minmax(220px, 0.24fr) minmax(0, 1fr);
    gap: 26px;
}

.home-section__heading {
    align-content: start;
    align-items: start;
    padding: 10px 0 10px 18px;
    border-left: 4px solid var(--ref-orange);
}

.home-section__heading h2 {
    color: var(--ref-navy-2);
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.home-section__heading a {
    color: #005bd6;
}

.home-product-card,
.product-card,
.home-article-card,
.article-card,
.home-solution-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.94));
    border: 1px solid var(--ref-line);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(0, 28, 80, 0.13);
}

.home-product-card:hover,
.product-card:hover,
.home-article-card:hover,
.article-card:hover,
.home-solution-card:hover {
    border-color: rgba(255, 122, 24, 0.36);
    box-shadow: 0 26px 52px rgba(0, 28, 80, 0.18);
}

.home-product-card__media,
.product-card__media,
.home-article-card__media,
.article-card__media {
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, rgba(6, 36, 90, 0.08), rgba(255, 122, 24, 0.08));
}

.home-product-card__body h3,
.product-card h3,
.home-article-card h3,
.article-card h3,
.home-solution-card h3 {
    color: var(--ref-navy-2);
}

.home-product-card__actions .button,
.product-card__actions .button {
    min-height: 40px;
    padding: 0 16px;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #0053bd, #0f8eff);
    box-shadow: 0 14px 26px rgba(0, 83, 189, 0.22);
}

.home-product-card__actions .button::after,
.product-card__actions .button::after {
    content: none;
}

.home-product-card__actions .icon-button--filled,
.product-card__actions .icon-button--filled {
    background: linear-gradient(135deg, var(--ref-orange), #ff9d2f);
    box-shadow: 0 14px 26px rgba(255, 122, 24, 0.22);
}

.home-benefit-strip {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.94));
    box-shadow: var(--ref-shadow);
}

.catalog-hero,
.article-page__hero,
.product-hero__content {
    color: #fff;
    background:
        radial-gradient(circle at 92% 48%, rgba(255, 122, 24, 0.72), transparent 130px),
        radial-gradient(circle at 14% 20%, rgba(15, 142, 255, 0.2), transparent 250px),
        linear-gradient(135deg, var(--ref-navy-2) 0%, #07357d 100%);
    border: 0;
}

.catalog-hero h1,
.catalog-hero p,
.article-page__hero h1,
.article-page__hero p,
.product-hero__content h1,
.product-hero__content p {
    color: #fff;
}

.catalog-hero__meta article {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.catalog-sidebar,
.catalog-results {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
}

.site-footer {
    width: min(1320px, calc(100vw - 28px));
    margin-top: 34px;
    border-radius: 34px 34px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 95% 20%, rgba(15, 142, 255, 0.22), transparent 260px),
        radial-gradient(circle at 3% 80%, rgba(255, 122, 24, 0.16), transparent 220px),
        linear-gradient(135deg, #001a46 0%, #063274 100%);
}

.brand--footer {
    width: fit-content;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
}

.brand--footer .brand__logo {
    width: 170px;
    max-height: 58px;
    object-fit: contain;
}

@media (max-width: 1180px) {
    .site-header__bar,
    .page--home .topbar.site-header__bar.glass-card {
        grid-template-columns: minmax(148px, 170px) minmax(0, 1fr);
        width: min(100% - 24px, 980px);
    }

    .site-header .main-nav,
    .site-header .searchbar,
    .header-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .site-header__bar,
    .page--home .topbar.site-header__bar.glass-card {
        width: min(100% - 16px, 430px);
        max-width: calc(100vw - 16px);
    }

    .site-header .brand {
        width: 178px;
        margin-inline: auto;
    }

    .site-header .brand__logo {
        width: 158px;
    }

    .home-section,
    .home-section--products,
    #marketplace,
    #artigos-conteudos {
        display: block;
        padding: 18px;
        border-radius: 24px;
    }

    .home-section__heading {
        margin-bottom: 16px;
    }
}

.page--catalog .catalog-hero.glass-card,
.page--articles .catalog-hero.glass-card,
.page--article .article-page__hero.glass-card,
.page--product .product-hero__content.glass-card,
.page--product .product-hero__media.glass-card {
    color: #fff;
    background:
        radial-gradient(circle at 90% 50%, rgba(255, 122, 24, 0.72), transparent 150px),
        radial-gradient(circle at 10% 24%, rgba(15, 142, 255, 0.26), transparent 280px),
        linear-gradient(135deg, #001a46 0%, #07357d 100%);
    border: 0;
    box-shadow: 0 28px 60px rgba(0, 20, 68, 0.24);
}

.page--catalog .catalog-hero::before,
.page--articles .catalog-hero::before {
    background:
        linear-gradient(110deg, rgba(0, 18, 50, 0.7) 0 34%, transparent 34% 100%),
        radial-gradient(circle at 86% 22%, rgba(255, 122, 24, 0.28), transparent 210px);
}

.page--catalog .catalog-hero h1,
.page--catalog .catalog-hero p,
.page--articles .catalog-hero h1,
.page--articles .catalog-hero p,
.page--article .article-page__hero h1,
.page--article .article-page__hero p,
.page--product .product-hero__content h1,
.page--product .product-hero__content p {
    color: #fff;
}

.page--catalog .catalog-hero .eyebrow,
.page--articles .catalog-hero .eyebrow,
.page--article .article-page__hero .eyebrow,
.page--product .product-hero__content .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.page--catalog .catalog-hero__meta article,
.page--articles .catalog-hero__meta article {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.page--catalog .catalog-hero__meta strong,
.page--catalog .catalog-hero__meta span,
.page--articles .catalog-hero__meta strong,
.page--articles .catalog-hero__meta span {
    color: #fff;
}

/* 2026 full reference rebuild */
:root {
    --reference-navy: #062e63;
    --reference-navy-deep: #001f46;
    --reference-cyan: #19c9d7;
    --reference-blue: #0054b8;
    --reference-gold: #f6b84b;
    --reference-orange: #ff9a1f;
    --reference-ink: #08254b;
    --reference-muted: #60738b;
    --reference-line: rgba(7, 43, 92, 0.12);
    --reference-shadow: 0 18px 42px rgba(5, 37, 82, 0.13);
}

body {
    background: #ffffff !important;
    color: var(--reference-ink);
}

.site-shell {
    background: #fff;
}

.site-header.reference-header,
.page--home .site-main,
.site-footer.reference-footer {
    width: min(1188px, calc(100vw - 28px));
}

.site-header.reference-header {
    position: relative !important;
    top: auto !important;
    z-index: 30;
    margin-inline: auto;
    padding: 18px 0 0 !important;
    overflow: visible;
}

.reference-header__inner {
    display: grid;
    gap: 14px;
}

.reference-header__top {
    display: grid;
    grid-template-columns: 220px minmax(280px, 1fr) 180px 176px;
    align-items: center;
    gap: 22px;
}

.reference-header__brand {
    width: 208px;
    padding: 0;
    background: transparent;
}

.reference-header__brand .brand__logo {
    width: 208px;
    height: auto;
    max-height: 82px;
    object-fit: contain;
}

.reference-search {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: center;
    min-height: 46px;
    border: 1px solid var(--reference-line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(12, 47, 92, 0.08);
}

.reference-search input {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: var(--reference-ink);
    font: 600 0.92rem/1 var(--font-body);
}

.reference-search input::placeholder {
    color: #72849b;
}

.reference-search button {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--reference-ink);
}

.reference-header__whatsapp,
.reference-restricted__button {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
}

.reference-header__whatsapp {
    color: var(--reference-ink);
}

.reference-header__whatsapp svg {
    width: 32px;
    height: 32px;
    color: #0abf67;
    stroke-width: 2.2;
}

.reference-header__whatsapp span {
    display: grid;
    gap: 1px;
    font-size: 0.76rem;
    line-height: 1.1;
}

.reference-header__whatsapp strong {
    font-size: 0.94rem;
}

.reference-restricted {
    position: relative;
    z-index: 70;
    display: grid;
    gap: 8px;
}

.reference-restricted__button {
    padding: 0 16px;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #001f46, #063a7d);
    box-shadow: 0 16px 30px rgba(0, 31, 70, 0.22);
}

.reference-restricted__button svg {
    width: 19px;
    height: 19px;
}

.reference-restricted__menu {
    position: static;
    width: 100%;
    min-width: 0;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--reference-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(2, 24, 58, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease !important;
}

.reference-restricted__menu[hidden] {
    display: none;
}

.reference-restricted.is-open .reference-restricted__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.reference-restricted__menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 12px;
    color: var(--reference-ink);
    font-size: 0.88rem;
    font-weight: 800;
}

.reference-restricted__menu a:hover {
    background: #eef6ff;
}

.reference-nav {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 24px;
    border-top: 1px solid var(--reference-line);
    border-bottom: 1px solid var(--reference-line);
    background: #fff;
}

.reference-nav .nav-link {
    position: relative;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--reference-ink);
    font-size: 0.94rem;
    font-weight: 800;
    white-space: nowrap;
}

.reference-nav .nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    border-radius: 999px;
    background: var(--reference-cyan);
}

.page--home .site-main {
    gap: 18px !important;
    padding: 0 0 0 !important;
    background: #fff !important;
}

.reference-hero {
    display: grid;
    grid-template-columns: minmax(0, 2.08fr) minmax(310px, 0.92fr);
    gap: 18px;
    align-items: stretch;
}

.reference-hero__main {
    position: relative;
    min-height: 585px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(0, 22, 49, 0.9) 0%, rgba(0, 31, 70, 0.74) 38%, rgba(0, 31, 70, 0.12) 100%),
        url("/assets/images/products/painel-interativo-75.jpg") center / cover no-repeat;
    box-shadow: var(--reference-shadow);
}

.reference-hero__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 30%, rgba(25, 201, 215, 0.18), transparent 230px),
        linear-gradient(180deg, transparent 0 62%, rgba(0, 20, 48, 0.9) 100%);
}

.reference-hero__content {
    position: relative;
    z-index: 2;
    width: min(500px, 90%);
    padding: 64px 0 0 42px;
    color: #fff;
}

.reference-hero__content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.9rem, 4.45vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.reference-hero__content p {
    width: min(430px, 100%);
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    line-height: 1.55;
    font-weight: 600;
}

.reference-cta {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 28px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #20d5df, #12b8cd);
    box-shadow: 0 18px 34px rgba(16, 187, 203, 0.32);
    font: 900 1rem/1 var(--font-body);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.reference-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(16, 187, 203, 0.4);
}

.reference-hero__benefits {
    position: absolute;
    z-index: 2;
    left: 42px;
    right: 36px;
    bottom: 88px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.reference-hero__benefits article {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.reference-hero__benefits span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 13px;
    background: rgba(2, 29, 65, 0.48);
}

.reference-hero__benefits svg {
    width: 23px;
    height: 23px;
    color: #fff;
}

.reference-hero__benefits strong {
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.2;
}

.reference-hero__dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 26px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.reference-hero__dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.reference-hero__dots .is-active {
    background: var(--reference-cyan);
}

.reference-loyola-card {
    display: flex;
    flex-direction: column;
    align-self: start;
    align-content: start;
    gap: 10px;
    min-height: 0;
    padding: 12px;
    border: 1px solid rgba(7, 43, 92, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9fe 100%);
    box-shadow: var(--reference-shadow);
}

.reference-loyola-card__head,
.reference-loyola-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.reference-loyola-card__head strong,
.reference-loyola-card h2 {
    color: var(--reference-ink);
}

.reference-loyola-card__head strong {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    line-height: 1;
}

.reference-loyola-card__head span {
    color: var(--reference-blue);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.reference-loyola-card__head em {
    color: #1b3557;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    transform: rotate(-5deg);
}

.reference-loyola-card__illustration {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    border: 2px solid var(--reference-navy);
    border-radius: 14px;
    background: #eaf5ff;
}

.reference-loyola-card__illustration img {
    display: block;
    width: 100%;
    aspect-ratio: 298 / 222;
    object-fit: cover;
}

.reference-loyola-card__illustration .reference-loyola-card__bubble,
.reference-loyola-card__illustration .reference-loyola-card__scene {
    display: none;
}

.reference-loyola-card__bubble {
    position: absolute;
    z-index: 4;
    top: 22px;
    left: 34px;
    width: 178px;
    padding: 12px;
    border: 2px solid var(--reference-ink);
    border-radius: 50%;
    background: #fff8e8;
    color: var(--reference-ink);
    font-size: 0.73rem;
    font-weight: 900;
    line-height: 1.18;
    text-align: center;
    text-transform: uppercase;
}

.reference-loyola-card__scene {
    position: absolute;
    inset: 0;
}

.reference-loyola-card__teacher {
    position: absolute;
    right: 28px;
    bottom: 0;
    width: 128px;
    height: 190px;
    border-radius: 70px 70px 18px 18px;
    background:
        radial-gradient(circle at 50% 28%, #f3c39d 0 26px, transparent 27px),
        radial-gradient(circle at 46% 32%, #1b3557 0 3px, transparent 4px),
        radial-gradient(circle at 58% 32%, #1b3557 0 3px, transparent 4px),
        linear-gradient(90deg, transparent 0 28px, #f3c39d 28px 99px, transparent 99px),
        linear-gradient(135deg, #ffffff 0 46%, #113f75 46% 100%);
    box-shadow: inset 0 0 0 2px rgba(0, 31, 70, 0.18);
}

.reference-loyola-card__teacher::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 34px;
    width: 58px;
    height: 34px;
    border: 3px solid #152d4d;
    border-radius: 999px;
}

.reference-loyola-card__teacher::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 38px;
    width: 58px;
    height: 36px;
    border-radius: 999px;
    background: #f3c39d;
    transform: rotate(-20deg);
}

.reference-loyola-card__school {
    position: absolute;
    left: 24px;
    bottom: 48px;
    padding: 10px 18px;
    border-radius: 4px;
    color: #fff;
    background: #2a6f9a;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.reference-article-tag {
    width: fit-content;
    margin-top: 2px;
    padding: 5px 9px;
    border-radius: 6px;
    color: #fff;
    background: var(--reference-blue);
    font-size: 0.67rem;
    font-weight: 900;
    text-transform: uppercase;
}

.reference-loyola-card h2 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.reference-loyola-card p {
    margin: 0;
    color: #536880;
    font-size: 0.82rem;
    line-height: 1.34;
}

.reference-button-dark {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 9px;
    color: #fff;
    background: var(--reference-navy-deep);
    font-size: 0.86rem;
    font-weight: 900;
}

.reference-loyola-card__actions span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--reference-ink);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.reference-promo {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 18px;
    border: 2px solid var(--reference-cyan);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(90deg, #05376e, #001f46);
    box-shadow: 0 16px 32px rgba(1, 31, 70, 0.18);
    text-transform: uppercase;
    font-weight: 900;
}

.reference-promo strong {
    color: var(--reference-gold);
}

.reference-promo em {
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--reference-ink);
    background: var(--reference-gold);
    font-style: normal;
}

.reference-promo a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    color: #fff;
    font-size: 0.85rem;
    text-transform: none;
}

.reference-section {
    padding: 0 12px;
}

.reference-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.reference-section__head h2 {
    margin: 0;
    color: var(--reference-ink);
    font-size: 1.55rem;
    line-height: 1.12;
}

.reference-section__head p {
    margin: 6px 0 0;
    color: var(--reference-muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.reference-section__head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--reference-blue);
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
}

.reference-cases .reference-section__head {
    align-items: flex-start;
    margin-bottom: 8px;
}

.reference-cases .reference-section__head h2 {
    font-size: 1.28rem;
}

.reference-cases .reference-section__head p {
    margin-top: 3px;
    font-size: 0.78rem;
}

.reference-cases .reference-section__head a {
    font-size: 0.72rem;
}

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

.reference-product-card {
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 300px;
    border: 1px solid var(--reference-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(4, 31, 70, 0.11);
    transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}

.reference-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(4, 31, 70, 0.16);
}

.reference-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.48 / 1;
    overflow: hidden;
    background: #eef5fb;
}

.reference-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 68% !important;
    transition: transform 0.28s ease !important;
}

.reference-product-card:nth-child(3) .reference-product-card__media img,
.reference-product-card:nth-child(4) .reference-product-card__media img {
    object-position: center center !important;
}

.reference-case-card img {
    object-position: center 64% !important;
}

.reference-product-card:hover .reference-product-card__media img {
    transform: scale(1.06);
}

.reference-product-card__media span {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 9px;
    border-radius: 6px;
    color: #fff;
    background: var(--reference-orange);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.reference-product-card__body {
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 12px 12px 8px;
}

.reference-product-card__body h3 {
    margin: 0;
    color: var(--reference-ink);
    font-size: 0.94rem;
    line-height: 1.22;
}

.reference-product-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reference-stars {
    color: #ffc02b;
    font-size: 0.78rem;
    letter-spacing: -0.08em;
}

.reference-product-card__rating small,
.reference-product-card__body > small {
    color: #6d7f96;
    font-size: 0.72rem;
    font-weight: 700;
}

.reference-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.reference-product-card__price strong {
    color: var(--reference-blue);
    font-size: 1.1rem;
    font-weight: 900;
}

.reference-product-card__price del {
    color: #93a1b2;
    font-size: 0.76rem;
    font-weight: 700;
}

.reference-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 6px;
    padding: 0 12px 12px;
}

.reference-product-card__actions button {
    min-width: 0;
    min-height: 34px;
    border: 1px solid rgba(0, 84, 184, 0.18);
    border-radius: 7px;
    color: var(--reference-ink);
    background: #f9fcff;
    font: 900 0.7rem/1 var(--font-body);
    cursor: pointer;
}

.reference-product-card__actions button:first-child {
    padding-inline: 8px;
}

.reference-product-card__actions button:last-child {
    display: grid;
    place-items: center;
}

.reference-product-card__actions svg {
    width: 18px;
    height: 18px;
}

.reference-case-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(210px, 0.95fr);
    align-items: start;
    gap: 12px;
}

.reference-case-card,
.reference-testimonial,
.reference-benefits {
    border: 1px solid var(--reference-line);
    background: #fff;
    box-shadow: 0 14px 30px rgba(4, 31, 70, 0.08);
}

.reference-case-card {
    align-self: start;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.reference-case-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.9 / 1;
    border-radius: 9px;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(4, 31, 70, 0.12);
}

.reference-case-card strong,
.reference-case-card span {
    display: block;
    padding-inline: 2px;
}

.reference-case-card strong {
    margin-top: 6px;
    color: var(--reference-ink);
    font-size: 0.72rem;
    line-height: 1.16;
}

.reference-case-card span {
    padding-bottom: 0;
    color: var(--reference-muted);
    font-size: 0.66rem;
    font-weight: 700;
}

.reference-testimonial {
    display: grid;
    align-content: center;
    align-self: start;
    gap: 6px;
    min-height: auto;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.reference-testimonial > span {
    color: var(--reference-blue);
    font: 900 2.2rem/0.7 Georgia, serif;
}

.reference-testimonial p {
    margin: 0;
    color: #2d4767;
    font-size: 0.73rem;
    line-height: 1.34;
    font-weight: 700;
}

.reference-testimonial strong {
    margin-top: 6px;
    color: var(--reference-ink);
    font-size: 0.72rem;
}

.reference-testimonial small {
    color: var(--reference-muted);
    font-size: 0.65rem;
    font-weight: 700;
}

.reference-slider-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.reference-slider-arrows span {
    width: 8px;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #cfd9e7;
}

.reference-slider-arrows span:first-child {
    background: var(--reference-cyan);
}

.reference-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 4px 12px 14px;
    padding: 18px 12px;
    border-radius: 14px;
}

.reference-benefits article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    padding: 0 16px;
}

.reference-benefits article + article {
    border-left: 1px solid var(--reference-line);
}

.reference-benefits span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--reference-blue);
    background: #eef6ff;
}

.reference-benefits svg {
    width: 25px;
    height: 25px;
}

.reference-benefits strong {
    color: var(--reference-ink);
    font-size: 0.86rem;
}

.reference-benefits p {
    margin: 2px 0 0;
    color: var(--reference-muted);
    font-size: 0.75rem;
    line-height: 1.32;
    font-weight: 700;
}

.site-footer.reference-footer {
    position: relative;
    display: grid;
    gap: 22px;
    overflow: hidden;
    margin: 38px auto 0;
    padding: 50px clamp(22px, 4vw, 58px) 28px;
    border-radius: 52px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 8%, rgba(26, 167, 255, 0.32), transparent 250px),
        radial-gradient(circle at 20% 42%, rgba(0, 99, 211, 0.24), transparent 280px),
        radial-gradient(circle at 74% 78%, rgba(25, 201, 215, 0.2), transparent 240px),
        linear-gradient(145deg, #001d48 0%, #00336f 46%, #00265a 100%) !important;
    box-shadow: 0 30px 80px rgba(0, 28, 72, 0.24);
}

.site-footer.reference-footer::before {
    content: "";
    position: absolute;
    top: 38px;
    right: 48px;
    width: 120px;
    height: 132px;
    opacity: 0.48;
    background-image: radial-gradient(circle, rgba(39, 183, 255, 0.72) 2px, transparent 2px);
    background-size: 18px 18px;
}

.site-footer.reference-footer::after {
    content: "";
    position: absolute;
    right: -68px;
    bottom: 158px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(76, 183, 255, 0.18);
    border-radius: 999px;
}

.reference-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 18px;
}

.reference-footer .footer-brand {
    display: grid;
    grid-column: 1 / -1;
    justify-items: center;
    text-align: center;
}

.reference-footer .brand--footer {
    width: fit-content;
    padding: 16px 32px;
    border-radius: 26px;
    background: #fff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65),
        0 0 30px rgba(23, 173, 255, 0.48);
}

.reference-footer .brand__logo {
    width: 218px;
    height: auto;
    max-height: 82px;
    object-fit: contain;
}

.reference-footer .footer-brand p,
.reference-footer .footer-column p,
.reference-footer .footer-column a,
.reference-footer .footer-column button {
    color: rgba(255, 255, 255, 0.82);
}

.reference-footer .footer-brand p {
    max-width: 620px;
    margin: 24px auto 26px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 1.65vw, 1.35rem);
    line-height: 1.55;
    font-weight: 500;
}

.reference-footer .social-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 26px;
}

.reference-footer .social-row a {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(141, 197, 255, 0.45);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 20px rgba(53, 154, 255, 0.12);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.reference-footer .social-row a:hover {
    transform: translateY(-3px);
    border-color: rgba(103, 185, 255, 0.85);
    background: rgba(255, 255, 255, 0.09);
}

.reference-footer .social-row svg {
    width: 30px;
    height: 30px;
}

.reference-footer__contact-card {
    width: min(100%, 560px);
    min-height: 112px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 16px;
    margin: 0 auto 18px;
    padding: 18px 24px;
    border: 1px solid rgba(107, 190, 255, 0.62);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, rgba(9, 71, 150, 0.78), rgba(0, 42, 100, 0.68));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 30px rgba(39, 183, 255, 0.2);
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.reference-footer__contact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(107, 190, 255, 0.95);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 0 38px rgba(39, 183, 255, 0.28);
}

.reference-footer__contact-card > span {
    grid-row: span 2;
    color: #66bcff;
}

.reference-footer__contact-card > span svg {
    width: 62px;
    height: 62px;
}

.reference-footer__contact-card strong {
    align-self: end;
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.1;
}

.reference-footer__contact-card small {
    align-self: start;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.36;
}

.reference-footer__contact-card > svg {
    grid-column: 3;
    grid-row: 1 / span 2;
    width: 23px;
    height: 23px;
}

.reference-footer .footer-column {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 22px 22px 16px;
    border: 1px solid rgba(123, 190, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.reference-footer .footer-column--institutional {
    order: 1;
}

.reference-footer .footer-column--capital {
    order: 2;
}

.reference-footer .footer-column--custeio {
    order: 3;
}

.reference-footer .footer-column--atendimento {
    order: 4;
}

.reference-footer .footer-column--help {
    display: none;
}

.reference-footer .footer-column h3 {
    position: relative;
    margin: 0 0 22px;
    color: #fff;
    font-size: 1.28rem;
    line-height: 1.1;
}

.reference-footer .footer-column h3::before,
.reference-footer .footer-column h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 4px;
    border-radius: 999px;
}

.reference-footer .footer-column h3::before {
    left: 0;
    width: 40px;
    background: #ff821f;
}

.reference-footer .footer-column h3::after {
    left: 45px;
    width: 46px;
    background: #20a8ff;
}

.reference-footer .footer-column a,
.reference-footer .footer-column button {
    position: relative;
    min-height: 34px;
    padding: 8px 28px 8px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: transparent;
    color: rgba(255, 255, 255, 0.94);
    text-align: left;
    font: 500 0.94rem/1.2 var(--font-body);
}

.reference-footer .footer-column a::after,
.reference-footer .footer-column button::after {
    content: "\203A";
    position: absolute;
    right: 0;
    top: 50%;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    transform: translateY(-50%);
}

.reference-footer .footer-column h3 + a::before,
.reference-footer .footer-column h3 + button::before {
    content: "\2303";
    position: absolute;
    right: 0;
    top: -42px;
    color: #fff;
    font-size: 1.2rem;
}

.reference-footer .reference-footer__newsletter,
.reference-footer__brands {
    display: none !important;
}

.reference-footer__mobile-trust {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(71, 176, 255, 0.6);
}

.reference-footer__mobile-trust span {
    width: 54px;
    height: 54px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(103, 185, 255, 0.45);
    border-radius: 14px;
    color: #66bcff;
    background: rgba(102, 188, 255, 0.08);
}

.reference-footer__mobile-trust svg {
    width: 29px;
    height: 29px;
}

.reference-footer__mobile-trust p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 500;
}

.reference-footer .footer-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 14px;
    margin-top: -4px;
    padding-top: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.92);
}

.footer-bottom__links a + a {
    position: relative;
}

.footer-bottom__links a + a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 2px;
    bottom: 2px;
    width: 1px;
    background: rgba(255, 255, 255, 0.72);
}

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

    .reference-header__top {
        grid-template-columns: 190px minmax(250px, 1fr) 170px;
    }

    .reference-restricted {
        grid-column: 3;
    }

    .reference-nav {
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .reference-hero {
        grid-template-columns: 1fr;
    }

    .reference-loyola-card {
        min-height: auto;
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }

    .reference-loyola-card__head,
    .reference-article-tag,
    .reference-loyola-card h2,
    .reference-loyola-card p,
    .reference-loyola-card__actions {
        grid-column: 2;
    }

    .reference-loyola-card__illustration {
        grid-row: 1 / span 5;
        min-height: 280px;
    }

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

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

    .reference-testimonial {
        grid-column: span 2;
    }

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

@media (max-width: 760px) {
    .site-header.reference-header,
    .page--home .site-main,
    .site-footer.reference-footer {
        width: min(100vw - 16px, 520px);
    }

    .site-header.reference-header {
        padding-top: 10px !important;
    }

    .reference-header__top {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .reference-header__brand {
        grid-column: 1 / -1;
        justify-self: center;
        width: 190px;
    }

    .reference-header__brand .brand__logo {
        width: 190px;
    }

    .reference-search {
        grid-column: 1 / -1;
        order: 2;
    }

    .reference-header__whatsapp,
    .reference-restricted {
        order: 3;
        grid-column: 1 / -1 !important;
        width: 100%;
        min-width: 0;
    }

    .reference-header__whatsapp {
        justify-content: flex-start;
        padding-left: 8px;
    }

    .reference-header__whatsapp span {
        font-size: 0.68rem;
    }

    .reference-header__whatsapp strong {
        font-size: 0.78rem;
    }

    .reference-restricted__button {
        width: 100%;
        min-height: 44px;
        font-size: 0.78rem;
    }

    .reference-restricted__button span {
        width: 0;
        overflow: hidden;
        font-size: 0;
    }

    .reference-restricted__button::after {
        content: "Login";
        font-size: 0.78rem;
    }

    .reference-restricted__button svg:last-child {
        display: none;
    }

    .reference-restricted__menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
        padding: 8px;
        border-radius: 14px;
        box-shadow: 0 12px 26px rgba(2, 24, 58, 0.12);
        transform: none;
    }

    .reference-restricted.is-open .reference-restricted__menu {
        transform: none;
    }

    .reference-restricted__menu a {
        min-height: 42px;
        justify-content: center;
    }

    .reference-nav {
        min-height: 48px;
        padding-inline: 12px;
        gap: 22px;
    }

    .reference-nav .nav-link {
        min-height: 48px;
        font-size: 0.82rem;
    }

    .reference-hero__main {
        min-height: 760px;
        border-radius: 12px;
        background-position: center;
    }

    .reference-hero__content {
        width: auto;
        padding: 36px 24px 0;
    }

    .reference-hero__content h1 {
        max-width: 296px;
        font-size: clamp(1.92rem, 8.4vw, 2.18rem);
        letter-spacing: -0.052em;
    }

    .reference-hero__content p {
        width: min(300px, 100%);
        max-width: 300px;
        font-size: 0.93rem;
    }

    .reference-hero__benefits {
        left: 20px;
        right: 20px;
        bottom: 58px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .reference-hero__benefits article {
        min-width: 0;
    }

    .reference-hero__benefits strong {
        min-width: 0;
        font-size: 0.72rem;
        white-space: normal;
    }

    .reference-loyola-card {
        grid-template-columns: 1fr;
    }

    .reference-loyola-card__head,
    .reference-article-tag,
    .reference-loyola-card h2,
    .reference-loyola-card p,
    .reference-loyola-card__actions,
    .reference-loyola-card__illustration {
        grid-column: auto;
        grid-row: auto;
    }

    .reference-promo {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px 12px;
        font-size: 0.76rem;
    }

    .reference-promo a {
        width: 100%;
        margin-left: 0;
    }

    .reference-section {
        padding-inline: 0;
    }

    .reference-section__head {
        align-items: start;
    }

    .reference-section__head h2 {
        font-size: 1.25rem;
    }

    .reference-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .reference-product-card {
        min-height: 274px;
        border-radius: 12px;
    }

    .reference-product-card__body {
        padding: 10px 10px 7px;
    }

    .reference-product-card__body h3 {
        font-size: 0.78rem;
    }

    .reference-product-card__rating {
        display: none;
    }

    .reference-product-card__price strong {
        font-size: 0.95rem;
    }

    .reference-product-card__body > small {
        font-size: 0.64rem;
    }

    .reference-product-card__actions {
        grid-template-columns: 1fr 32px;
        padding: 0 10px 10px;
    }

    .reference-product-card__actions button {
        min-height: 32px;
        font-size: 0.58rem;
    }

    .reference-case-grid,
    .reference-benefits,
    .reference-footer__grid {
        grid-template-columns: 1fr;
    }

    .reference-testimonial {
        grid-column: auto;
    }

    .reference-benefits {
        margin-inline: 0;
        gap: 12px;
    }

    .reference-benefits article + article {
        border-left: 0;
        border-top: 1px solid var(--reference-line);
        padding-top: 12px;
    }

    .site-footer.reference-footer {
        width: 100%;
        padding: 28px 20px 14px;
    }
}

@media (max-width: 420px) {
    .reference-product-card__body h3 {
        font-size: 0.72rem;
    }

    .reference-product-card__actions button {
        font-size: 0.53rem;
    }

    .reference-hero__benefits {
        grid-template-columns: 1fr;
    }
}

/* Final header and card hardening for the white reference composition. */
.site-header.reference-header {
    background: #fff !important;
    box-shadow: none !important;
}

.reference-header__inner,
.reference-header__top,
.reference-nav {
    background: #fff !important;
}

.reference-header .reference-search {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px !important;
    width: 100% !important;
    min-width: 360px !important;
    min-height: 50px !important;
    border: 1px solid #d6e0ec !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(8, 39, 82, 0.1) !important;
    overflow: visible !important;
}

.reference-header .reference-search input {
    position: static !important;
    display: block !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 18px 0 22px !important;
    color: var(--reference-ink) !important;
    font: 700 0.9rem/1 var(--font-body) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.reference-header .reference-search input::placeholder {
    color: #6d7f96 !important;
    opacity: 1 !important;
}

.reference-header .reference-search button {
    position: static !important;
    display: grid !important;
    place-items: center !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--reference-ink) !important;
}

.reference-nav .nav-link,
.reference-nav .nav-link:visited,
.reference-nav .nav-link.is-active {
    min-width: auto !important;
    color: var(--reference-ink) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.reference-nav .nav-link:hover {
    color: var(--reference-blue) !important;
}

.reference-product-card__media img {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
}

.reference-product-card__actions button[data-add-cart]:last-child {
    color: #fff;
    border-color: transparent;
    background: var(--reference-blue);
}

.reference-product-card__actions button[data-add-cart]:first-child:hover,
.reference-product-card__actions button[data-add-cart]:last-child:hover {
    background: var(--reference-navy);
    color: #fff;
}

@media (max-width: 420px) {
    .reference-hero__main {
        min-height: 735px;
    }

    .reference-hero__benefits {
        grid-template-columns: 1fr !important;
        gap: 10px;
        bottom: 44px;
    }

    .reference-hero__benefits span {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }
}

@media (min-width: 761px) {
    .reference-hero__main {
        min-height: 660px;
    }

    .reference-hero__benefits {
        bottom: 92px;
    }

    .reference-hero__dots {
        bottom: 34px;
    }
}

.page--portal .site-main {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 54px !important;
}

.portal-login {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    padding: clamp(24px, 4vw, 54px);
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 128, 31, 0.24), transparent 270px),
        radial-gradient(circle at 86% 24%, rgba(32, 213, 223, 0.2), transparent 310px),
        linear-gradient(135deg, #052b62 0%, #001f48 56%, #01152f 100%);
    box-shadow: 0 28px 70px rgba(1, 28, 62, 0.28);
    color: #fff;
}

.portal-login::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 38% 39%, transparent 39%),
        radial-gradient(circle at 88% 86%, rgba(255, 114, 22, 0.26), transparent 190px);
}

.portal-login__copy,
.portal-login__card {
    position: relative;
    z-index: 1;
}

.portal-login__badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #bff7ff;
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.portal-login__copy h1 {
    max-width: 660px;
    margin: 22px 0 18px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.portal-login__copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 600;
}

.portal-login__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 670px;
    margin-top: 36px;
}

.portal-login__benefits article {
    min-height: 138px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
}

.portal-login__benefits span,
.portal-login__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    color: #20d5df;
    background: rgba(32, 213, 223, 0.13);
}

.portal-login__benefits svg,
.portal-login__icon svg {
    width: 24px;
    height: 24px;
}

.portal-login__benefits strong {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-size: 1rem;
}

.portal-login__benefits small {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

.portal-login__card {
    display: flex;
    flex-direction: column;
    align-self: center;
    min-height: 500px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 55px rgba(0, 14, 32, 0.22);
    color: #06285a;
}

.portal-login__card h2 {
    margin: 18px 0 8px;
    color: #06285a;
    font-size: 1.85rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.portal-login__card p {
    margin: 0 0 18px;
    color: #52647d;
    line-height: 1.5;
}

.portal-login__card label {
    margin: 14px 0 8px;
    color: #0a3470;
    font-weight: 900;
    font-size: 0.8rem;
}

.portal-login__field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(3, 48, 103, 0.16);
    border-radius: 15px;
    background: #f7fbff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.portal-login__field:focus-within {
    border-color: rgba(20, 92, 190, 0.55);
    box-shadow: 0 0 0 4px rgba(32, 213, 223, 0.14);
}

.portal-login__field svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    color: #1359b7;
}

.portal-login__field input {
    width: 100%;
    min-height: 50px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #06285a;
    font: 800 0.92rem/1 var(--font-body);
}

.portal-login__field input::placeholder {
    color: #7c8ba1;
    font-weight: 700;
}

.portal-login__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    margin-top: 20px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ff7a18, #ff5a16);
    box-shadow: 0 18px 34px rgba(255, 105, 22, 0.28);
    font: 900 0.94rem/1 var(--font-body);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-login__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(255, 105, 22, 0.34);
}

.portal-login__submit svg {
    width: 19px;
    height: 19px;
}

.portal-login__support {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.portal-login__support a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    color: #0a4ea6;
    background: #edf5ff;
    font-weight: 900;
    font-size: 0.78rem;
}

.portal-login__support svg {
    width: 16px;
    height: 16px;
}

.portal-login__feedback {
    margin: 0 0 8px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #eef6ff;
    color: #0a4ea6;
    font-weight: 800;
    line-height: 1.4;
}

.portal-login__feedback--error {
    background: #fff2ee;
    color: #b83214;
}

.portal-login__feedback--success {
    background: #ecfff7;
    color: #05704d;
}

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

.catalog-focus-row article {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    min-height: 124px;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(6, 46, 99, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9)),
        radial-gradient(circle at 92% 18%, rgba(255, 122, 24, 0.22), transparent 120px);
    box-shadow: 0 18px 38px rgba(2, 31, 70, 0.08);
}

.catalog-focus-row article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--reference-cyan), var(--reference-orange));
}

.catalog-focus-row span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    color: var(--reference-blue);
    background: linear-gradient(135deg, #edf6ff, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(6, 46, 99, 0.1);
}

.catalog-focus-row svg {
    width: 25px;
    height: 25px;
}

.catalog-focus-row strong {
    display: block;
    color: var(--reference-ink);
    font-size: 1rem;
    line-height: 1.18;
}

.catalog-focus-row p {
    margin: 6px 0 0;
    color: #52657e;
    font-size: 0.84rem;
    line-height: 1.48;
}

.page--catalog .catalog-layout,
.page--articles .article-hub,
.page--articles .section-block {
    margin-top: 4px;
}

.page--catalog .catalog-sidebar,
.page--catalog .catalog-results,
.page--articles .article-card,
.page--articles .article-page__hero--featured {
    border-color: rgba(6, 46, 99, 0.12);
    box-shadow: 0 18px 42px rgba(2, 31, 70, 0.08);
}

.page--catalog .catalog-sidebar__head h2,
.page--catalog .section-heading--catalog h2,
.page--articles .section-heading h2 {
    color: var(--reference-ink);
}

.page--catalog .site-main,
.page--articles .site-main,
.page--article .site-main,
.page--product .site-main {
    width: min(1188px, calc(100vw - 28px));
    margin-inline: auto;
    gap: 18px;
    padding-bottom: 42px;
}

@media (max-width: 900px) {
    .portal-login {
        grid-template-columns: 1fr;
    }

    .portal-login__card {
        align-self: stretch;
    }
}

@media (max-width: 640px) {
    .page--portal .site-main {
        width: min(100% - 24px, 1180px);
        padding-top: 18px !important;
    }

    .portal-login {
        padding: 22px;
        border-radius: 22px;
    }

    .portal-login__copy h1 {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .portal-login__benefits {
        grid-template-columns: 1fr;
    }

    .portal-login__card {
        min-height: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .portal-login__support {
        flex-direction: column;
    }

    .portal-login__support a {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 760px) {
    .page--catalog .catalog-hero,
    .page--articles .catalog-hero {
        gap: 18px;
        padding: 24px;
    }

    .page--catalog .catalog-hero h1,
    .page--articles .catalog-hero h1 {
        font-size: clamp(2.1rem, 10vw, 3rem);
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .page--catalog .catalog-hero__meta,
    .page--articles .catalog-hero__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .page--catalog .catalog-hero__meta article,
    .page--articles .catalog-hero__meta article {
        min-height: 108px;
    }

    .catalog-focus-row article {
        min-height: auto;
        padding: 16px;
    }
}

@media (max-width: 760px) {
    html,
    body,
    .site-shell {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header.reference-header {
        padding-top: 8px !important;
    }

    .reference-header__inner {
        gap: 10px;
        padding: 12px;
        border: 1px solid rgba(6, 46, 99, 0.08);
        border-radius: 22px;
        background: linear-gradient(180deg, #fff 0%, #f8fbff 100%) !important;
        box-shadow: 0 16px 34px rgba(4, 31, 70, 0.1);
    }

    .reference-header__top {
        gap: 10px !important;
    }

    .reference-header__brand,
    .reference-header__brand .brand__logo {
        width: 176px;
    }

    .reference-header .reference-search {
        justify-self: center;
        display: block !important;
        position: relative !important;
        width: min(calc(100vw - 56px), 370px) !important;
        min-width: 0 !important;
        min-height: 48px !important;
        padding-right: 46px !important;
        box-shadow: 0 10px 20px rgba(8, 39, 82, 0.08) !important;
        overflow: hidden !important;
    }

    .reference-header .reference-search input {
        width: 100% !important;
        min-height: 46px !important;
        padding-right: 4px !important;
        font-size: 0.78rem !important;
    }

    .reference-header .reference-search button {
        position: absolute !important;
        top: 1px !important;
        right: 7px !important;
        width: 40px !important;
        height: 46px !important;
        min-width: 40px !important;
        min-height: 46px !important;
    }

    .reference-header__whatsapp {
        min-height: 42px;
        padding: 0 10px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
    }

    .reference-header__whatsapp svg {
        width: 28px;
        height: 28px;
    }

    .reference-restricted__button {
        min-height: 44px;
        border-radius: 12px;
        box-shadow: 0 12px 24px rgba(0, 31, 70, 0.18);
    }

    .reference-nav {
        margin-top: 2px;
        min-height: 44px;
        padding-inline: 10px;
        gap: 20px;
        border-radius: 0 0 18px 18px;
    }

    .reference-nav .nav-link {
        min-height: 44px;
        font-size: 0.76rem;
    }

    .reference-section__head {
        gap: 10px;
    }

    .reference-section__head > div {
        min-width: 0;
    }

    .reference-section__head a {
        flex: 0 0 auto;
        width: 84px;
        max-width: 84px;
        overflow: hidden;
        justify-content: flex-end;
        text-align: right;
        font-size: 0;
        color: transparent !important;
        line-height: 1.15;
        white-space: nowrap;
    }

    .reference-section__head a::before {
        content: "Ver todos";
        color: var(--reference-blue);
        font-size: 0.68rem;
    }

    .reference-section__head a svg {
        width: 14px;
        height: 14px;
        color: var(--reference-blue);
    }

    .reference-hero__main {
        min-height: auto !important;
        padding-bottom: 20px;
        background-position: center top;
    }

    .reference-hero__content {
        padding: 28px 24px 0;
    }

    .reference-hero__content p {
        margin-bottom: 18px;
    }

    .reference-cta {
        min-height: 56px;
        width: min(100%, 280px);
        margin-bottom: 0;
    }

    .reference-hero__benefits {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 22px 24px 0;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .reference-hero__benefits article {
        padding: 8px 10px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 14px;
        background: rgba(0, 31, 70, 0.35);
    }

    .reference-hero__benefits span {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .reference-hero__dots {
        position: relative;
        left: auto;
        bottom: auto;
        justify-content: center;
        margin-top: 14px;
        transform: none;
    }

    .reference-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .reference-case-card img {
        aspect-ratio: 1.35 / 1;
        border-radius: 10px;
    }

    .reference-case-card strong {
        margin-top: 5px;
        font-size: 0.68rem;
    }

    .reference-case-card span {
        font-size: 0.62rem;
    }

    .reference-testimonial {
        grid-column: 1 / -1;
        padding: 14px;
    }

    .reference-slider-arrows {
        margin-top: 6px;
    }

    .site-footer.reference-footer {
        position: relative;
        overflow: hidden;
        width: min(100vw - 18px, 430px);
        margin-top: 0;
        padding: 36px 18px 24px;
        border-radius: 42px;
        color: #fff;
        background:
            radial-gradient(circle at 84% 0%, rgba(21, 148, 255, 0.35), transparent 165px),
            radial-gradient(circle at 12% 20%, rgba(0, 101, 210, 0.28), transparent 170px),
            linear-gradient(145deg, #001d48 0%, #003472 48%, #00275c 100%) !important;
        box-shadow: 0 28px 70px rgba(0, 26, 68, 0.28);
    }

    .site-footer.reference-footer::before {
        content: "";
        position: absolute;
        top: 44px;
        right: 28px;
        width: 96px;
        height: 112px;
        opacity: 0.5;
        background-image: radial-gradient(circle, rgba(39, 183, 255, 0.75) 2px, transparent 2px);
        background-size: 18px 18px;
    }

    .site-footer.reference-footer::after {
        content: "";
        position: absolute;
        inset: auto -40px 38% auto;
        width: 180px;
        height: 180px;
        border: 1px solid rgba(55, 171, 255, 0.18);
        border-radius: 999px;
    }

    .reference-footer__grid,
    .reference-footer .footer-bottom {
        position: relative;
        z-index: 1;
    }

    .reference-footer__grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .reference-footer .footer-brand {
        display: grid;
        justify-items: center;
        text-align: center;
    }

    .reference-footer .brand--footer {
        padding: 14px 22px;
        border-radius: 22px;
        background: #fff;
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.62),
            0 0 26px rgba(23, 173, 255, 0.52);
    }

    .reference-footer .brand__logo {
        width: 188px;
        max-height: 68px;
    }

    .reference-footer .footer-brand p {
        display: block;
        max-width: 338px;
        margin: 22px auto 22px;
        color: rgba(255, 255, 255, 0.94);
        font-size: 1rem;
        line-height: 1.56;
        font-weight: 500;
    }

    .reference-footer .social-row {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-bottom: 24px;
    }

    .reference-footer .social-row a {
        width: 58px;
        height: 58px;
        border: 1px solid rgba(141, 197, 255, 0.45);
        border-radius: 999px;
        color: #fff;
        background: rgba(255, 255, 255, 0.04);
        box-shadow: inset 0 0 20px rgba(53, 154, 255, 0.12);
    }

    .reference-footer .social-row svg {
        width: 28px;
        height: 28px;
    }

    .reference-footer__contact-card {
        width: min(100%, 310px);
        min-height: 96px;
        display: grid;
        grid-template-columns: 68px minmax(0, 1fr) 22px;
        align-items: center;
        gap: 12px;
        margin: 0 auto 20px;
        padding: 14px 18px;
        border: 1px solid rgba(107, 190, 255, 0.62);
        border-radius: 18px;
        color: #fff;
        background: linear-gradient(135deg, rgba(9, 71, 150, 0.76), rgba(0, 42, 100, 0.66));
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.05),
            0 0 26px rgba(39, 183, 255, 0.18);
        text-align: left;
    }

    .reference-footer__contact-card > span {
        grid-row: span 2;
        color: #66bcff;
    }

    .reference-footer__contact-card > span svg {
        width: 54px;
        height: 54px;
    }

    .reference-footer__contact-card strong {
        align-self: end;
        color: #fff;
        font-size: 1.05rem;
        line-height: 1.15;
    }

    .reference-footer__contact-card small {
        align-self: start;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.84rem;
        line-height: 1.34;
    }

    .reference-footer__contact-card > svg {
        grid-column: 3;
        grid-row: 1 / span 2;
        width: 20px;
        height: 20px;
    }

    .reference-footer .reference-footer__newsletter,
    .reference-footer__brands {
        display: none !important;
    }

    .reference-footer .footer-column {
        position: relative;
        display: grid;
        gap: 0;
        padding: 16px 16px 10px;
        border: 1px solid rgba(123, 190, 255, 0.16);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
    }

    .reference-footer .footer-column--institutional {
        order: 1;
    }

    .reference-footer .footer-column--capital {
        order: 2;
    }

    .reference-footer .footer-column--custeio {
        order: 3;
    }

    .reference-footer .footer-column--atendimento {
        order: 4;
    }

    .reference-footer .footer-column--help {
        display: none;
    }

    .reference-footer .footer-column h3 {
        position: relative;
        margin: 0 0 18px;
        color: #fff;
        font-size: 1.16rem;
        line-height: 1.1;
    }

    .reference-footer .footer-column h3::before,
    .reference-footer .footer-column h3::after {
        content: "";
        position: absolute;
        bottom: -10px;
        height: 3px;
        border-radius: 999px;
    }

    .reference-footer .footer-column h3::before {
        left: 0;
        width: 34px;
        background: #ff821f;
    }

    .reference-footer .footer-column h3::after {
        left: 39px;
        width: 38px;
        background: #20a8ff;
    }

    .reference-footer .footer-column a,
    .reference-footer .footer-column button {
        position: relative;
        min-height: 30px;
        padding: 7px 24px 7px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.94);
        font: 500 0.9rem/1.2 var(--font-body);
    }

    .reference-footer .footer-column a::after,
    .reference-footer .footer-column button::after {
        content: "\203A";
        position: absolute;
        right: 0;
        top: 50%;
        color: #fff;
        font-size: 1.4rem;
        line-height: 1;
        transform: translateY(-50%);
    }

    .reference-footer .footer-column h3 + a::before,
    .reference-footer .footer-column h3 + button::before {
        content: "\2303";
        position: absolute;
        right: 0;
        top: -34px;
        color: #fff;
        font-size: 1.2rem;
    }

    .reference-footer__mobile-trust {
        order: 5;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid rgba(71, 176, 255, 0.6);
    }

    .reference-footer__mobile-trust span {
        width: 46px;
        height: 46px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(103, 185, 255, 0.45);
        border-radius: 12px;
        color: #66bcff;
        background: rgba(102, 188, 255, 0.08);
    }

    .reference-footer__mobile-trust svg {
        width: 25px;
        height: 25px;
    }

    .reference-footer__mobile-trust p {
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .reference-footer .footer-bottom {
        order: 6;
        display: grid;
        justify-items: center;
        gap: 14px;
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.92);
        text-align: center;
        font-size: 0.82rem;
    }

    .footer-bottom__links {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .footer-bottom__links a {
        color: rgba(255, 255, 255, 0.92);
        font-size: 0.88rem;
    }

    .footer-bottom__links a + a {
        position: relative;
    }

    .footer-bottom__links a + a::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 2px;
        bottom: 2px;
        width: 1px;
        background: rgba(255, 255, 255, 0.72);
    }
}

@media (min-width: 761px) {
    .reference-hero {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        background:
            linear-gradient(90deg, rgba(0, 22, 49, 0.9) 0%, rgba(0, 31, 70, 0.76) 33%, rgba(0, 31, 70, 0.2) 57%, rgba(0, 31, 70, 0.04) 100%),
            url("/assets/images/hero/professora-lousa-digital.png") center / cover no-repeat;
        box-shadow: var(--reference-shadow);
    }

    .reference-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            linear-gradient(180deg, rgba(0, 22, 49, 0) 0%, rgba(0, 22, 49, 0.1) 52%, rgba(0, 22, 49, 0.66) 100%),
            radial-gradient(circle at 76% 16%, rgba(32, 213, 223, 0.14), transparent 260px);
    }

    .reference-hero__main,
    .reference-loyola-card {
        position: relative;
        z-index: 1;
    }

    .reference-hero__main {
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .reference-loyola-card {
        align-self: stretch;
        justify-content: flex-start;
        margin: 14px 14px 14px 0;
        padding: 14px;
    }

    .reference-loyola-card__illustration img {
        aspect-ratio: 312 / 232;
    }

    .reference-loyola-card h2 {
        font-size: 1.28rem;
    }

    .reference-loyola-card p {
        flex: 1;
        font-size: 0.86rem;
    }

    .reference-button-dark {
        min-width: 178px;
        white-space: nowrap;
    }

    .site-footer.reference-footer {
        display: block;
        overflow: visible;
        margin-top: 0;
        padding: 24px 34px 12px;
        border-radius: 0;
        color: #fff;
        background:
            radial-gradient(circle at 94% 88%, rgba(25, 201, 215, 0.22), transparent 220px),
            linear-gradient(135deg, #002b63 0%, #001f46 100%) !important;
        box-shadow: none;
    }

    .site-footer.reference-footer::before,
    .site-footer.reference-footer::after {
        content: none;
    }

    .reference-footer__grid {
        display: grid;
        grid-template-columns: 190px repeat(5, minmax(110px, 134px));
        justify-content: center;
        align-items: start;
        gap: 30px;
        max-width: 1080px;
        margin: 0 auto;
    }

    .reference-footer .footer-brand {
        display: block;
        grid-column: auto;
        order: 0;
        text-align: left;
    }

    .reference-footer .brand--footer {
        width: fit-content;
        padding: 8px 10px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: none;
    }

    .reference-footer .brand__logo {
        width: 136px;
        height: auto;
        max-height: 52px;
        object-fit: contain;
    }

    .reference-footer .footer-brand p,
    .reference-footer .footer-column p,
    .reference-footer .footer-column a,
    .reference-footer .footer-column button {
        color: rgba(255, 255, 255, 0.82);
    }

    .reference-footer .footer-brand p {
        max-width: 176px;
        margin: 14px 0;
        font-size: 0.78rem;
        line-height: 1.42;
        text-align: left;
    }

    .reference-footer .social-row {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 0;
    }

    .reference-footer .social-row a {
        width: 27px;
        height: 27px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 999px;
        color: #fff;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .reference-footer .social-row svg {
        width: 18px;
        height: 18px;
    }

    .reference-footer__contact-card,
    .reference-footer__mobile-trust,
    .footer-bottom__links {
        display: none;
    }

    .reference-footer .footer-column,
    .reference-footer .footer-column--help,
    .reference-footer .reference-footer__newsletter {
        display: grid;
        align-content: start;
        gap: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .reference-footer .footer-column--institutional {
        order: 1;
    }

    .reference-footer .footer-column--capital {
        order: 2;
    }

    .reference-footer .footer-column--custeio {
        order: 3;
    }

    .reference-footer .footer-column--atendimento {
        order: 4;
    }

    .reference-footer .footer-column--help {
        order: 5;
    }

    .reference-footer .footer-column h3 {
        margin: 0 0 4px;
        color: #fff;
        font-size: 0.86rem;
        line-height: 1.1;
    }

    .reference-footer .footer-column h3::before,
    .reference-footer .footer-column h3::after,
    .reference-footer .footer-column a::after,
    .reference-footer .footer-column button::after,
    .reference-footer .footer-column h3 + a::before,
    .reference-footer .footer-column h3 + button::before {
        content: none;
    }

    .reference-footer .footer-column a,
    .reference-footer .footer-column button {
        min-height: auto;
        padding: 0;
        border: 0;
        background: transparent;
        text-align: left;
        font: 700 0.74rem/1.23 var(--font-body);
    }

    .reference-footer__newsletter .newsletter__form {
        position: relative;
        display: block;
        margin-top: 8px;
    }

    .reference-footer__newsletter .newsletter__form input[type="email"] {
        width: 100%;
        min-height: 44px;
        padding: 0 52px 0 16px;
        border: 0;
        border-radius: 11px;
        background: #fff;
        color: var(--reference-ink);
    }

    .reference-footer__newsletter .newsletter__form button {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 9px;
        color: #fff;
        background: var(--reference-cyan);
    }

    .reference-footer .footer-certification {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 18px;
        padding: 10px 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
    }

    .reference-footer .footer-certification__icon {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        color: #9de465;
    }

    .reference-footer .footer-certification strong,
    .reference-footer .footer-certification small {
        display: block;
        color: #fff;
        line-height: 1.1;
    }

    .reference-footer .footer-certification small {
        font-size: 0.62rem;
    }

    .reference-footer__brands {
        display: flex !important;
        flex-wrap: wrap;
        align-items: center;
        gap: 22px;
        max-width: 1080px;
        margin: 22px auto 0;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.9);
    }

    .reference-footer__brands strong {
        margin-right: 4px;
        font-size: 0.78rem;
    }

    .reference-footer__brands span {
        color: #fff;
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: -0.03em;
    }

    .reference-footer .footer-bottom {
        display: block;
        max-width: 1080px;
        margin: 16px auto 0;
        padding-top: 0;
        border: 0;
        color: rgba(255, 255, 255, 0.72);
        text-align: left;
        font-size: 0.74rem;
    }
}
