:root {
    --bg: #eef1f5;
    --surface: #f8fafc;
    --surface-strong: #0f1d31;
    --panel: rgba(255, 250, 242, 0.84);
    --panel-dark: rgba(15, 29, 49, 0.9);
    --text: #15243b;
    --muted: #516176;
    --line: rgba(21, 36, 59, 0.12);
    --brand: #b71f19;
    --brand-strong: #d02a22;
    --sand: #d9e1ea;
    --navy: #14243b;
    --navy-strong: #0d1a2c;
    --red-soft: #f3d7d5;
    --white: #ffffff;
    --shadow: 0 24px 60px rgba(13, 26, 44, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(183, 31, 25, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(20, 36, 59, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f9fc 0%, #e9eef4 100%);
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    margin-bottom: -88px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
}

.site-header:not(.site-header-page) {
    position: absolute;
    top: 0;
    margin-bottom: 0;
    padding-top: 0;
}

.site-header:not(.site-header-page) .nav-shell {
    margin-top: 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(232, 239, 246, 0.18), rgba(232, 239, 246, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 34px rgba(8, 16, 30, 0.14);
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-menu-toggle,
.mobile-nav-panel {
    display: none;
}

.mobile-menu-toggle {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 20, 34, 0.28);
    color: var(--white);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mobile-menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(208, 42, 34, 0.78);
    border-color: rgba(208, 42, 34, 0.82);
}

.mobile-nav-panel {
    margin-top: 10px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 29, 49, 0.94), rgba(13, 26, 44, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(8, 16, 30, 0.18);
}

.mobile-nav-links {
    display: grid;
    gap: 10px;
}

.mobile-nav-links a {
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.mobile-nav-links a.is-active,
.mobile-nav-links a:hover {
    color: var(--white);
    background: rgba(208, 42, 34, 0.18);
    border-color: rgba(208, 42, 34, 0.3);
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.brand img {
    width: 168px;
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.96))
        drop-shadow(0 0 6px rgba(255, 255, 255, 0.38))
        drop-shadow(0 8px 18px rgba(8, 16, 30, 0.18));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    transition: color 180ms ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(208, 42, 34, 0.95), rgba(208, 42, 34, 0.18));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.site-header-page .nav-shell {
    background: linear-gradient(180deg, rgba(15, 29, 49, 0.3), rgba(15, 29, 49, 0.14));
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-switch a {
    min-width: 42px;
    padding: 8px 10px;
    border-radius: 999px;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.74);
}

.lang-switch a.is-active {
    color: var(--white);
    background: rgba(208, 42, 34, 0.82);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-1px);
}

.nav-cta,
.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    box-shadow: 0 14px 34px rgba(183, 31, 25, 0.24);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
    background: rgba(20, 36, 59, 0.32);
}

.hero {
    position: relative;
    padding: 0 0 28px;
}

.page-hero {
    position: relative;
    min-height: 440px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(10, 20, 34, 0.92) 0%, rgba(13, 26, 44, 0.72) 56%, rgba(13, 26, 44, 0.26) 100%),
        linear-gradient(180deg, rgba(9, 17, 29, 0.24) 0%, rgba(9, 17, 29, 0.48) 100%);
}

.page-hero-corporate::after,
.page-hero-products::after,
.page-hero-contact::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 74px;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(180deg, rgba(223, 231, 239, 0) 0%, rgba(220, 228, 236, 0.2) 28%, rgba(216, 225, 235, 0.5) 58%, rgba(214, 223, 233, 0.9) 84%, #d7e0ea 100%);
}

.page-hero-corporate .page-hero-overlay,
.page-hero-products .page-hero-overlay,
.page-hero-contact .page-hero-overlay {
    background:
        radial-gradient(circle at 14% 18%, rgba(208, 42, 34, 0.22), transparent 22%),
        radial-gradient(circle at 84% 14%, rgba(124, 153, 185, 0.16), transparent 20%),
        linear-gradient(90deg, rgba(8, 17, 29, 0.94) 0%, rgba(10, 22, 38, 0.84) 44%, rgba(12, 24, 40, 0.42) 72%, rgba(12, 24, 40, 0.14) 100%),
        linear-gradient(180deg, rgba(8, 17, 29, 0.2) 0%, rgba(8, 17, 29, 0.28) 28%, rgba(8, 17, 29, 0.56) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    min-height: 440px;
    padding: 164px 0 68px;
}

.page-hero-corporate .container,
.page-hero-products .container,
.page-hero-contact .container {
    padding-bottom: 112px;
}

.page-hero-corporate + .section,
.page-hero-products + .section,
.page-hero-contact + .section {
    position: relative;
    margin-top: 0;
    padding-top: 64px;
    background: linear-gradient(180deg, #d7e0ea 0%, #e2eaf2 18%, #eaf0f6 34%, #eef3f8 50%, #f4f7fb 68%, #f6f8fc 100%);
}

.page-hero-copy {
    max-width: 720px;
}

.page-hero h1 {
    margin: 0;
    max-width: 13ch;
    color: var(--white);
    font-size: clamp(2.35rem, 4vw, 4.1rem);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    line-height: 1.05;
}

.page-hero .lead {
    max-width: 62ch;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero-actions,
.section-actions,
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.page-hero-actions {
    margin-top: 26px;
}

.hero-grid,
.section-grid,
.showcase-grid,
.contact-grid {
    position: relative;
    display: grid;
    gap: 28px;
}

.hero-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
}

.hero-stage {
    position: relative;
    z-index: 1;
}

.hero-shell {
    position: relative;
    width: 100vw;
    min-height: 760px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    background: #0f1d31;
    box-shadow: var(--shadow);
}

.hero-slider {
    position: relative;
    min-height: inherit;
}

.hero-slide {
    transition: opacity 850ms ease, transform 850ms ease;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: stretch;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    background-position: center;
    background-size: cover;
    min-height: inherit;
}

.hero-slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    min-height: inherit;
}

.hero-slide-shell {
    width: min(560px, calc(100% - 64px));
    margin: auto auto auto max(24px, calc((100vw - 1180px) / 2 + 16px));
    padding: 132px 44px 124px;
    background:
        linear-gradient(180deg, rgba(10, 20, 34, 0.92) 0%, rgba(12, 24, 40, 0.9) 54%, rgba(13, 26, 44, 0.5) 72%, rgba(13, 26, 44, 0.14) 86%, rgba(13, 26, 44, 0) 100%),
        linear-gradient(90deg, rgba(10, 20, 34, 0.92) 0%, rgba(13, 26, 44, 0.78) 74%, rgba(13, 26, 44, 0.18) 100%);
}

.hero-slide-topline {
    width: 86px;
    height: 3px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, rgba(208, 42, 34, 0.95), rgba(208, 42, 34, 0.3));
}

.eyebrow {
    margin: 0 0 14px;
    color: #f0b4af;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0;
    font-weight: 800;
}

.hero h1,
.hero-slide-title,
.section h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
}

.hero h1,
.hero-slide-title {
    max-width: 12ch;
    font-size: clamp(2.1rem, 3.6vw, 3.4rem);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-slide-divider {
    width: 74px;
    height: 1px;
    margin: 18px 0 0;
    background: rgba(255, 255, 255, 0.26);
}

.lead {
    max-width: 500px;
    margin: 18px 0 0;
    font-size: 0.9rem;
    line-height: 1.74;
    color: rgba(255, 255, 255, 0.76);
}

.hero-controls {
    position: absolute;
    top: 50%;
    right: max(24px, calc((100vw - 1180px) / 2 + 18px));
    transform: translateY(-50%);
    z-index: 4;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero .button-primary {
    background: rgba(208, 42, 34, 0.34);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.hero .button-primary:hover {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    box-shadow: 0 14px 34px rgba(183, 31, 25, 0.24);
}

.hero-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hero-arrow {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(8, 16, 30, 0.14);
    transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.hero-arrow span {
    font-size: 1.1rem;
    line-height: 1;
}

.hero-arrow:hover {
    background: rgba(208, 42, 34, 0.22);
    border-color: rgba(229, 90, 82, 0.62);
    box-shadow: 0 20px 38px rgba(8, 16, 30, 0.2), 0 0 0 1px rgba(229, 90, 82, 0.18);
    transform: translateY(-1px) scale(1.03);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.metric-card,
.highlight-card,
.timeline-item,
.contact-panel,
.form-shell,
.product-card {
    border-radius: 22px;
}

.metric-card {
    padding: 20px;
    background: rgba(248, 250, 252, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-card strong {
    display: block;
    color: var(--white);
    font-size: 1.55rem;
    font-family: "Space Grotesk", sans-serif;
}

.metric-card span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 247, 238, 0.72);
    font-size: 0.84rem;
}

.metric-row-hero {
    margin-top: 18px;
}

.timeline-section {
    background: transparent;
    padding-top: 18px;
}

.timeline-section .container {
    position: relative;
    z-index: 1;
}

.timeline-section .section-heading {
    margin-bottom: 20px;
}

.hero-slide-shell .lead,
.section p,
.product-copy p,
.timeline-item p,
.contact-list span,
.contact-list a,
.hours p {
    font-size: 0.94rem;
    line-height: 1.68;
    color: var(--muted);
}

.trust-strip {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(20, 36, 59, 0.08);
    background: rgba(248, 250, 252, 0.72);
}

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

.trust-grid p {
    margin: 0;
    font-size: 0.8rem;
    color: #4d5e73;
    text-transform: uppercase;
    text-align: center;
}

.section {
    padding: 92px 0;
}

.home-main .hero {
    padding-bottom: 0;
}

.home-main .hero::after {
    display: none;
}

.home-main .section {
    position: relative;
}

.home-main .hero-shell {
    background: transparent;
    box-shadow: none;
}

.home-main .hero-shell::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 74px;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(180deg, rgba(223, 231, 239, 0) 0%, rgba(220, 228, 236, 0.2) 28%, rgba(216, 225, 235, 0.5) 58%, rgba(214, 223, 233, 0.9) 84%, #d7e0ea 100%);
}

.home-main .section > .container {
    position: relative;
    z-index: 1;
}

.home-main .home-products-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-top: 0;
    padding-top: 64px;
    background: linear-gradient(180deg, #d7e0ea 0%, #e2eaf2 18%, #eaf0f6 34%, #eef3f8 50%, #f4f7fb 68%, #f6f8fc 100%);
}

.home-main .home-products-section::before {
    display: none;
}

.home-main .home-corporate-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 116px;
    background: linear-gradient(180deg, rgba(17, 28, 43, 0.98) 0%, rgba(10, 18, 30, 0.98) 100%);
}

.home-main .home-corporate-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(208, 42, 34, 0.2), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(124, 153, 185, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(8, 17, 29, 0.48) 0%, rgba(8, 17, 29, 0.58) 24%, rgba(8, 17, 29, 0.76) 54%, rgba(8, 17, 29, 0.88) 76%, rgba(18, 31, 48, 0.84) 88%, rgba(62, 82, 107, 0.56) 94%, rgba(198, 211, 225, 0.78) 98%, #e9f0f6 100%),
        url('/assets/images/fuar.jpg');
    background-position: center, center, center, center;
    background-size: auto, auto, auto, cover;
    background-repeat: no-repeat;
    background-attachment: scroll, scroll, scroll, fixed;
    transform: scale(1.06);
}

.home-main .home-corporate-section::after {
    display: none;
}

.home-main .home-showcase-section {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 52px;
    background: linear-gradient(180deg, #e9f0f6 0%, #f1f5fa 22%, #f8fafd 100%);
}

.home-main .home-application-section {
    background: linear-gradient(180deg, #f8fafd 0%, #f3f7fb 20%, #f5f8fc 100%);
}

.blog-feed-section {
    padding-top: 18px;
}

.blog-feed-heading {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin-bottom: 30px;
}

.knowledge-heading {
    margin-bottom: 26px;
}

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

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.blog-filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(21, 36, 59, 0.08);
    background: rgba(255, 255, 255, 0.82);
    color: #425871;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(13, 26, 44, 0.06);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-filter-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(183, 31, 25, 0.14);
    box-shadow: 0 16px 30px rgba(13, 26, 44, 0.08);
}

.blog-filter-chip.is-active {
    color: var(--white);
    border-color: rgba(183, 31, 25, 0.2);
    background: linear-gradient(135deg, #cc2e23 0%, #9e231b 100%);
    box-shadow: 0 18px 34px rgba(183, 31, 25, 0.22);
}

.blog-feed-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.blog-feed-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(21, 36, 59, 0.08);
    box-shadow: 0 18px 40px rgba(13, 26, 44, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-feed-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 36, 59, 0.14);
    box-shadow: 0 24px 46px rgba(13, 26, 44, 0.12);
}

.blog-feed-card.is-hidden {
    display: none;
}

.blog-feed-media {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d8e1ea;
}

.blog-feed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.blog-feed-card:hover .blog-feed-media img {
    transform: scale(1.03);
}

.blog-feed-copy {
    display: grid;
    grid-template-rows: auto auto minmax(3.2em, auto) minmax(6.3em, auto) auto;
    gap: 12px;
    padding: 18px 18px 20px;
    flex: 1;
}

.blog-feed-category-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-feed-category {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(183, 31, 25, 0.12), rgba(183, 31, 25, 0.05));
    border: 1px solid rgba(183, 31, 25, 0.12);
    color: #98251f;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-feed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-feed-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(20, 36, 59, 0.06);
    border: 1px solid rgba(20, 36, 59, 0.08);
    color: #425871;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-feed-copy h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.02rem;
    line-height: 1.22;
    font-family: "Space Grotesk", sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-feed-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-feed-link {
    align-self: end;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 800;
}

.knowledge-index-section,
.knowledge-related-section {
    padding-top: 24px;
}

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

.knowledge-main {
    min-width: 0;
}

.knowledge-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 112px;
}

.knowledge-sidebar-card,
.knowledge-empty-state {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(21, 36, 59, 0.08);
    box-shadow: 0 20px 46px rgba(13, 26, 44, 0.08);
}

.knowledge-sidebar-card {
    padding: 22px;
}

.knowledge-sidebar-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.knowledge-sidebar-head span {
    color: #7f92a8;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.knowledge-sidebar-head h3,
.knowledge-empty-state h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.12rem;
    font-family: "Space Grotesk", sans-serif;
}

.knowledge-category-list,
.knowledge-post-list {
    display: grid;
    gap: 10px;
}

.knowledge-category-item,
.knowledge-post-item {
    display: grid;
    gap: 10px;
    border-radius: 18px;
    border: 1px solid rgba(21, 36, 59, 0.08);
    background: rgba(244, 247, 251, 0.84);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.knowledge-category-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 14px 16px;
}

.knowledge-category-item:hover,
.knowledge-post-item:hover {
    transform: translateY(-1px);
    border-color: rgba(183, 31, 25, 0.14);
    box-shadow: 0 16px 30px rgba(13, 26, 44, 0.08);
}

.knowledge-category-item.is-active {
    background: linear-gradient(135deg, rgba(183, 31, 25, 0.08), rgba(183, 31, 25, 0.03));
    border-color: rgba(183, 31, 25, 0.16);
}

.knowledge-category-item span {
    color: var(--navy);
    font-weight: 700;
}

.knowledge-category-item strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(20, 36, 59, 0.08);
    color: #425871;
    font-size: 0.82rem;
}

.knowledge-post-item {
    grid-template-columns: 84px minmax(0, 1fr);
    align-items: center;
    padding: 10px;
}

.knowledge-post-item img {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    object-fit: cover;
}

.knowledge-post-item div {
    display: grid;
    gap: 6px;
}

.knowledge-post-item span {
    color: #8d251f;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.knowledge-post-item strong {
    color: var(--navy);
    font-size: 0.92rem;
    line-height: 1.45;
}

.knowledge-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.knowledge-active-filter {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(20, 36, 59, 0.07), rgba(20, 36, 59, 0.03));
    color: #425871;
    font-size: 0.8rem;
    font-weight: 700;
}

.knowledge-clear-filter {
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 800;
}

.knowledge-empty-state {
    padding: 26px;
}

.knowledge-empty-state p {
    margin: 10px 0 0;
    color: var(--muted);
}

.home-main .home-corporate-section > .container {
    position: relative;
    z-index: 1;
}

.home-main .cta-band {
    padding-top: 28px;
    background: linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(183, 31, 25, 0.14), transparent 30%),
        linear-gradient(180deg, #14243b 0%, #0d1a2c 100%);
}

.section-dark .section-intro h2,
.section-dark .section-heading h2,
.section-dark .timeline-item h3,
.section-dark .timeline-item span,
.section-dark .highlight-card p {
    color: var(--white);
}

.section-dark .section-intro p,
.section-dark .timeline-item p {
    color: rgba(255, 247, 238, 0.74);
}

.section-grid,
.showcase-grid,
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.section-intro h2,
.section-heading h2,
.showcase-copy h2,
.contact-panel h2 {
    font-size: clamp(1.85rem, 3.5vw, 3rem);
}

.highlight-stack,
.timeline,
.product-grid {
    display: grid;
    gap: 18px;
}

.section-heading-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.highlight-card {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 16px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(7, 14, 26, 0.18);
}

.highlight-card span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 8px;
    background: linear-gradient(135deg, #e55a52 0%, #b71f19 100%);
}

.highlight-card p {
    margin: 0;
}

.section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

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

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

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.78);
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(13, 26, 44, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(13, 26, 44, 0.12);
}

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

.product-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
}

.product-copy h3,
.timeline-item h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    font-family: "Space Grotesk", sans-serif;
}

.product-copy p {
    margin-bottom: 0;
}

.product-card .product-actions {
    margin-top: auto;
    padding-top: 18px;
}

.product-actions {
    margin-top: 18px;
}

.product-button {
    min-height: 44px;
    padding-inline: 18px;
}

.product-card .product-button {
    width: 100%;
    justify-content: center;
}

.product-card .product-button:hover {
    color: var(--white);
    border-color: rgba(208, 42, 34, 0.82);
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
    box-shadow: 0 14px 30px rgba(183, 31, 25, 0.18);
}

.showcase {
    padding-top: 18px;
}

.showcase-media {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.showcase-media img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.application-showcase {
    padding-top: 10px;
}

.application-showcase-heading {
    max-width: 720px;
}

.application-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

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

.application-showcase-card {
    position: relative;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    border-radius: 24px;
    isolation: isolate;
    background: #0f1d31;
    box-shadow: 0 20px 50px rgba(13, 26, 44, 0.12);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.application-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px rgba(13, 26, 44, 0.18);
}

.home-products-section .application-showcase-card {
    min-height: 390px;
}

.application-showcase-media,
.application-showcase-media img,
.application-showcase-overlay {
    position: absolute;
    inset: 0;
}

.application-showcase-media {
    margin: 0;
}

.application-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.application-showcase-card:hover .application-showcase-media img {
    transform: scale(1.04);
}

.application-showcase-overlay {
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.08) 0%, rgba(8, 16, 28, 0.56) 44%, rgba(8, 16, 28, 0.94) 100%),
        linear-gradient(135deg, rgba(208, 42, 34, 0.12) 0%, rgba(208, 42, 34, 0) 52%);
}

.application-showcase-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: 28px;
}

.home-products-section .application-showcase-copy {
    display: grid;
    grid-template-rows: minmax(2.8em, auto) minmax(5.2em, auto) auto;
    align-content: end;
    gap: 10px;
    padding: 24px;
}

.application-showcase-tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.application-showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.application-showcase-copy h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.28rem;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.08;
}

.home-products-section .application-showcase-copy h3 {
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    align-self: end;
}

.application-showcase-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.home-products-section .application-showcase-copy p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.1em;
    align-self: start;
}

.home-products-section .application-showcase-link {
    margin-top: auto;
    padding-top: 4px;
    align-self: start;
}

.products-page-showcase .application-showcase-card {
    min-height: 390px;
}

.products-page-showcase .application-showcase-copy {
    display: grid;
    grid-template-rows: minmax(2.8em, auto) minmax(5.2em, auto) auto;
    align-content: end;
    gap: 10px;
    padding: 24px;
}

.products-page-showcase .application-showcase-copy h3 {
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    align-self: end;
}

.products-page-showcase .application-showcase-copy p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 5.1em;
    align-self: start;
}

.products-page-showcase .application-showcase-link {
    margin-top: auto;
    padding-top: 4px;
    align-self: start;
}

.application-showcase-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    color: #f0b4af;
    font-size: 0.84rem;
    font-weight: 700;
}

.application-showcase-card:hover .application-showcase-link {
    color: var(--white);
}

.blog-post-section {
    padding-top: 34px;
}

.article-hero {
    position: relative;
    padding: 132px 0 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 16%, rgba(208, 42, 34, 0.08), transparent 20%),
        radial-gradient(circle at 86% 18%, rgba(20, 36, 59, 0.12), transparent 18%),
        linear-gradient(180deg, #f7f9fc 0%, #edf2f7 52%, #e7edf4 100%);
}

.article-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 30px;
    align-items: end;
}

.article-hero-copy {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.article-hero-back {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 36, 59, 0.08);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(13, 26, 44, 0.06);
}

.article-hero-back:hover {
    transform: translateY(-1px);
    border-color: rgba(183, 31, 25, 0.14);
    box-shadow: 0 16px 30px rgba(13, 26, 44, 0.08);
}

.article-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.article-hero-meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(20, 36, 59, 0.06);
    border: 1px solid rgba(21, 36, 59, 0.08);
    color: #50647c;
    font-size: 0.8rem;
    font-weight: 800;
}

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

.article-hero-heading h1 {
    margin: 0;
    max-width: 12ch;
    color: var(--navy);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    line-height: 1.02;
}

.article-hero-lead {
    max-width: 60ch;
    margin: 0;
    color: #55697f;
    font-size: 1rem;
    line-height: 1.8;
}

.article-hero-visual {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(21, 36, 59, 0.08);
    box-shadow: 0 24px 48px rgba(13, 26, 44, 0.12);
    background: rgba(255, 255, 255, 0.72);
}

.article-hero-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-post-article {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 44px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 253, 0.96));
    box-shadow: 0 28px 56px rgba(13, 26, 44, 0.08);
    border: 1px solid rgba(21, 36, 59, 0.06);
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.blog-post-category-row {
    margin-bottom: 16px;
}

.blog-post-category {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(183, 31, 25, 0.12), rgba(183, 31, 25, 0.06));
    border: 1px solid rgba(183, 31, 25, 0.14);
    color: #9d261f;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-post-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(21, 36, 59, 0.06), rgba(21, 36, 59, 0.03));
    border: 1px solid rgba(21, 36, 59, 0.1);
    color: #32465f;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(13, 26, 44, 0.04);
}

a.blog-post-category,
a.blog-post-tag {
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

a.blog-post-category:hover,
a.blog-post-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(13, 26, 44, 0.08);
}

.blog-post-body {
    display: grid;
    gap: 20px;
}

.blog-post-body p {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.9;
    color: #33465f;
}

.knowledge-article-card {
    max-width: none;
}

.blog-post-footer {
    display: grid;
    gap: 22px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(21, 36, 59, 0.1);
}

.blog-post-footer-block {
    display: grid;
    gap: 14px;
}

.blog-post-footer-block h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    font-family: "Space Grotesk", sans-serif;
}

.blog-post-share-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-post-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(21, 36, 59, 0.08);
    color: var(--navy);
    box-shadow: 0 12px 26px rgba(13, 26, 44, 0.05);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.blog-post-share-link:hover {
    transform: translateY(-1px);
    border-color: rgba(183, 31, 25, 0.16);
    box-shadow: 0 16px 30px rgba(13, 26, 44, 0.08);
}

.blog-post-share-link svg {
    width: 18px;
    height: 18px;
    display: block;
}

.timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -82px;
    position: relative;
    z-index: 2;
}

.timeline-parallax {
    position: relative;
    width: 100vw;
    min-height: 320px;
    margin: 0 0 28px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 20, 34, 0.28), rgba(10, 20, 34, 0.72)),
        url("./images/hero-drill.jpg") center 28% / cover fixed;
    box-shadow: var(--shadow);
}

.timeline-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 34, 0.08), rgba(10, 20, 34, 0.48));
}

.timeline-parallax-copy {
    position: absolute;
    right: max(24px, calc((100vw - 1180px) / 2 + 16px));
    bottom: 24px;
    z-index: 1;
    display: grid;
    justify-items: end;
    gap: 8px;
}

.timeline-parallax-copy span {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.timeline-parallax-copy p {
    margin: 0;
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
}

.timeline-item {
    padding: 28px;
    background: rgba(248, 250, 252, 0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline-item span {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 1.7rem;
    font-family: "Space Grotesk", sans-serif;
}

.contact-panel,
.form-shell {
    padding: 28px;
    background: rgba(248, 250, 252, 0.78);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 26, 44, 0.08);
}

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

.contact-list li {
    display: grid;
    gap: 6px;
}

.contact-list strong,
.hours p,
.social-links a,
.contact-form span {
    font-size: 0.84rem;
}

.hours {
    display: grid;
    gap: 4px;
    margin-bottom: 22px;
}

.hours p,
.social-links a {
    margin: 0;
}

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

.social-links a {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.flash-success {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #123b67;
    background: #dce8f6;
}

.contact-form-status {
    margin-bottom: 4px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-form-status.is-success {
    color: #155239;
    background: #e2f4ea;
    border-color: rgba(21, 82, 57, 0.12);
}

.contact-form-status.is-error {
    color: #7c201c;
    background: #f8e4e2;
    border-color: rgba(124, 32, 28, 0.14);
}

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

.contact-form label {
    display: grid;
    gap: 8px;
}

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

.contact-form-honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(33, 27, 22, 0.12);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    font-size: 0.94rem;
    color: var(--text);
    background: var(--surface);
}

.contact-form small {
    color: #b71f19;
}

.contact-form small:empty {
    display: none;
}

.contact-form button[disabled] {
    opacity: 0.78;
    cursor: wait;
    transform: none;
}

.site-footer {
    background:
        linear-gradient(180deg, #14243b 0%, #0d1a2c 100%);
    color: rgba(255, 247, 238, 0.8);
    padding: 52px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.9fr 1fr 1fr 0.95fr;
    gap: 26px;
    align-items: start;
}

.footer-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(7, 15, 28, 0.22);
}

.footer-brand img {
    width: min(100%, 190px);
    margin-bottom: 0;
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom p,
.footer-bottom a {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 247, 238, 0.74);
}

.footer-column {
    display: grid;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 4px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    color: var(--white);
}

.footer-column-legal a {
    transition: color 160ms ease;
}

.footer-column-legal a:hover {
    color: var(--white);
}

.footer-social-inline {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.footer-social-inline span {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
}

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

.footer-social-links a,
.footer-news-link {
    display: inline-flex;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.page-hero-legal {
    min-height: 420px;
}

.legal-page-section {
    padding-top: 24px;
}

.legal-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.7fr);
    gap: 28px;
    align-items: start;
}

.legal-page-article,
.legal-page-card {
    border: 1px solid rgba(18, 35, 57, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 60px rgba(13, 26, 44, 0.08);
    backdrop-filter: blur(18px);
}

.legal-page-article {
    padding: 32px;
}

.legal-page-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.legal-page-card {
    padding: 22px;
}

.legal-page-card h2,
.legal-content-block h2 {
    margin: 0 0 14px;
    font-family: "Space Grotesk", sans-serif;
    color: var(--navy);
}

.legal-page-card a,
.legal-page-card p,
.legal-content-block p,
.legal-content-block li {
    color: var(--muted);
    line-height: 1.85;
}

.legal-page-links {
    display: grid;
    gap: 10px;
}

.legal-page-links a {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(21, 36, 59, 0.08);
}

.legal-note {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(183, 31, 25, 0.06);
    border: 1px solid rgba(183, 31, 25, 0.12);
}

.legal-note strong,
.legal-note p {
    margin: 0;
}

.legal-content-block + .legal-content-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(21, 36, 59, 0.08);
}

.legal-content-block ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

body.cookie-modal-open {
    overflow: hidden;
}

.cookie-consent-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding: 16px;
}

.cookie-consent-bar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(21, 36, 59, 0.08);
    box-shadow: 0 28px 70px rgba(13, 26, 44, 0.18);
    backdrop-filter: blur(18px);
}

.cookie-consent-bar__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.cookie-consent-bar__text a {
    color: var(--navy);
    font-weight: 700;
    margin-left: 6px;
}

.cookie-consent-bar__actions,
.cookie-consent-modal__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.cookie-consent-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 30, 0.48);
}

.cookie-consent-modal__dialog {
    position: relative;
    width: min(720px, calc(100% - 32px));
    margin: 7vh auto 0;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 251, 246, 0.98);
    border: 1px solid rgba(21, 36, 59, 0.08);
    box-shadow: 0 34px 80px rgba(13, 26, 44, 0.24);
}

.cookie-consent-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(21, 36, 59, 0.08);
    color: var(--navy);
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-consent-modal__header h2 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", sans-serif;
    color: var(--navy);
}

.cookie-consent-modal__header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.cookie-consent-modal__categories {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.cookie-consent-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(21, 36, 59, 0.08);
}

.cookie-consent-option.is-required {
    background: rgba(20, 36, 59, 0.06);
}

.cookie-consent-option__copy h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: var(--navy);
}

.cookie-consent-option__copy p,
.cookie-consent-option__control span {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.cookie-consent-option__control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-option__control input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-consent-switch {
    position: relative;
    width: 50px;
    height: 30px;
    border-radius: 999px;
    background: rgba(21, 36, 59, 0.18);
    transition: background-color 160ms ease;
}

.cookie-consent-switch::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(12, 22, 36, 0.18);
    transition: transform 160ms ease;
}

.cookie-consent-option__control input:checked + .cookie-consent-switch {
    background: rgba(183, 31, 25, 0.82);
}

.cookie-consent-option__control input:checked + .cookie-consent-switch::after {
    transform: translateX(20px);
}

.footer-social-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-news-link {
    line-height: 1.65;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-news-link:hover {
    color: var(--white);
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px 0 12px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(135deg, #20c863 0%, #159746 100%);
    box-shadow: 0 16px 34px rgba(19, 127, 61, 0.24), 0 8px 18px rgba(15, 30, 56, 0.16);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    animation: whatsapp-float-breathe 3.4s ease-in-out infinite;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.22) 0%, rgba(37, 211, 102, 0) 72%);
    opacity: 0.6;
    animation: whatsapp-float-halo 3.4s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 38px rgba(19, 127, 61, 0.3), 0 10px 22px rgba(15, 30, 56, 0.18);
}

.whatsapp-float:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.22),
        0 18px 38px rgba(19, 127, 61, 0.3),
        0 10px 22px rgba(15, 30, 56, 0.18);
}

.whatsapp-float-text {
    font-size: 0.94rem;
    letter-spacing: 0;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.whatsapp-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@keyframes whatsapp-float-breathe {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-1px) scale(1.015);
    }
}

@keyframes whatsapp-float-halo {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.98);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float::before,
    .cookie-consent-switch,
    .cookie-consent-switch::after {
        animation: none;
        transition: none;
    }

    .whatsapp-float:hover,
    .whatsapp-float:focus-visible,
    .button:hover,
    .nav-cta:hover {
        transform: none;
    }
}

.stat-grid,
.value-grid,
.benefit-grid,
.info-grid {
    display: grid;
    gap: 18px;
}

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

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

.stat-card,
.value-card,
.benefit-card,
.info-card,
.support-panel,
.detail-panel {
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.78);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 26, 44, 0.08);
}

.stat-card,
.value-card,
.benefit-card,
.info-card,
.support-panel,
.detail-panel {
    padding: 26px;
}

.stat-card strong,
.info-card strong {
    display: block;
    color: var(--navy);
    font-size: 1.7rem;
    font-family: "Space Grotesk", sans-serif;
}

.stat-card span,
.info-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.value-card h3,
.benefit-card h3,
.support-panel h3 {
    margin: 0 0 10px;
    font-size: 1.04rem;
    font-family: "Space Grotesk", sans-serif;
    color: var(--navy);
}

.value-card p,
.benefit-card p,
.support-panel p,
.cta-band-copy p,
.section-heading p {
    margin-top: 0;
}

.support-panel {
    align-self: start;
}

.support-list,
.range-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.support-list li,
.range-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.support-list li::before,
.range-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e55a52 0%, #b71f19 100%);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.detail-panel {
    display: grid;
    gap: 24px;
    background:
        linear-gradient(180deg, rgba(20, 36, 59, 0.96) 0%, rgba(13, 26, 44, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.detail-panel-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-panel .range-list {
    margin-top: 0;
}

.detail-panel .range-list li {
    color: rgba(255, 255, 255, 0.78);
}

.application-grid {
    display: grid;
    gap: 12px;
}

.application-card {
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(248, 250, 252, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-grid {
    margin-top: -86px;
    position: relative;
    z-index: 2;
}

.info-card {
    backdrop-filter: blur(12px);
}

.page-hero-contact h1 {
    max-width: 15ch;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
}

.page-hero-contact .lead {
    max-width: 58ch;
    font-size: 0.88rem;
}

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

.contact-page-section {
    padding-top: 26px;
}

.contact-page-section .contact-panel,
.contact-page-section .form-shell {
    display: grid;
    gap: 22px;
    min-height: 100%;
}

.contact-page-section .form-shell {
    align-self: start;
    gap: 16px;
    padding: 24px;
}

.contact-panel-header,
.form-shell-header,
.contact-map-copy {
    display: grid;
    gap: 12px;
}

.contact-panel-header h2,
.form-shell-header h2,
.contact-map-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    line-height: 1.12;
}

.contact-panel-lead,
.form-shell-header p,
.contact-map-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.72;
}

.contact-list {
    margin: 0;
}

.contact-list li {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
}

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

.contact-list a {
    color: var(--navy);
    font-weight: 700;
}

.contact-direct-actions,
.contact-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-direct-actions .button,
.contact-map-actions .button {
    width: auto;
    min-width: 188px;
}

.form-shell-header {
    gap: 8px;
}

.contact-subtitle {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 0.84rem;
}

.hours {
    padding: 20px 22px;
    margin-bottom: 0;
    border-radius: 18px;
    background: rgba(20, 36, 59, 0.04);
    border: 1px solid var(--line);
}

.social-links a {
    background: rgba(255, 255, 255, 0.82);
}

.contact-map-wrap {
    margin-top: 28px;
}

.contact-map-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(248, 250, 252, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 26, 44, 0.08);
}

.contact-map-copy {
    align-content: center;
}

.contact-map-address {
    color: var(--navy);
    font-weight: 700;
}

.contact-map-frame {
    min-height: 360px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(20, 36, 59, 0.08);
    box-shadow: 0 16px 34px rgba(13, 26, 44, 0.12);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.contact-form {
    gap: 12px;
}

.contact-form label {
    gap: 6px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 14px;
}

.contact-form textarea {
    min-height: 118px;
}

.contact-consent-field {
    gap: 10px;
}

.contact-consent-control {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
}

.contact-consent-control input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
}

.contact-consent-control span:last-child {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--muted);
}

.contact-consent-control a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.error-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(27, 53, 89, 0.18), transparent 48%),
        linear-gradient(180deg, #f6f8fb 0%, #edf2f7 100%);
}

.error-page {
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 48px 0;
}

.error-shell {
    display: grid;
    gap: 18px;
    max-width: 760px;
    padding: 42px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.error-shell h1 {
    margin: 0;
    max-width: 14ch;
    color: var(--navy);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 0.96;
}

.error-copy {
    margin: 0;
    max-width: 60ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 6px;
}

.cta-band {
    padding-top: 10px;
}

.cta-band-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(208, 42, 34, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(20, 36, 59, 0.98) 0%, rgba(13, 26, 44, 0.98) 100%);
    box-shadow: var(--shadow);
}

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

.cta-band-copy p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

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

.page-hero-product h1 {
    max-width: 12ch;
}

.product-detail-shell,
.product-detail-content {
    display: grid;
    gap: 28px;
}

.product-detail-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.product-item-layout {
    display: grid;
    gap: 28px;
}

.product-detail-shell-item {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.product-item-card {
    height: 100%;
}

.product-detail-shell-item .product-detail-media {
    display: grid;
    gap: 18px;
}

.product-detail-shell-item .product-detail-figure {
    height: 100%;
}

.product-detail-shell-item .product-detail-figure img {
    min-height: 420px;
    height: 100%;
}

.product-detail-shell-item .product-summary-card {
    align-content: space-between;
}

.product-item-actions .button {
    flex: 1 1 220px;
    justify-content: center;
}

.product-spec-card-wide {
    padding: 30px 32px;
}

.detail-main-card {
    display: grid;
    gap: 24px;
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 26, 44, 0.08);
}

.detail-grid-item {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    align-items: stretch;
}

.detail-grid-item .detail-panel {
    height: 100%;
}

.group-overview-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 36px;
    align-items: center;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(241, 245, 249, 0.9) 100%);
    border: 1px solid var(--line);
    box-shadow: 0 24px 56px rgba(13, 26, 44, 0.08);
}

.group-overview-media,
.group-overview-content {
    display: grid;
    gap: 18px;
}

.group-overview-shell .product-detail-figure {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 44px rgba(13, 26, 44, 0.1);
}

.group-overview-content {
    align-content: center;
}

.group-overview-content .section-heading {
    gap: 14px;
}

.group-overview-content .product-summary-name {
    margin-top: -2px;
}

.group-overview-content .product-summary-actions {
    margin-top: 8px;
}

.product-detail-media,
.product-summary-card,
.product-spec-card {
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 26, 44, 0.08);
}

.product-detail-media,
.product-summary-card,
.product-spec-card {
    padding: 28px;
}

.product-media-label,
.product-summary-label {
    color: var(--muted);
}

.product-detail-figure {
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 16px 36px rgba(13, 26, 44, 0.08);
}

.product-detail-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-summary-card,
.product-spec-card {
    display: grid;
    gap: 18px;
}

.product-summary-heading,
.product-spec-heading {
    margin-bottom: 0;
}

.product-summary-label {
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-summary-name {
    margin: 0;
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.35;
}

.product-summary-actions {
    margin-top: 4px;
}

.button-whatsapp {
    color: var(--white);
    background: linear-gradient(135deg, #20c15a 0%, #159746 100%);
    box-shadow: 0 14px 34px rgba(17, 108, 51, 0.22);
}

.product-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.product-spec-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(21, 36, 59, 0.1);
}

.product-spec-table th,
.product-spec-table td {
    padding: 16px 0;
    vertical-align: top;
}

.product-spec-table th {
    width: 220px;
    padding-right: 20px;
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: left;
}

.product-spec-table td {
    color: var(--muted);
    line-height: 1.7;
}

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

.product-spec-list li {
    position: relative;
    padding-left: 18px;
}

.product-spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e55a52 0%, #b71f19 100%);
}

.group-products-section {
    padding-top: 10px;
}

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

.group-product-card {
    display: grid;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(248, 250, 252, 0.78);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(13, 26, 44, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.group-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(13, 26, 44, 0.12);
}

.group-product-media {
    margin: 0;
    background: var(--surface);
}

.group-product-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.group-product-copy {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.group-product-tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--brand);
    background: rgba(183, 31, 25, 0.08);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.group-product-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.02rem;
    font-family: "Space Grotesk", sans-serif;
}

.group-product-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.group-product-link-text {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 800;
}

@media (max-width: 1080px) {
    .article-hero-shell {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .article-hero-heading h1 {
        max-width: 14ch;
    }

    .home-main .home-corporate-section::before {
        background-attachment: scroll, scroll, scroll, scroll;
        transform: scale(1.02);
    }

    .hero-grid,
    .section-grid,
    .showcase-grid,
    .contact-grid,
    .product-grid,
    .timeline,
    .metric-row,
    .trust-grid,
    .value-grid,
    .benefit-grid,
    .info-grid,
    .detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero-controls {
        position: static;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 18px;
    }

    .hero-shell {
        min-height: auto;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .page-hero .container {
        padding-top: 156px;
    }

    .hero-slider {
        min-height: 620px;
    }

    .timeline-parallax {
        min-height: 280px;
        background-attachment: scroll;
    }

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

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

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

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

    .knowledge-sidebar {
        position: static;
    }

    .legal-page-grid,
    .cookie-consent-bar__inner {
        grid-template-columns: 1fr;
    }

    .legal-page-aside {
        position: static;
    }

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

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

    .product-detail-shell-item .product-detail-figure img {
        min-height: 320px;
    }

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

    .group-overview-shell {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 26px;
    }

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

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

@media (max-width: 720px) {
    .article-hero {
        padding: 118px 0 24px;
    }

    .article-hero-heading h1 {
        max-width: none;
        font-size: 2.2rem;
    }

    .article-hero-lead {
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .blog-post-article {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .nav-shell,
    .hero-actions,
    .social-links,
    .contact-form,
    .hero-grid,
    .section-grid,
    .showcase-grid,
    .contact-grid,
    .product-grid,
    .timeline,
    .metric-row,
    .trust-grid,
    .stat-grid,
    .value-grid,
    .benefit-grid,
    .info-grid,
    .detail-grid,
    .section-heading-row,
    .cta-band-shell {
        grid-template-columns: 1fr;
    }

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

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

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

    .blog-feed-grid {
        grid-template-columns: 1fr;
    }

    .application-showcase-card {
        min-height: 320px;
    }

    .blog-feed-copy {
        grid-template-rows: auto auto auto auto auto;
    }

    .knowledge-post-item {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .knowledge-post-item img {
        width: 72px;
        height: 72px;
    }

    .product-spec-table,
    .product-spec-table tbody,
    .product-spec-table tr,
    .product-spec-table th,
    .product-spec-table td {
        display: block;
        width: 100%;
    }

    .product-spec-table th {
        padding-bottom: 6px;
    }

    .product-spec-table td {
        padding-top: 0;
    }

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

    .legal-page-article,
    .legal-page-card,
    .cookie-consent-modal__dialog {
        padding: 22px;
    }

    .cookie-consent-modal__dialog {
        width: calc(100% - 20px);
        margin-top: 5vh;
    }

    .cookie-consent-bar {
        padding: 10px;
    }

    .cookie-consent-option {
        grid-template-columns: 1fr;
    }

    .nav-shell {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .brand img {
        width: 150px;
    }

    .nav-tools {
        width: auto;
        display: flex;
    }

    .nav-tools .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 0;
    }

    .page-hero {
        min-height: 380px;
    }

    .page-hero .container {
        min-height: 380px;
        padding: 144px 0 48px;
    }

    .page-hero h1 {
        max-width: none;
        font-size: 2.35rem;
    }

    .hero h1,
    .hero-slide-title {
        max-width: none;
        font-size: 2rem;
    }

    .hero-slider {
        min-height: 560px;
    }

    .hero-slide-shell {
        width: calc(100% - 32px);
        margin: auto 16px;
        padding: 98px 22px 108px;
    }

    .hero-controls {
        position: static;
        transform: none;
    }

    .hero-arrows {
        gap: 10px;
    }

    .hero-arrow {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .section,
    .section-dark {
        padding: 72px 0;
    }

    .home-main .home-products-section {
        padding-top: 52px;
    }

    .home-main .hero-shell::after {
        height: 56px;
    }

    .info-grid {
        margin-top: -48px;
    }

    .contact-form {
        display: grid;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .contact-direct-actions .button,
    .contact-map-actions .button {
        width: 100%;
        min-width: 0;
    }

    .timeline-parallax {
        min-height: 220px;
        border-radius: 0;
        background-position: center;
        background-attachment: scroll;
    }

    .timeline-parallax-copy {
        right: 18px;
        bottom: 18px;
    }

    .timeline {
        margin-top: 0;
    }

    .cta-band-shell {
        padding: 26px;
    }

    .contact-map-shell {
        padding: 22px;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 300px;
    }

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        gap: 8px;
        min-height: 48px;
        padding: 0 14px 0 10px;
        box-shadow: 0 12px 24px rgba(19, 127, 61, 0.24), 0 6px 14px rgba(15, 30, 56, 0.14);
    }

    .whatsapp-float-text {
        font-size: 0.86rem;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-icon svg {
        width: 16px;
        height: 16px;
    }
}
