/* ===== Index: Hero ===== */
.hero {
    position: relative;
    margin-top: var(--nav-height);
    min-height: 480px;
    overflow: hidden;
    background: var(--primary-dark);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 42, 95, 0.88) 0%, rgba(15, 42, 95, 0.55) 55%, rgba(15, 42, 95, 0.25) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-lg);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--bg-surface);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
    max-width: 640px;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.hero-desc {
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--line-height-body);
    max-width: 560px;
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--bg-surface);
}

.hero-buttons .btn-outline:hover {
    background: var(--bg-surface);
    color: var(--primary-dark);
}

.sound-toggle {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    cursor: pointer;
}

.sound-toggle:hover {
    background: rgba(0, 0, 0, 0.65);
}

.sound-icon {
    width: 16px;
    height: 16px;
}

/* ===== Index: Editorial sections (brand, products, applications, news) ===== */
.home-section-editorial {
    padding: clamp(40px, 4vw, 88px) 0;
    
}

.section-header--editorial {
    text-align: left;
    margin-bottom: clamp(36px, 4.5vw, 52px);
    max-width: 720px;
}

.section-header--editorial .section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    letter-spacing: -0.02em;
}

.section-header--editorial .section-subtitle {
    margin-top: var(--space-sm);
    max-width: 36em;
}

/* ===== Index: Brand section ===== */
.logo-section {
    background: var(--bg-page);
}

.brand-editorial {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

.brand-story {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.brand-story-intro {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.brand-logo-mark {
    width: 80px;
    flex-shrink: 0;
}

.logo-svg {
    width: 150px;
    max-width: 150px;
    height: auto;
    display: block;
}

.brand-narrative-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-top: 3.15em;
    line-height: var(--line-height-tight);
    flex: 1;
    min-width: 0;
}

.brand-narrative-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-body);
    max-width: 48ch;
    margin: 0;
}

.brand-values-strip {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: clamp(24px, 3vw, 40px);
    border-left: 1px solid var(--border);
}

.brand-value-item {
    display: block;
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
}

.brand-value-item:first-child {
    padding-top: 0;
}

.brand-value-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.brand-value-heading {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 var(--space-sm);
    line-height: var(--line-height-tight);
}

.brand-value-index {
    display: none;
}

.brand-value-content p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-body);
}

/* ===== Index: Products showcase ===== */
.products-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 48px);
    align-items: start;
}

.products-showcase-side {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3vw, 32px);
}

.product-tile {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: color 0.2s ease-out;
}

.product-tile:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.product-tile-body {
    padding: var(--space-md) 0 0;
}

.product-tile-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #E2E8F0;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.product-tile--featured .product-tile-media {
    aspect-ratio: 16 / 9;
    max-height: min(420px, 50vh);
}

@media (min-width: 992px) {
    .products-showcase {
        align-items: stretch;
    }

    .products-showcase-side {
        gap: var(--space-md);
    }

    .products-showcase-side .product-tile {
        flex: 1;
        display: grid;
        grid-template-columns: clamp(108px, 12vw, 136px) minmax(0, 1fr);
        align-items: stretch;
    }

    .products-showcase-side .product-tile-media {
        aspect-ratio: unset;
        height: 100%;
        min-height: 0;
    }

    .products-showcase-side .product-tile + .product-tile {
        padding-top: var(--space-md);
        border-top: 1px solid var(--border);
    }

    .products-showcase-side .product-tile-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 0 0 var(--space-md);
        min-width: 0;
    }

    .products-showcase-side .product-tile-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.product-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.product-tile:hover .product-tile-media img,
.product-tile:focus-visible .product-tile-media img {
    transform: scale(1.02);
}

@media (hover: hover) {
    .product-tile:hover .product-tile-name,
    .product-tile:focus-visible .product-tile-name {
        color: var(--primary);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-value-heading,
    .product-tile,
    .product-tile-name,
    .products-showcase-side .product-tile,
    .application-tile,
    .application-tile-name,
    .news-featured-title,
    .news-compact,
    .news-compact-title {
        transition: none;
    }

    .product-tile-media img,
    .news-featured-media img,
    .application-tile-media img {
        transition: none;
    }

    .product-tile:hover .product-tile-media img,
    .product-tile:focus-visible .product-tile-media img,
    .news-featured:hover .news-featured-media img,
    .news-featured:focus-visible .news-featured-media img,
    .application-tile:hover .application-tile-media img,
    .application-tile:focus-visible .application-tile-media img {
        transform: none;
    }
}

.product-tile-tag {
    position: absolute;
    bottom: var(--space-sm);
    left: var(--space-sm);
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--bg-surface);
    background: rgba(15, 42, 95, 0.78);
    border: none;
}

.product-tile-tag--thermoplastic {
    background: rgba(42, 91, 196, 0.88);
    color: var(--bg-surface);
}

.product-tile-tag--accent {
    background: rgba(180, 83, 9, 0.88);
    color: var(--bg-surface);
}

.product-tile-name {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    transition: color 0.2s ease-out;
}

.product-tile-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: var(--line-height-body);
    margin-top: var(--space-xs);
}

.product-tile--featured .product-tile-name {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

/* ===== Index: Applications editorial ===== */
.applications-editorial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 34px);
}

.application-tile {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: color 0.2s ease-out;
}

.application-tile:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.application-tile-body {
    padding: var(--space-md) 0 0;
}

.application-tile-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #E2E8F0;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.application-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.application-tile:hover .application-tile-media img,
.application-tile:focus-visible .application-tile-media img {
    transform: scale(1.02);
}

@media (hover: hover) {
    .application-tile:hover .application-tile-name,
    .application-tile:focus-visible .application-tile-name {
        color: var(--primary);
    }
}

.application-tile-name {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    transition: color 0.2s ease-out;
}

.application-tile-desc {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: var(--line-height-body);
    margin-top: var(--space-xs);
}

/* ===== Index: News editorial ===== */
.news-editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(28px, 3.5vw, 48px);
    align-items: start;
}

.news-featured {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.news-featured-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #E2E8F0;
    margin-bottom: var(--space-md);
 
}

.news-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease-out;
}

.news-featured:hover .news-featured-media img,
.news-featured:focus-visible .news-featured-media img {
    transform: scale(1.02);
}

@media (hover: hover) {
    .news-featured:hover .news-featured-title,
    .news-featured:focus-visible .news-featured-title {
        color: var(--primary);
    }
}

.news-featured:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--radius);
}

.news-featured-date {
    display: block;
    font-size: var(--font-size-sm);
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-sm);
}

.news-featured-title {
    font-size: clamp(1.375rem, 2.2vw, 1.75rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    transition: color 0.2s ease-out;
}



.news-compact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-compact {
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: var(--space-md);
    padding: var(--space-md) 0;
    margin: 0;
    border-bottom: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    align-items: first baseline;
    transition: color 0.2s ease-out;
}

.news-compact:first-child {
    padding-top: 0;
}

.news-compact:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.news-compact-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
}

@media (hover: hover) {
    .news-compact:hover .news-compact-title,
    .news-compact:focus-visible .news-compact-title {
        color: var(--primary);
    }
}

.news-compact:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.news-compact-date {
    flex-shrink: 0;
    font-size: var(--font-size-sm);
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    line-height: var(--line-height-tight);
    white-space: nowrap;
}

.news-compact-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    transition: color 0.2s ease-out;
}

.news-compact-link {
    display: none;
}

.view-more--editorial {
    text-align: left;
    margin-top: clamp(32px, 4vw, 44px);
}

.view-more--editorial .btn-outline {
    padding: 0;
    border: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 4px;
}

.view-more--editorial .btn-outline:hover {
    background: transparent;
    color: var(--primary-dark);
}

/* ===== Index: Grids (legacy / other pages) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.news-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.news-card:hover {
    border-color: var(--primary);
}

.news-image {
    height: 160px;
    background: #E2E8F0;
    position: relative;
    overflow: hidden;
}

.news-image img,
.honor-item img,
.cert-item img,
.content-block .content-img,
.partner-image img,
.news-article-media img,
.report-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: var(--space-sm);
}

.report-card img {
    aspect-ratio: 3 / 4;
    max-height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: var(--space-sm);
}

.content-block .content-img {
    min-height: 240px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.partner-image {
    overflow: hidden;
}

.partner-image img {
    min-height: 260px;
}

.news-article-media {
    overflow: hidden;
    border-radius: var(--radius);
}

.news-date-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--bg-surface);
    padding: 4px 10px;
    border-radius: var(--radius);
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.news-content {
    padding: var(--space-md);
}

.news-title {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
}

.view-more {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* ===== Innovation ===== */
.concept-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.concept-desc {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-2xl);
}

.concepts-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.concept-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-surface);
}

.concept-card-header {
    background: var(--bg-surface);
    padding: var(--space-md) var(--space-xl);
    border-left: 4px solid var(--primary);
    border-bottom: 1px solid var(--border);
}

.concept-card-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
}

.concept-card-body {
    padding: var(--space-md) var(--space-xl);
}

.concept-card-body li {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 2;
    padding-left: var(--space-lg);
    position: relative;
}

.concept-card-body li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.timeline-section {
    background: var(--bg-page);
}

.timeline-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
}

.timeline {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-lg);
    min-width: max-content;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--space-xl) + 18px);
    height: 2px;
    background: var(--border);
}

.timeline-item {
    min-width: 260px;
    max-width: 300px;
    position: relative;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    font-size: var(--font-size-md);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: calc(var(--space-xl) + 13px);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    background: var(--bg-surface);
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.timeline-content h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.timeline-content li {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: var(--space-md);
    position: relative;
    margin-bottom: var(--space-xs);
}

.timeline-content li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.partner-text h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.partner-text p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: var(--space-sm);
}

.partner-image {
    height: 260px;
    background: #E2E8F0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* ===== Solutions page ===== */
.products-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.product-card-h {
    display: flex;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.product-card-h:hover {
    border-color: var(--primary);
}

.product-card-h .product-image {
    width: 200px;
    flex-shrink: 0;
    height: auto;
    min-height: 180px;
}

.product-card-h .product-info {
    padding: var(--space-lg);
    flex: 1;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-md);
    position: relative;
}

.feature-list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* ===== About page ===== */
.about-content {
    background: var(--bg-page);
}

.about-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
}

.about-sidebar {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    height: fit-content;
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
}

.sidebar-menu button {
    display: block;
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    text-align: left;
    cursor: pointer;
    border-left: 3px solid transparent;
    border-radius: 0;
    transition: var(--transition);
}

.sidebar-menu button:hover {
    color: var(--text-primary);
    background: var(--bg-page);
}

.sidebar-menu li.active button {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--bg-page);
    font-weight: 600;
}

.about-main {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-xl);
    min-height: 400px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.mini-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mini-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-page);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
}

.mini-item .year {
    font-weight: 700;
    color: var(--primary);
    min-width: 48px;
    flex-shrink: 0;
}

.mini-item .event {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.honors-grid,
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.honor-item,
.cert-item {
    text-align: center;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: var(--line-height-body);
}

.honor-item img,
.cert-item img {
    aspect-ratio: 4 / 3;
    min-height: 120px;
    max-height: 200px;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    object-fit: cover;
}

.cert-item img {
    aspect-ratio: 3 / 4;
    max-height: 280px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.news-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.news-item:hover {
    background: var(--bg-page);
}

.news-item .news-image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
}

.news-item .news-date {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.news-item .news-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.news-item .news-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.client-logo .img-placeholder {
    min-height: 80px;
}

.sustain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.sustain-item {
    padding: var(--space-md);
    background: var(--bg-page);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
}

.sustain-item h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.sustain-item p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== Contact ===== */
.contact-content {
    background: var(--bg-page);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info,
.contact-form {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-xl);
}

.contact-form {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
}

.contact-info h2,
.contact-form h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.info-group {
    margin-bottom: var(--space-lg);
}

.info-group h3 {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.contact-office-photo {
    margin-bottom: var(--space-lg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-office-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 220px;
}

.map-section h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.map-embed {
    width: 100%;
    height: 280px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Careers ===== */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.career-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
}

.career-card h3 {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.career-card p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
}

.career-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--bg-surface);
    font-size: var(--font-size-sm);
    font-weight: 700;
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.activity-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.activity-card .activity-image {
    height: 140px;
    background: #E2E8F0;
    overflow: hidden;
}

.activity-card .activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-card .activity-content {
    padding: var(--space-md);
}

.activity-date {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.activity-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.activity-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jobs-section {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    gap: var(--space-md);
    flex-wrap: wrap;
}

.job-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    min-width: 120px;
}

.job-info {
    display: flex;
    gap: var(--space-sm);
    flex: 1;
    flex-wrap: wrap;
}

.job-info span {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    padding: 2px 8px;
    background: var(--bg-page);
    border-radius: var(--radius);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .brand-editorial {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .brand-editorial::before {
        display: none;
    }

    .brand-story-intro {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .brand-values-strip {
        padding-left: 0;
        border-left: none;
        padding-top: var(--space-xl);
        border-top: 1px solid var(--border);
        min-height: 0;
    }

    .brand-value-item:first-child {
        padding-top: 0;
    }

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

    .products-showcase-side {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .product-tile--featured .product-tile-media {
        aspect-ratio: 16 / 9;
        max-height: min(360px, 45vh);
    }

    .news-editorial {
        grid-template-columns: 1fr;
    }

    .news-compact-list {
        padding-left: 0;
        border-left: none;
        padding-top: var(--space-xl);
        border-top: 1px solid var(--border);
    }

    .news-compact {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
    }

    .news-compact-date {
        padding-top: 0;
        margin-bottom: 2px;
    }

    .news-compact-body {
        min-width: 0;
        width: 100%;
    }

    .news-compact-title {
        font-size: var(--font-size-md);
        line-height: 1.45;
    }

    .applications-editorial {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

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

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

    .product-card-h {
        flex-direction: column;
    }

    .product-card-h .product-image {
        width: 100%;
    }

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

    .about-sidebar {
        position: static;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-xs);
    }

    .sidebar-menu li {
        flex: 1 1 auto;
    }

    .content-block {
        grid-template-columns: 1fr;
    }

    .partner-content {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 767px) {
    .products-showcase-side {
        grid-template-columns: 1fr;
    }

    .product-tile--featured .product-tile-media {
        max-height: min(280px, 42vh);
    }

    .applications-editorial {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .solutions-grid,
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .honors-grid,
    .cert-grid,
    .clients-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        position: static;
    }

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

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

    .hero-inner {
        min-height: 400px;
        padding: var(--space-3xl) var(--space-lg);
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
}

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

/* ===== Application cards (with media) ===== */
.app-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.app-card:hover {
    border-color: var(--primary);
}

a.app-card,
a.news-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

a.news-card:hover .news-title {
    color: var(--primary);
}

.app-card-media {
    height: 120px;
    background: #E2E8F0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
    aspect-ratio: 10 / 3;
}

.app-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-card-body {
    padding: var(--space-md);
}

.app-card-body h4 {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.app-card-body p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: var(--line-height-body);
}

.applications-grid-rich {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* ===== News page ===== */
.news-page-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.news-article {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.news-article:hover {
    border-color: var(--primary);
}

.news-article-media {
    min-height: 140px;
}

.news-article-meta {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.news-article-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.news-article-excerpt {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.8;
}

.news-archive-link {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

/* ===== About / content utilities ===== */
.text-body {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.text-body:last-child {
    margin-bottom: 0;
}

.text-lead {
    font-size: var(--font-size-md);
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.text-muted-sm {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.text-center-block {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.subsection-title {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.report-card {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-surface);
}

.report-card.full-width {
    grid-column: 1 / -1;
}

.img-placeholder.tall {
    min-height: 240px;
}

.info-group-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.info-group-title.sub {
    font-size: var(--font-size-sm);
}

.link-plain,
.link-inline {
    color: var(--text-primary);
}

.link-inline {
    text-decoration: underline;
}

.link-plain {
    text-decoration: none;
}

.link-plain:hover,
.link-inline:hover {
    color: var(--primary);
}


.careers-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.careers-intro.text-body {
    margin-bottom: var(--space-xl);
}

.section-block {
    margin-bottom: var(--space-xl);
}

@media (max-width: 991px) {
    .applications-grid-rich {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 767px) {
    .applications-grid-rich {
        grid-template-columns: 1fr;
    }
}

/* ===== Inner pages: image hero + breadcrumb toolbar ===== */
.page-hero {
    position: relative;
    height: clamp(200px, 32vw, 360px);
    overflow: hidden;
    background: var(--primary-dark);
}

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

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 42, 95, 0.25) 0%, rgba(15, 42, 95, 0.45) 100%),
        rgba(15, 23, 42, 0.25);
}

.page-toolbar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
}

.page-toolbar .container {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-body);
}

.page-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s ease-out;
}

.page-breadcrumb a:hover {
    color: var(--primary);
}

.page-breadcrumb a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 2px;
}

.page-breadcrumb .sep {
    margin: 0 var(--space-sm);
    color: var(--border-dark);
    user-select: none;
}

.page-breadcrumb__current {
    font-size: inherit;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: inherit;
}

/* Page pending — editorial placeholder (inner pages) */
.page-pending {
    background: var(--bg-surface);
    padding: var(--space-3xl) 0 var(--space-4xl);
}

.page-pending__label {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-md);
}

.page-pending__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-lg);
}

.page-pending__desc {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: var(--line-height-body);
    max-width: 38em;
}

@media (max-width: 767px) {
    .page-pending__title {
        font-size: var(--font-size-lg);
    }
}

@media (min-width: 768px) {
    .page-toolbar .container {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }
}
