:root {
    --industrial-primary: #f6c800;
    --industrial-primary-dark: #d79b00;
    --industrial-secondary: #141419;
    --industrial-secondary-soft: #24242b;
    --industrial-surface: rgba(255, 255, 255, 0.9);
    --industrial-surface-strong: rgba(255, 255, 255, 0.98);
    --industrial-border: rgba(20, 20, 25, 0.08);
    --industrial-text: #171717;
    --industrial-muted: #666a70;
    --industrial-shadow: 0 18px 42px rgba(18, 18, 23, 0.1);
    --industrial-radius-xl: 22px;
    --industrial-radius-lg: 18px;
    --industrial-radius-md: 14px;
}

body.theme-industrial-catalog,
body[class*="theme-industrial-catalog"],
body .industrial-theme {
    background:
        radial-gradient(circle at top left, rgba(118, 184, 42, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.65), transparent 18%),
        linear-gradient(180deg, #e8edf1 0%, #f6f7f9 38%, #d2d8de 100%);
    color: var(--industrial-text);
}

.industrial-shell {
    position: relative;
    overflow: clip;
}

.industrial-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(17, 23, 28, 0.06), rgba(17, 23, 28, 0)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' fill-opacity='.18' stroke='%23ffffff' stroke-width='1'%3E%3Ccircle cx='42' cy='42' r='1'/%3E%3Ccircle cx='110' cy='88' r='1'/%3E%3Ccircle cx='186' cy='28' r='1'/%3E%3Cpath d='M42 42L110 88L186 28M110 88L170 170M42 42L26 150'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.34;
    mix-blend-mode: soft-light;
    z-index: -1;
}

.industrial-topbar {
    background: rgba(15, 20, 24, 0.9);
    color: #f5f7f8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.industrial-topbar a,
.industrial-topbar button {
    color: inherit;
    text-decoration: none;
}

.industrial-navbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(17, 23, 28, 0.78);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.industrial-navbar__row,
.industrial-topbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
}

.industrial-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.industrial-logo img {
    max-height: 42px;
    width: auto;
}

.industrial-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.industrial-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
}

.industrial-nav a.is-active,
.industrial-nav a:hover {
    color: #fff;
}

.industrial-nav a.is-active::after,
.industrial-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--industrial-primary), #b7df64);
}

.industrial-phone-pill,
.industrial-cta-button,
.industrial-ghost-button {
    border: 0;
    border-radius: 999px;
    padding: 0.92rem 1.4rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.industrial-phone-pill,
.industrial-cta-button {
    background: linear-gradient(135deg, #7bc33d, var(--industrial-primary-dark));
    color: #fff;
    box-shadow: 0 14px 34px rgba(118, 184, 42, 0.28);
}

.industrial-ghost-button {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.industrial-phone-pill:hover,
.industrial-cta-button:hover,
.industrial-ghost-button:hover {
    transform: translateY(-2px);
}

.industrial-mobile-toggle {
    display: none;
    color: #fff;
    font-size: 1.6rem;
    background: none;
    border: 0;
}

.industrial-mobile-panel {
    display: none;
    padding: 0 0 1rem;
}

.industrial-mobile-panel a {
    display: block;
    padding: 0.85rem 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
}

.industrial-section {
    padding: 4.8rem 0;
}

.industrial-panel,
.industrial-glass-card,
.industrial-card {
    background: var(--industrial-surface);
    backdrop-filter: blur(16px);
    border: 1px solid var(--industrial-border);
    border-radius: var(--industrial-radius-lg);
    box-shadow: var(--industrial-shadow);
}

.industrial-panel {
    padding: 2rem;
}

.industrial-section-title {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--industrial-primary-dark);
    margin-bottom: 0.8rem;
}

.industrial-section-heading {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin: 0;
}

.industrial-muted {
    color: var(--industrial-muted);
}

.industrial-home-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: stretch;
    color: #fff;
    border-radius: 0 0 42px 42px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 20, 24, 0.12), rgba(15, 20, 24, 0.35));
}

.industrial-home-hero__slide {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: stretch;
}

.industrial-home-hero__media,
.industrial-home-hero__content {
    position: relative;
    z-index: 2;
}

.industrial-home-hero__media {
    flex: 1.1;
    background-size: cover;
    background-position: center;
    min-height: 78vh;
    overflow: hidden;
}

.industrial-home-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 20, 24, 0.12), rgba(15, 20, 24, 0.55));
}

.industrial-home-hero__frame {
    position: absolute;
    inset: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    z-index: 2;
    pointer-events: none;
}

.industrial-home-hero__content {
    flex: 0.9;
    padding: clamp(2.2rem, 4vw, 4rem);
    background:
        linear-gradient(180deg, rgba(17, 23, 28, 0.7), rgba(17, 23, 28, 0.82)),
        linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industrial-home-hero__eyebrow {
    color: #b7df64;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.industrial-home-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.industrial-home-hero__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 34rem;
}

.industrial-home-hero__meta {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.industrial-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.industrial-bullets {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
    display: grid;
    gap: 0.75rem;
}

.industrial-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.08rem;
    font-weight: 700;
}

.industrial-bullets li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #a7d93a, #e0f887);
    box-shadow: 0 0 18px rgba(186, 234, 94, 0.5);
}

.industrial-brand-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: -2rem;
    padding: 1.2rem 1.4rem;
}

.industrial-brand-strip__logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.industrial-brand-strip__logos img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.industrial-brand-strip__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.9rem;
    border-radius: 18px;
    background: rgba(17, 23, 28, 0.04);
    border: 1px solid rgba(17, 23, 28, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industrial-brand-strip__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 23, 28, 0.08);
}

.industrial-search {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(17, 23, 28, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.industrial-search input {
    min-width: 280px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0.95rem 1.1rem;
    outline: none;
}

.industrial-search button {
    border: 0;
    background: linear-gradient(135deg, #7bc33d, #4f8f14);
    color: #fff;
    padding: 0.95rem 1.2rem;
}

.industrial-brand-card {
    position: relative;
    min-height: 360px;
    padding: 1.7rem;
    color: #fff;
    overflow: hidden;
    border-radius: 26px;
    background-size: cover;
    background-position: center;
}

.industrial-brand-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 16, 20, 0.1), rgba(11, 16, 20, 0.72));
}

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

.industrial-brand-card__logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.industrial-brand-card__title {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.industrial-grid-products {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 3.1fr);
    gap: 1.6rem;
}

.industrial-filter-card,
.industrial-product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(17, 23, 28, 0.08);
    box-shadow: 0 18px 44px rgba(11, 16, 20, 0.09);
}

.industrial-filter-card {
    padding: 1.6rem;
}

.industrial-filter-card--sticky {
    position: sticky;
    top: 7rem;
    align-self: start;
}

.industrial-filter-card a {
    display: block;
    color: var(--industrial-text);
    text-decoration: none;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(17, 23, 28, 0.08);
    font-weight: 700;
}

.industrial-filter-list {
    display: grid;
    gap: 0;
}

.industrial-filter-list a.is-active {
    color: var(--industrial-brand-end, var(--industrial-primary-dark));
}

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

.industrial-product-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industrial-product-card__media {
    background: linear-gradient(180deg, rgba(236, 240, 244, 0.92), rgba(255, 255, 255, 0.98));
    border-radius: 18px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.industrial-product-card__media img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.industrial-chip {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--industrial-primary-dark), var(--industrial-primary));
    color: #fff;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.industrial-chip--soft {
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,244,248,0.92));
    color: var(--industrial-brand-end, var(--industrial-primary-dark));
    border: 1px solid rgba(17, 23, 28, 0.08);
}

.industrial-sku {
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--industrial-muted);
}

.industrial-product-card h3,
.industrial-product-card h4 {
    font-size: 1.02rem;
    line-height: 1.35;
    font-weight: 800;
    margin: 0.85rem 0 0.5rem;
}

.industrial-product-card p {
    color: var(--industrial-muted);
    font-size: 0.92rem;
}

.industrial-product-card--catalog {
    gap: 0.85rem;
}

.industrial-subheading {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
    margin: 0;
}

.industrial-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-size: 0.86rem;
    color: rgba(17, 23, 28, 0.56);
}

.industrial-breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.industrial-text-link {
    color: var(--industrial-brand-end, var(--industrial-primary-dark));
    text-decoration: none;
    font-weight: 800;
}

.industrial-stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.industrial-stat-card {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(17, 23, 28, 0.08);
    backdrop-filter: blur(14px);
}

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

.industrial-stat-card strong {
    font-size: 1.1rem;
    line-height: 1.2;
}

.industrial-stat-card span {
    font-size: 0.78rem;
    color: var(--industrial-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
}

.industrial-brand-page,
.industrial-product-page {
    --industrial-brand-start: var(--industrial-primary);
    --industrial-brand-end: var(--industrial-primary-dark);
}

.industrial-brand-hero__media,
.industrial-brand-cta__media,
.industrial-product-hero__media {
    min-height: 360px;
    background-position: center;
    background-size: cover;
}

.industrial-brand-hero__media,
.industrial-product-hero__media {
    position: relative;
}

.industrial-brand-hero__media::after,
.industrial-product-hero__media::after {
    content: "";
    position: absolute;
    inset: 1.35rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.industrial-brand-hero__content,
.industrial-product-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    height: 100%;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.8), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,248,250,0.94));
}

.industrial-brand-hero__badge {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
    display: inline-flex;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--industrial-brand-start), var(--industrial-brand-end));
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 36px rgba(17, 23, 28, 0.2);
}

.industrial-subcategory-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.94)),
        radial-gradient(circle at top left, rgba(118,184,42,0.1), transparent 32%);
}

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

.industrial-subcategory-card {
    position: relative;
    min-height: 280px;
    padding: 1.5rem;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.industrial-subcategory-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.62));
}

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

.industrial-subcategory-card__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.72);
}

.industrial-subcategory-card__title {
    margin-top: 0.65rem;
    font-size: 1.6rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
    max-width: 11rem;
}

.industrial-brand-cta {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.94)),
        radial-gradient(circle at bottom right, rgba(118,184,42,0.12), transparent 38%);
}

.industrial-product-card__media--xl {
    min-height: 420px;
}

.industrial-gallery-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.96));
}

.industrial-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
    gap: 0.75rem;
}

.industrial-thumb-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    border: 1px solid rgba(17, 23, 28, 0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
}

.industrial-thumb-button img {
    width: 100%;
    height: 72px;
    object-fit: contain;
}

.industrial-richtext {
    color: var(--industrial-text);
    line-height: 1.75;
}

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

.industrial-spec-card {
    border-radius: 24px;
    padding: 1.2rem;
    background: rgba(244, 247, 249, 0.88);
    border: 1px solid rgba(17, 23, 28, 0.08);
}

.industrial-spec-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.industrial-spec-list li {
    display: grid;
    gap: 0.18rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(17, 23, 28, 0.08);
}

.industrial-spec-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.industrial-spec-list span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--industrial-muted);
    font-weight: 800;
}

.industrial-spec-list strong {
    font-size: 0.98rem;
    line-height: 1.35;
}

.industrial-ghost-button--dark {
    background: rgba(17, 23, 28, 0.84);
    border-color: rgba(17, 23, 28, 0.12);
    color: #fff;
}

.industrial-ghost-button--muted {
    background: rgba(255,255,255,0.92);
    color: var(--industrial-text);
    border-color: rgba(17, 23, 28, 0.08);
}

.industrial-footer {
    margin-top: 4rem;
    padding: 3.5rem 0 5rem;
    background: linear-gradient(180deg, rgba(15, 20, 24, 0.96), rgba(15, 20, 24, 0.92));
    color: rgba(255, 255, 255, 0.86);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industrial-footer a {
    color: #fff;
    text-decoration: none;
}

.industrial-bottom-nav {
    display: none;
}

@media (max-width: 991px) {
    .industrial-nav,
    .industrial-topbar .industrial-utility-links {
        display: none;
    }

    .industrial-mobile-toggle {
        display: inline-flex;
    }

    .industrial-mobile-panel.is-open {
        display: block;
    }

    .industrial-home-hero__slide {
        flex-direction: column;
    }

    .industrial-home-hero__media,
    .industrial-home-hero__content {
        min-height: auto;
    }

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

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

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

@media (max-width: 767px) {
    .industrial-topbar__row,
    .industrial-navbar__row {
        padding: 0.75rem 0;
    }

    .industrial-home-hero {
        min-height: auto;
        border-radius: 0 0 28px 28px;
    }

    .industrial-home-hero__content {
        padding: 1.5rem;
    }

    .industrial-home-hero__frame {
        inset: 1rem;
    }

    .industrial-stat-row,
    .industrial-subcategory-grid {
        grid-template-columns: 1fr;
    }

    .industrial-brand-hero__content,
    .industrial-product-hero__content {
        padding: 1.5rem;
    }

    .industrial-brand-strip {
        margin-top: -1rem;
        padding: 1rem;
        border-radius: 22px;
    }

    .industrial-search {
        width: 100%;
    }

    .industrial-search input {
        min-width: 0;
        width: 100%;
    }

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

    .industrial-section {
        padding: 3.2rem 0;
    }

    .industrial-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding: 0.6rem 0.4rem calc(0.6rem + env(safe-area-inset-bottom));
        background: rgba(14, 20, 25, 0.92);
        backdrop-filter: blur(18px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .industrial-bottom-nav a {
        color: rgba(255, 255, 255, 0.88);
        text-decoration: none;
        font-size: 0.72rem;
        display: grid;
        justify-items: center;
        gap: 0.3rem;
    }

    body.theme-industrial-catalog main,
    body[class*="theme-industrial-catalog"] main {
        padding-bottom: 5.5rem;
    }
}

/* Lynus Clean Tools overrides */
body.theme-lynus-clean,
body[class*="theme-lynus-clean"] {
    background:
        radial-gradient(circle at 12% 10%, rgba(246, 200, 0, 0.18), transparent 24%),
        linear-gradient(180deg, #fbfaf4 0%, #f2f0e7 46%, #ffffff 100%);
    color: var(--industrial-text);
}

body.theme-lynus-clean .industrial-shell::before {
    opacity: 0.28;
    background:
        linear-gradient(90deg, rgba(246, 200, 0, 0.08), transparent 36%),
        repeating-linear-gradient(90deg, rgba(20, 20, 25, 0.025) 0 1px, transparent 1px 18px);
}

body.theme-lynus-clean .industrial-topbar {
    display: none;
}

body.theme-lynus-clean .industrial-navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(20, 20, 25, 0.08);
    box-shadow: 0 14px 34px rgba(20, 20, 25, 0.08);
}

body.theme-lynus-clean .industrial-logo,
body.theme-lynus-clean .industrial-nav a,
body.theme-lynus-clean .industrial-mobile-toggle {
    color: #171717;
}

body.theme-lynus-clean .industrial-nav a.is-active,
body.theme-lynus-clean .industrial-nav a:hover {
    color: #111;
}

body.theme-lynus-clean .industrial-nav a.is-active::after,
body.theme-lynus-clean .industrial-nav a:hover::after {
    background: linear-gradient(90deg, #f6c800, #111);
}

body.theme-lynus-clean .industrial-phone-pill,
body.theme-lynus-clean .industrial-cta-button {
    background: linear-gradient(135deg, #f6c800, #d79b00);
    color: #171717;
    box-shadow: 0 14px 32px rgba(246, 200, 0, 0.24);
}

body.theme-lynus-clean .industrial-ghost-button {
    background: rgba(20, 20, 25, 0.06);
    color: #171717;
    border-color: rgba(20, 20, 25, 0.1);
}

body.theme-lynus-clean .industrial-home-hero {
    color: #171717;
    min-height: 66vh;
    border-radius: 0 0 26px 26px;
    background: linear-gradient(135deg, #f7f3df, #ffffff);
}

body.theme-lynus-clean .industrial-home-hero__slide,
body.theme-lynus-clean .industrial-home-hero__media {
    min-height: 66vh;
}

body.theme-lynus-clean .industrial-home-hero__media::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.72));
}

body.theme-lynus-clean .industrial-home-hero__content {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.96)),
        radial-gradient(circle at top right, rgba(246, 200, 0, 0.2), transparent 34%);
}

body.theme-lynus-clean .industrial-home-hero__eyebrow,
body.theme-lynus-clean .industrial-section-title {
    color: #c18d00;
}

body.theme-lynus-clean .industrial-home-hero__subtitle,
body.theme-lynus-clean .industrial-meta-pill {
    color: rgba(23, 23, 23, 0.7);
}

body.theme-lynus-clean .industrial-meta-pill {
    background: rgba(246, 200, 0, 0.12);
    border-color: rgba(246, 200, 0, 0.26);
}

body.theme-lynus-clean .industrial-brand-strip,
body.theme-lynus-clean .industrial-panel,
body.theme-lynus-clean .industrial-product-card,
body.theme-lynus-clean .industrial-filter-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(20, 20, 25, 0.08);
}

body.theme-lynus-clean .industrial-brand-strip {
    margin-top: -1.2rem;
    border-left: 6px solid #f6c800;
}

body.theme-lynus-clean .industrial-product-card__media {
    background: linear-gradient(180deg, #f5f4ee, #ffffff);
}

body.theme-lynus-clean .industrial-chip {
    background: #171717;
    color: #f6c800;
}

body.theme-lynus-clean .industrial-footer {
    background: #141419;
    color: rgba(255,255,255,0.82);
}

/* Lynus premium structure */
body.theme-lynus-clean .industrial-shell {
    overflow: visible;
}

.lynus-topbar {
    background: #0e0f12;
    color: rgba(255,255,255,0.72);
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lynus-topbar__row,
.lynus-navbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lynus-topbar__row {
    padding: 0.45rem 0;
}

.lynus-topbar__social,
.lynus-topbar__links,
.lynus-navbar__actions,
.lynus-home-hero__actions,
.lynus-page-intro__actions,
.lynus-footer__social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lynus-topbar a,
.lynus-topbar span {
    color: inherit;
    text-decoration: none;
}

.lynus-navbar {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(35, 39, 44, 0.96);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.lynus-navbar__row {
    padding: 1rem 0;
}

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

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

.lynus-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.lynus-nav a,
.lynus-mobile-panel a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.83rem;
    font-weight: 800;
    color: rgba(255,255,255,0.88);
    position: relative;
}

.lynus-nav a.is-active,
.lynus-nav a:hover {
    color: #fff;
}

.lynus-nav a.is-active::after,
.lynus-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.7rem;
    height: 3px;
    border-radius: 999px;
    background: #f6c800;
}

.lynus-pill,
.lynus-btn,
.lynus-product-card__action,
.lynus-pill-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lynus-pill:hover,
.lynus-btn:hover,
.lynus-product-card__action:hover,
.lynus-pill-cta:hover {
    transform: translateY(-1px);
}

.lynus-pill {
    padding: 0.85rem 1.15rem;
    font-size: 0.84rem;
}

.lynus-pill--phone,
.lynus-pill--cta,
.lynus-btn--primary,
.lynus-pill-cta {
    background: linear-gradient(135deg, #f6c800, #dfaa00);
    color: #181818;
    box-shadow: 0 14px 32px rgba(246, 200, 0, 0.26);
}

.lynus-pill--ghost,
.lynus-btn--dark,
.lynus-product-card__action {
    background: #191d24;
    color: #fff;
    box-shadow: 0 14px 26px rgba(25, 29, 36, 0.16);
}

.lynus-btn--ghost {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
}

.lynus-mobile-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.5rem;
}

.lynus-mobile-panel {
    display: none;
    padding: 0 0 1rem;
}

.lynus-mobile-panel.is-open {
    display: grid;
    gap: 0.85rem;
}

.lynus-home-hero {
    padding: 1.2rem 0 0;
}

.lynus-home-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    min-height: 420px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #090a0c, #16130b);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.lynus-home-hero__media,
.lynus-home-hero__copy {
    min-height: 420px;
}

.lynus-home-hero__media {
    background-position: center;
    background-size: cover;
    position: relative;
}

.lynus-home-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17,19,24,0.18), rgba(17,19,24,0.46));
}

.lynus-home-hero__media span {
    position: absolute;
    left: 3.2rem;
    bottom: 3rem;
    z-index: 1;
    color: #f6c800;
    font-size: 0.95rem;
    font-weight: 700;
}

.lynus-home-hero__copy {
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.lynus-home-hero__eyebrow,
.lynus-featured small,
.lynus-location-section__header small {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(246, 200, 0, 0.16);
    color: #f6c800;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.15rem;
}

.lynus-home-hero__copy h1,
.lynus-featured h2,
.lynus-news-panel__header h2,
.lynus-location-section__header h2,
.lynus-page-intro__content h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
    margin: 0;
}

.lynus-home-hero__copy p,
.lynus-page-intro__content p {
    color: rgba(255,255,255,0.76);
    font-size: 1.02rem;
    max-width: 32rem;
    margin: 1rem 0 0;
}

.lynus-btn {
    padding: 0.95rem 1.5rem;
    font-size: 0.9rem;
}

.lynus-home-panels {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    background: #434b52;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
}

.lynus-home-panel {
    position: relative;
    min-height: 144px;
    padding: 1.4rem 1.2rem 1.1rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg, #4d565d, #434b52);
    clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 100%, 0 100%);
    margin-right: -22px;
}

.lynus-home-panel:last-child {
    margin-right: 0;
    clip-path: none;
}

.lynus-home-panel strong {
    color: #f6c800;
    font-size: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3rem;
}

.lynus-home-panel span {
    color: rgba(255,255,255,0.84);
    font-size: 0.88rem;
    line-height: 1.35;
    display: block;
}

.lynus-search-bar-wrap {
    margin-top: 0.9rem;
}

.lynus-search-bar {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffc400;
    border-radius: 10px;
    box-shadow: 0 18px 32px rgba(246, 200, 0, 0.22);
}

.lynus-search-bar input,
.lynus-search-bar button {
    border: 0;
}

.lynus-search-bar input {
    flex: 1;
    padding: 0.95rem 1rem;
    background: transparent;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.lynus-search-bar button {
    padding: 0.95rem 1.25rem;
    background: #191d24;
    color: #fff;
    font-weight: 800;
}

.lynus-featured,
.lynus-news-panel,
.lynus-location-section {
    padding: 3.5rem 0 0;
}

.lynus-featured__head,
.lynus-news-panel__header,
.lynus-location-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.lynus-product-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255,255,255,0.96);
    border-radius: 28px;
    padding: 0.9rem;
    border: 1px solid rgba(20,20,25,0.06);
    box-shadow: 0 20px 42px rgba(18, 18, 24, 0.1);
}

.lynus-product-card__media {
    min-height: 220px;
    border-radius: 22px;
    background: linear-gradient(180deg, #eef3f7, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lynus-product-card__media img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
}

.lynus-product-card__badge {
    align-self: flex-start;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f6c800, #ffbf00);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.lynus-product-card h3 {
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 900;
    margin: 0;
}

.lynus-product-card p {
    color: #6b7076;
    font-size: 0.86rem;
    margin: 0;
}

.lynus-product-card__action {
    margin-top: auto;
    padding: 0.95rem 1.15rem;
}

.lynus-catalog-banner {
    margin-top: 2rem;
    padding: 3rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.lynus-catalog-banner::before,
.lynus-page-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,12,0.56), rgba(10,10,12,0.76));
}

.lynus-catalog-banner__inner,
.lynus-page-intro__content {
    position: relative;
    z-index: 1;
}

.lynus-catalog-banner__inner {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.8rem;
    color: #fff;
}

.lynus-catalog-banner__inner h2,
.lynus-page-intro__content h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.lynus-catalog-banner__icon {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f6c800, #ffbf00);
    color: #171717;
    font-size: 1.6rem;
}

.lynus-support-cards {
    padding-top: 2rem;
}

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

.lynus-support-card {
    position: relative;
    min-height: 240px;
    padding: 1.5rem;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(135deg, #332c11, #d3a100);
    background-size: cover;
    background-position: center;
}

.lynus-support-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.52));
}

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

.lynus-support-card small {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.78;
}

.lynus-support-card strong {
    display: block;
    margin-top: 0.8rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
}

.lynus-support-card span {
    display: block;
    margin-top: 0.85rem;
    color: rgba(255,255,255,0.84);
}

.lynus-support-card b {
    display: inline-flex;
    margin-top: 1.2rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
}

.lynus-news-panel__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lynus-news-panel__header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.lynus-news-panel__header p,
.lynus-location-section__header p {
    color: #757b82;
    max-width: 42rem;
    margin: 0;
}

.lynus-news-panel__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 1rem;
}

.lynus-news-panel__featured,
.lynus-news-item,
.lynus-location-card,
.lynus-locator-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(20,20,25,0.08);
    box-shadow: 0 16px 36px rgba(20,20,25,0.08);
}

.lynus-news-panel__featured {
    border-radius: 18px;
    overflow: hidden;
}

.lynus-news-panel__featured-media {
    min-height: 210px;
    background: linear-gradient(135deg, #2b2610, #f6c800);
}

.lynus-news-panel__featured-body {
    padding: 1.4rem;
}

.lynus-news-panel__featured-body small {
    color: #c28e00;
    font-weight: 800;
    text-transform: uppercase;
}

.lynus-news-panel__list {
    display: grid;
    gap: 0.85rem;
}

.lynus-news-item {
    border-radius: 16px;
    padding: 1rem 1.1rem;
}

.lynus-news-item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.96rem;
    font-weight: 800;
}

.lynus-news-item span {
    color: #8a9096;
    font-size: 0.78rem;
}

.lynus-location-section__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lynus-location-section__map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 20px 46px rgba(18,18,24,0.1);
}

.lynus-location-section__map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
}

.lynus-location-section__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.lynus-location-card {
    border-radius: 14px;
    padding: 1rem 1.1rem;
}

.lynus-location-card small {
    display: block;
    color: #c28e00;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.lynus-page-intro {
    position: relative;
    padding: 4rem 0;
    margin-top: 0;
    background-size: cover;
    background-position: center;
    border-radius: 0 !important;
    overflow: hidden;
}

.lynus-page-intro__content {
    padding: 2.5rem;
    max-width: 44rem;
    color: #fff;
}

.lynus-page-intro__content small {
    display: inline-flex;
    margin-bottom: 1rem;
    color: #f6c800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.lynus-locator {
    padding: 2.2rem 0 0;
}

.lynus-locator__header {
    margin-bottom: 1rem;
}

.lynus-locator__header small {
    color: #c28e00;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.lynus-locator__header h2 {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 900;
    margin: 0.35rem 0 0.55rem;
}

.lynus-locator__toolbar {
    display: grid;
    grid-template-columns: 180px 1fr 1.2fr 220px;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lynus-locator__toolbar select,
.lynus-locator__toolbar input,
.lynus-locator__toolbar button {
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(20,20,25,0.08);
    background: #fff;
    padding: 0.8rem 0.95rem;
    font-weight: 700;
}

.lynus-locator__toolbar button {
    background: #f6c800;
}

.lynus-locator__layout {
    display: grid;
    grid-template-columns: 0.95fr 1.45fr;
    gap: 1rem;
}

.lynus-locator__results {
    display: grid;
    gap: 0.85rem;
    max-height: 560px;
    overflow: auto;
    padding-right: 0.3rem;
}

.lynus-locator__map {
    min-height: 560px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(20,20,25,0.1);
}

.lynus-locator-card {
    border-radius: 16px;
    padding: 1rem 1.1rem;
    cursor: pointer;
}

.lynus-locator-card.is-active {
    border-color: rgba(246, 200, 0, 0.55);
    box-shadow: 0 20px 40px rgba(246, 200, 0, 0.18);
}

.lynus-locator-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.lynus-locator-card span,
.lynus-locator-card p,
.lynus-locator__empty {
    color: #6c7278;
    margin: 0;
}

.lynus-popup {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lynus-popup.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.lynus-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
}

.lynus-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(92vw, 880px);
}

.lynus-popup__close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    background: rgba(17,17,17,0.82);
    color: #fff;
    font-size: 1.4rem;
}

.lynus-popup__img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.lynus-popup__img--mobile {
    display: none;
}

.lynus-footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    background: #090b0f;
    color: rgba(255,255,255,0.78);
}

.lynus-footer h5 {
    color: #fff;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.lynus-footer__brand img {
    max-height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.lynus-footer__links,
.lynus-footer__contact {
    display: grid;
    gap: 0.65rem;
}

.lynus-footer a {
    color: rgba(255,255,255,0.84);
    text-decoration: none;
}

.lynus-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.86rem;
}

@media (max-width: 991px) {
    .lynus-nav,
    .lynus-pill--cta,
    .lynus-topbar__links {
        display: none;
    }

    .lynus-mobile-toggle {
        display: inline-flex;
    }

    .lynus-home-hero__grid,
    .lynus-news-panel__grid,
    .lynus-locator__layout,
    .lynus-support-cards__grid {
        grid-template-columns: 1fr;
    }

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

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

    .lynus-locator__toolbar {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 767px) {
    .lynus-topbar__social,
    .lynus-navbar__actions .lynus-pill--phone {
        display: none;
    }

    .lynus-logo img {
        height: 42px;
    }

    .lynus-home-hero__copy,
    .lynus-page-intro__content {
        padding: 1.5rem;
    }

    .lynus-home-panels,
    .lynus-featured__grid,
    .lynus-location-section__cards,
    .lynus-locator__toolbar {
        grid-template-columns: 1fr;
    }

    .lynus-home-panel {
        margin-right: 0;
        clip-path: none;
    }

    .lynus-popup__img--desktop {
        display: none;
    }

    .lynus-popup__img--mobile {
        display: block;
    }

    .lynus-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Lynus home refinement */
.lynus-shell,
.lynus-shell button,
.lynus-shell input,
.lynus-shell select,
.lynus-shell textarea {
    font-family: var(--font-family, inherit);
}

.lynus-shell h1,
.lynus-shell h2,
.lynus-shell h3,
.lynus-shell h4,
.lynus-shell h5,
.lynus-shell h6,
.lynus-shell .btn,
.lynus-shell .lynus-btn,
.lynus-shell .lynus-nav a,
.lynus-shell .lynus-home-panel strong,
.lynus-shell .lynus-pill {
    font-family: var(--font-family, inherit);
}

.lynus-topbar {
    background: #0a0b0f;
    border-bottom: 1px solid rgba(246, 200, 0, 0.16);
}

.lynus-topbar__row {
    min-height: 38px;
}

.lynus-topbar__social a,
.lynus-topbar__links a,
.lynus-topbar__links span {
    font-size: 0.76rem;
    letter-spacing: 0.02em;
}

.lynus-navbar {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(32, 35, 39, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 16px 36px rgba(7, 8, 11, 0.2);
}

.lynus-navbar__row {
    min-height: 78px;
}

.lynus-logo img {
    height: 52px;
    width: auto;
}

.lynus-nav {
    gap: 1.55rem;
    align-items: center;
}

.lynus-nav a {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lynus-home-hero {
    margin-top: 0;
    padding: 0 !important;
}

.lynus-home-hero__stage {
    position: relative;
    min-height: calc(100vh - 120px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: stretch;
}

.lynus-home-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 10, 14, 0.08) 0%, rgba(9, 10, 14, 0.26) 38%, rgba(9, 10, 14, 0.82) 100%),
        linear-gradient(180deg, rgba(9, 10, 14, 0.15) 0%, rgba(9, 10, 14, 0.36) 100%);
}

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

.lynus-nav-item--mega {
    padding-bottom: 4px;
    margin-bottom: 0;
}

.lynus-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(760px, calc(100vw - 72px));
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 90;
    padding-top: 10px;
}

.lynus-nav-item--mega:hover .lynus-mega-menu,
.lynus-nav-item--mega:focus-within .lynus-mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%);
}

.lynus-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.7rem;
    border-radius: 16px;
    background: rgba(12, 14, 19, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 28px 60px rgba(4, 5, 7, 0.38);
}

.lynus-mega-menu__card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.58rem;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
}

.lynus-mega-menu__card:hover {
    color: #fff;
    border-color: rgba(246, 200, 0, 0.22);
    transform: translateY(-2px);
}

.lynus-mega-menu__media {
    aspect-ratio: 1 / 0.62;
    border-radius: 10px;
    background: linear-gradient(180deg, #f4f5f6, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
    overflow: hidden;
}

.lynus-mega-menu__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lynus-mega-menu__placeholder {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f6c800;
    background: rgba(246, 200, 0, 0.14);
    font-size: 1.2rem;
}

.lynus-mega-menu__card strong {
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.15;
}

.lynus-mega-menu__card small {
    color: rgba(255,255,255,0.68);
    font-size: 0.66rem;
    line-height: 1.25;
}

.lynus-home-hero__stage > .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.lynus-home-hero__copy {
    width: min(100%, 32rem);
    margin-left: auto;
    padding: 4rem 0 5rem;
    color: #fff;
}

.lynus-home-hero__copy h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.lynus-home-hero__copy p {
    margin: 1.35rem 0 0;
    max-width: 30rem;
    font-size: 1.18rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
}

.lynus-home-hero__actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.lynus-home-panels {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    background: #565e66;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.lynus-home-panel {
    min-height: 144px;
    padding: 1.15rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    background: linear-gradient(180deg, rgba(98,108,117,0.98) 0%, rgba(84,93,101,0.98) 100%);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 100%, 0 100%);
}

.lynus-home-panel::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 1px;
    background: rgba(255,255,255,0.16);
}

.lynus-home-panel:hover {
    color: #fff;
    background: linear-gradient(180deg, rgba(108,118,128,1) 0%, rgba(92,101,109,1) 100%);
}

.lynus-home-panel__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 200, 0, 0.14);
    color: #f6c800;
    font-size: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(246, 200, 0, 0.18);
}

.lynus-home-panel strong {
    display: block;
    margin: 0;
    color: #f6c800;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.lynus-home-panel span {
    display: none;
}

.lynus-footer {
    position: relative;
    margin-top: 4.5rem;
    padding: 4rem 0 2rem;
    background:
        radial-gradient(circle at top left, rgba(246, 200, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #090b0f 0%, #050608 100%);
    border-top: 1px solid rgba(246, 200, 0, 0.12);
}

.lynus-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #f6c800 0%, rgba(246, 200, 0, 0.15) 100%);
}

.lynus-footer__brand p {
    max-width: 28rem;
    line-height: 1.8;
}

.lynus-footer__social {
    display: flex;
    gap: 0.85rem;
    margin-top: 1rem;
}

.lynus-footer__social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.lynus-footer__links a,
.lynus-footer__contact p,
.lynus-footer__contact a {
    font-size: 0.94rem;
}

.lynus-footer__contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0;
}

.lynus-footer__contact i {
    color: #f6c800;
    margin-top: 0.18rem;
}

.lynus-footer__fds img {
    width: auto;
    height: 55px;
}

.lynus-company-story,
.lynus-contact-section {
    padding: 4rem 0 0;
}

.lynus-company-story__header,
.lynus-contact-section__formwrap > small,
.lynus-contact-section__sidebar > small {
    display: block;
    color: #c28e00;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.lynus-company-story__header h2,
.lynus-contact-section__formwrap h2,
.lynus-contact-section__sidebar h3 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 0;
}

.lynus-company-story__header p,
.lynus-contact-section__formwrap p {
    max-width: 42rem;
    color: #66707a;
    margin: 0.9rem 0 0;
    line-height: 1.7;
}

.lynus-company-story__layout,
.lynus-contact-section__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.4rem;
    margin-top: 2rem;
}

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

.lynus-company-story__photo,
.lynus-company-story__content,
.lynus-company-story__pillar,
.lynus-company-story__quality,
.lynus-contact-section__formwrap,
.lynus-contact-section__sidebar,
.lynus-contact-section__card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(15,18,24,0.06);
    box-shadow: 0 18px 42px rgba(10, 16, 24, 0.08);
    border-radius: 24px;
}

.lynus-company-story__photo {
    overflow: hidden;
    min-height: 220px;
}

.lynus-company-story__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lynus-company-story__content,
.lynus-contact-section__formwrap,
.lynus-contact-section__sidebar {
    padding: 1.8rem;
}

.lynus-company-story__content {
    color: #1e2832;
    line-height: 1.85;
}

.lynus-company-story__content p {
    margin-bottom: 1.15rem;
}

.lynus-company-story__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.lynus-company-story__pillar {
    padding: 1.4rem;
}

.lynus-company-story__pillar h3 {
    font-size: 1.12rem;
    font-weight: 900;
    margin: 0 0 0.8rem;
}

.lynus-company-story__pillar p,
.lynus-company-story__pillar li {
    color: #626c75;
    line-height: 1.65;
}

.lynus-company-story__pillar ul {
    padding-left: 1.1rem;
    margin: 0;
}

.lynus-company-story__quality {
    margin-top: 1.4rem;
    padding: 1.8rem;
}

.lynus-company-story__quality h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 0.4rem 0 0.7rem;
}

.lynus-company-story__quality p {
    margin: 0;
    color: #5f6871;
    line-height: 1.75;
}

.lynus-contact-section__sidebar {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.lynus-contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.lynus-contact-form__field {
    display: grid;
    gap: 0.45rem;
}

.lynus-contact-form__field--full {
    grid-column: 1 / -1;
}

.lynus-contact-form__field label {
    color: #202934;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.lynus-contact-form__field input,
.lynus-contact-form__field select,
.lynus-contact-form__field textarea {
    min-height: 54px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(16, 20, 28, 0.1);
    background: #f8fafb;
}

.lynus-contact-form__field textarea {
    min-height: 180px;
    resize: vertical;
}

.lynus-contact-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1.2rem;
    color: #616974;
    line-height: 1.65;
}

.lynus-contact-form__consent input {
    margin-top: 0.25rem;
}

.lynus-contact-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.3rem;
}

.lynus-contact-form__feedback {
    min-height: 24px;
    font-size: 0.92rem;
    font-weight: 700;
}

.lynus-contact-form__feedback.is-success {
    color: #1a8f48;
}

.lynus-contact-form__feedback.is-error {
    color: #d24141;
}

.lynus-contact-section__card {
    padding: 1.1rem 1.2rem;
}

.lynus-contact-section__card span {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #c28e00;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.lynus-contact-section__card strong {
    display: block;
    color: #202934;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.55rem;
    white-space: pre-line;
}

#sucuri-acessibilidade.direita-rodape {
    bottom: 96px;
    right: 22px;
}

#sucuri-acessibilidade.direita-rodape .acc-panel,
#sucuri-acessibilidade.esquerda-rodape .acc-panel {
    top: auto;
    bottom: calc(100% + 12px);
}

@media (max-width: 1199px) {
    .lynus-mega-menu {
        width: min(920px, calc(100vw - 36px));
    }

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

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

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

@media (max-width: 991px) {
    .lynus-mega-menu {
        display: none;
    }

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

    .lynus-company-story__layout,
    .lynus-contact-section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .lynus-logo img {
        height: 44px;
    }

    .lynus-home-hero__stage {
        min-height: 72vh;
    }

    .lynus-home-hero__copy {
        width: 100%;
        max-width: 100%;
        padding: 3rem 0 4rem;
    }

    .lynus-home-hero__copy h1 {
        font-size: clamp(2.4rem, 10vw, 4rem);
    }

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

    .lynus-home-panel {
        min-height: 112px;
        clip-path: none;
    }

    .lynus-company-story__gallery,
    .lynus-company-story__pillars,
    .lynus-contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* Lynus final alignment */
.lynus-shell main {
    margin: 0;
    padding: 0;
}

.lynus-shell main > section:first-child,
.lynus-shell .lynus-navbar + section,
.lynus-shell .lynus-navbar + main > section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.lynus-navbar__row {
    min-height: 78px;
    padding: 0.7rem 0;
}

.lynus-logo img {
    height: 46px;
    width: auto;
    max-width: 100%;
    display: block;
}

.lynus-home-hero,
.lynus-home-hero__stage,
.lynus-home-panels {
    width: 100%;
}

.lynus-home-panels {
    margin-left: 0;
    margin-right: 0;
}

.lynus-home-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.lynus-footer__brand img,
.lynus-footer__fds img {
    display: block;
}

@media (max-width: 767px) {
    .lynus-logo img {
        height: 40px;
    }
}

/* Lynus light rebuild */
body.page-home,
body[class*="page-"] {
    background: #ffffff;
    color: #171717;
}

.lynus-layout-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
    box-shadow: 0 10px 30px rgba(18, 18, 23, 0.05);
}

.lynus-layout-header .container {
    max-width: none;
    width: 100%;
    padding-left: clamp(18px, 2vw, 42px);
    padding-right: clamp(18px, 2vw, 42px);
}

.lynus-layout-header__inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.lynus-layout-header__brand img {
    height: 58px;
    width: auto;
    display: block;
}

.lynus-layout-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 44px);
    flex: 1 1 auto;
}

.lynus-layout-header__nav a {
    color: #202020;
    font-weight: 800;
    font-size: clamp(12px, 0.82vw, 15px);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.lynus-layout-header__nav a.is-active,
.lynus-layout-header__nav a:hover {
    color: #111;
}

.lynus-layout-header__toggle {
    display: none;
    border: 0;
    background: #111;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
}

.lynus-layout-header__mobile {
    display: none;
    padding: 0 1rem 1rem;
    border-top: 1px solid rgba(23, 23, 23, 0.08);
    background: #fff;
}

.lynus-layout-header__mobile.is-open {
    display: grid;
    gap: 0.35rem;
}

.lynus-layout-header__mobile a {
    color: #171717;
    text-decoration: none;
    font-weight: 700;
    padding: 0.9rem 0.25rem;
}

.lynus-home-hero {
    padding: 0 0 18px;
}

.lynus-home-hero > .container.lynus-home-hero__shell {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.lynus-home-hero__stage {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: stretch;
    border-radius: 0;
    overflow: hidden;
}

.lynus-home-hero__media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.lynus-home-hero__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    min-width: min(50%, 680px);
    padding: clamp(28px, 3.2vw, 52px);
    background: transparent;
}

.lynus-home-hero__copy h1 {
    max-width: 100%;
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.6vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.lynus-home-hero__copy p {
    max-width: 100%;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.35;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.lynus-home-hero__actions {
    display: none;
}

.lynus-home-panels {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.lynus-home-panel {
    background: #fff;
    color: #171717;
    text-decoration: none;
    border: 1px solid rgba(18, 18, 23, 0.08);
    box-shadow: 0 14px 26px rgba(20, 20, 25, 0.06);
    overflow: hidden;
}

.lynus-home-panel__media {
    min-height: 108px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)), linear-gradient(135deg, #f4f4f4, #e9e9e9);
    background-position: center;
    background-size: cover;
}

.lynus-home-panel__body {
    padding: 12px 14px 16px;
    text-align: center;
}

.lynus-home-panel__body strong {
    display: block;
    margin: 0;
    color: #202020;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.02;
    font-weight: 900;
    font-style: italic;
}

.lynus-home-panel__body span {
    display: block;
    margin-top: 8px;
    color: #4a4a4a;
    font-size: 13px;
    line-height: 1.25;
}

.lynus-search-bar-wrap {
    padding: 10px 0 0;
}

.lynus-search-bar {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 0;
    background: #d9d9d9;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, 0.06);
}

.lynus-search-bar input {
    min-height: 74px;
    background: transparent;
    border: 0;
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 28px;
}

.lynus-search-bar input::placeholder {
    color: #555;
}

.lynus-search-bar button {
    min-height: 74px;
    border: 0;
    background: #111;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.lynus-featured,
.lynus-news-panel,
.lynus-location-section,
.lynus-support-cards {
    padding: 26px 0;
}

.lynus-featured__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.lynus-featured__head h2,
.lynus-news-panel__header h2,
.lynus-location-section__header h2 {
    margin: 0;
    color: #171717;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 900;
    font-style: italic;
}

.lynus-pill-cta,
.lynus-product-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 32px;
    border-radius: 999px;
    text-decoration: none;
    background: #ffcb05;
    color: #171717;
    font-weight: 900;
    font-size: 18px;
    box-shadow: none;
}

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

.lynus-product-card {
    padding: 20px 20px 24px;
    background: #fff;
    border-radius: 30px;
    border: 1px solid rgba(23, 23, 23, 0.06);
    box-shadow: 0 18px 38px rgba(20, 20, 25, 0.05);
}

.lynus-product-card__media {
    height: 300px;
    margin-bottom: 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f6f8fb, #edf1f7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

.lynus-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lynus-product-card h3 {
    margin: 0 0 12px;
    color: #171717;
    font-size: clamp(24px, 2.4vw, 38px);
    line-height: 1.03;
    font-weight: 900;
    font-style: italic;
}

.lynus-product-card p {
    margin: 0 0 4px;
    color: #444;
    font-size: 17px;
    line-height: 1.3;
    font-style: italic;
}

.lynus-product-card__action {
    width: 100%;
    margin-top: 22px;
}

.lynus-catalog-banner {
    margin-top: 6px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.lynus-catalog-banner::before {
    background: rgba(0, 0, 0, 0.56);
}

.lynus-catalog-banner__inner {
    min-height: 250px;
    text-align: center;
}

.lynus-catalog-banner__inner h2 {
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: 0.02em;
    font-weight: 900;
}

.lynus-catalog-banner__inner p {
    max-width: 640px;
    margin: 12px auto 0;
    font-size: 18px;
    line-height: 1.45;
}

.lynus-catalog-banner__icon {
    width: 76px;
    height: 76px;
    background: #ffcb05;
    color: #171717;
}

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

.lynus-support-card {
    min-height: 220px;
    padding: 26px 26px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lynus-support-card::before {
    background: linear-gradient(90deg, rgba(17, 12, 5, 0.88), rgba(141, 111, 0, 0.76));
}

.lynus-support-card strong {
    max-width: 460px;
    font-size: clamp(32px, 3.5vw, 50px);
    line-height: 0.96;
    font-weight: 900;
}

.lynus-support-card span {
    max-width: 520px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.86);
}

.lynus-support-card b {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    width: fit-content;
    padding: 12px 20px;
    font-size: 14px;
}

.lynus-news-panel__header,
.lynus-location-section__header {
    text-align: center;
}

.lynus-news-panel__header p,
.lynus-location-section__header p {
    max-width: 760px;
    margin: 12px auto 0;
    color: #787878;
    font-size: 18px;
}

.lynus-news-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 28px;
    margin-top: 28px;
}

.lynus-news-panel__featured {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(23, 23, 23, 0.06);
    box-shadow: 0 18px 34px rgba(23, 23, 23, 0.05);
}

.lynus-news-panel__featured-media {
    min-height: 270px;
    background: linear-gradient(135deg, #382b00, #ffcb05);
}

.lynus-news-panel__featured-body {
    padding: 28px;
    background: #fff;
}

.lynus-news-panel__featured-body h3 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
}

.lynus-news-panel__featured-body p {
    margin: 10px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 1.55;
}

.lynus-news-panel__list {
    display: grid;
    gap: 18px;
}

.lynus-news-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(255, 203, 5, 0.26);
    border-radius: 18px;
}

.lynus-news-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 203, 5, 0.16);
    color: #e0a900;
}

.lynus-news-item__content strong {
    display: block;
    color: #171717;
    font-size: 16px;
    line-height: 1.32;
}

.lynus-news-item__content span {
    display: block;
    margin-top: 8px;
    color: #8c8c8c;
    font-size: 13px;
}

.lynus-location-section {
    background: #efeee7;
    margin-top: 10px;
    padding: 46px 0 34px;
}

.lynus-location-section__map {
    margin-top: 30px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(20, 20, 25, 0.06);
}

.lynus-location-section__map iframe {
    min-height: 460px;
}

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

.lynus-location-card {
    padding: 18px 20px;
    background: #fffdf8;
    border-radius: 16px;
    border: 1px solid rgba(255, 203, 5, 0.18);
}

.lynus-location-card small {
    color: #9b9b9b;
    font-size: 13px;
}

.lynus-location-card strong {
    display: block;
    margin-top: 8px;
    color: #171717;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.lynus-layout-footer {
    background: #07070d;
    padding: 38px 0 20px;
    color: #fff;
}

.lynus-layout-footer__grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.15fr) repeat(2, minmax(180px, 0.8fr)) minmax(220px, 0.95fr);
    gap: 32px;
    align-items: start;
}

.lynus-layout-footer__brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.5;
}

.lynus-layout-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.lynus-layout-footer__social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 203, 5, 0.08);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.lynus-layout-footer__column h3 {
    margin: 6px 0 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
}

.lynus-layout-footer__links {
    display: grid;
    gap: 10px;
}

.lynus-layout-footer__links a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 15px;
}

.lynus-layout-footer__preview img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.lynus-layout-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.lynus-layout-footer__legal {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.lynus-layout-footer__legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.lynus-layout-footer__legal a:hover {
    color: #fff;
}

.lynus-layout-footer__bottom-brand img {
    display: block;
    width: auto;
    height: 50px;
}

@media (max-width: 1199px) {
    .lynus-home-panels {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lynus-featured__grid,
    .lynus-location-section__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 991px) {
    .lynus-layout-header__nav {
        display: none;
    }

    .lynus-layout-header__toggle {
        display: inline-flex;
    }

    .lynus-layout-header__inner {
        min-height: 92px;
    }

    .lynus-layout-header__brand img {
        height: 58px;
    }

    .lynus-home-hero__stage,
    .lynus-news-panel__grid,
    .lynus-support-cards__grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .lynus-home-hero {
        padding-top: 18px;
    }

    .lynus-home-hero__stage {
        min-height: auto;
    }

    .lynus-home-hero__media {
        min-height: 280px;
    }

    .lynus-home-hero__copy h1 {
        font-size: 44px;
    }

    .lynus-home-panels,
    .lynus-featured__grid,
    .lynus-location-section__cards,
    .lynus-layout-footer__grid {
        grid-template-columns: 1fr;
    }

    .lynus-layout-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .lynus-search-bar {
        grid-template-columns: 1fr;
    }

    .lynus-search-bar button {
        min-height: 62px;
    }

    .lynus-featured__head {
        align-items: flex-start;
        flex-direction: column;
    }
}
