﻿:root {
    --navy: #081626;
    --steel: #262d36;
    --graphite: #3b414a;
    --silver: #e7eaee;
    --line: #d7dde4;
    --white: #ffffff;
    --accent: #f37021;
    --red: #d84a3a;
    --text: #202733;
    --muted: #657182;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.top-strip { background: var(--navy); color: #dce4ef; font-size: 13px; }
.top-strip__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.top-strip a { margin-left: 16px; color: #fff; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.nav-shell { height: 78px; display: flex; align-items: center; gap: 24px; }
.brand img { width: 172px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; font-weight: 700; color: var(--steel); }
.main-nav a { padding: 12px 4px; }
.main-nav a:hover { color: var(--accent); }
.quote-link, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: 800;
    border: 1px solid transparent;
}
.quote-link, .btn-primary { background: var(--accent); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: var(--navy); border-radius: 6px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; }
.hero {
    min-height: 640px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 42px; align-items: end; padding: 72px 0; }
.eyebrow { display: inline-block; color: var(--accent); font-weight: 900; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.hero h1, .page-hero h1 { font-size: 52px; line-height: 1.08; margin: 0 0 20px; max-width: 860px; }
.hero p, .page-hero p { font-size: 19px; max-width: 760px; color: #dbe3ee; margin: 0; }
.hero__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__stats {
    display: grid;
    gap: 12px;
}
.hero__stats div, .value-grid div {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 18px;
}
.hero__stats strong, .value-grid strong { display: block; font-size: 28px; line-height: 1; }
.hero__stats span, .value-grid span { color: #d5dde8; }
.section { padding: 84px 0; }
.section-muted { background: #f4f6f8; }
.section-head { margin-bottom: 28px; }
.section-head h2, .split-band h2 { font-size: 38px; line-height: 1.16; margin: 0; color: var(--navy); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.category-card, .news-card, .reference-card, .catalog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.category-card:hover, .news-card:hover, .reference-card:hover, .catalog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(243,112,33,.45);
    box-shadow: 0 18px 36px rgba(8,22,38,.12);
}
.category-card img { height: 150px; width: 100%; object-fit: contain; background: #f7f8fa; border-radius: 6px; padding: 18px; }
.category-card h3, .category-card h2, .product-card h3, .product-card h2, .news-card h3, .news-card h2 { color: var(--navy); line-height: 1.24; }
.category-card p, .product-card p, .news-card p, .reference-card p { color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.product-card img { width: 100%; height: 190px; object-fit: contain; background: #f7f8fa; padding: 18px; }
.product-card div { padding: 18px; }
.product-card span, .news-card span, .reference-card span, .gallery-grid span { color: var(--accent); font-weight: 800; font-size: 13px; }
.product-card a, .news-card a { color: var(--accent); font-weight: 900; }
.split-band { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 42px; align-items: center; padding: 46px; background: var(--navy); color: #fff; border-radius: 8px; }
.split-band h2 { color: #fff; }
.split-band p { color: #dbe3ee; font-size: 18px; }
.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sector-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.sector-grid a { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; font-weight: 800; color: var(--navy); }
.logo-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: center; }
.logo-strip img { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; height: 110px; width: 100%; object-fit: contain; }
.cta-band { background: var(--steel); color: #fff; padding: 56px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-band h2 { max-width: 700px; font-size: 34px; line-height: 1.15; margin: 0; }
.site-footer { background: #08111d; color: #dbe3ee; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr; gap: 32px; }
.footer-brand img { width: 170px; background: #fff; border-radius: 6px; padding: 8px; }
.site-footer h2 { color: #fff; font-size: 17px; margin: 0 0 12px; }
.site-footer a { display: block; margin: 7px 0; color: #dbe3ee; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.page-hero { background: linear-gradient(110deg, var(--navy), var(--steel)); color: #fff; padding: 78px 0 58px; }
.breadcrumb { display: flex; gap: 8px; color: #bfc9d6; margin-bottom: 18px; font-size: 14px; flex-wrap: wrap; }
.breadcrumb a::after { content: "/"; margin-left: 8px; color: #748196; }
.content-layout, .product-detail, .contact-layout, .blog-layout, .products-layout { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 32px; align-items: start; }
.content-image { width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 18px; background: #f7f8fa; object-fit: contain; }
.rich-content { font-size: 18px; }
.rich-content h2, .rich-content h3 { color: var(--navy); }
.side-nav { position: sticky; top: 120px; display: grid; gap: 8px; }
.side-nav a, .side-nav span { border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; background: #fff; font-weight: 800; }
.feature-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-columns div { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.gallery-panel { border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.main-product-image { width: 100%; height: 360px; object-fit: contain; background: #f7f8fa; border-radius: 6px; }
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumb-row img { height: 80px; object-fit: contain; background: #f7f8fa; border-radius: 6px; padding: 8px; }
.detail-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.detail-actions .btn-ghost { color: var(--navy); border-color: var(--line); }
.reference-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.reference-card img { height: 110px; width: 100%; object-fit: contain; background: #f7f8fa; border-radius: 6px; padding: 14px; }
.catalog-card .btn { margin-top: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-grid figure { margin: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
.gallery-grid img { width: 100%; height: 240px; object-fit: contain; background: #f7f8fa; padding: 16px; }
.gallery-grid figcaption { padding: 16px; font-weight: 800; color: var(--navy); }
.contact-panel, .form-panel, .narrow-form { border: 1px solid var(--line); border-radius: 8px; padding: 24px; background: #fff; }
.contact-panel a { display: block; margin: 10px 0; color: var(--accent); font-weight: 800; }
.form-panel form, .narrow-form form { display: grid; gap: 12px; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 13px 14px; font: inherit; color: var(--text); }
textarea { resize: vertical; }
.alert { border: 1px solid rgba(45,148,93,.32); background: #edf8f2; color: #1d7044; border-radius: 6px; padding: 12px 14px; margin-bottom: 14px; }
.map-frame { margin-top: 28px; }
.map-frame iframe { width: 100%; min-height: 360px; border: 0; border-radius: 8px; }
.check-line { display: flex; align-items: flex-start; gap: 10px; }
.check-line input { width: auto; margin-top: 6px; }
.narrow-form { max-width: 760px; margin: 0 auto; }

@media (max-width: 1024px) {
    .hero__inner, .split-band, .content-layout, .product-detail, .contact-layout, .blog-layout, .products-layout { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .card-grid, .sector-grid, .reference-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .side-nav { position: static; }
}

@media (max-width: 760px) {
    .top-strip__inner { display: none; }
    .nav-shell { height: 70px; }
    .brand img { width: 140px; }
    .nav-toggle { display: block; margin-left: auto; }
    .main-nav { display: none; position: absolute; left: 16px; right: 16px; top: 70px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 12px; box-shadow: 0 18px 32px rgba(8,22,38,.16); }
    .main-nav.is-open { display: grid; }
    .quote-link { display: none; }
    .hero { min-height: 560px; }
    .hero h1, .page-hero h1 { font-size: 34px; }
    .hero p, .page-hero p { font-size: 16px; }
    .section { padding: 56px 0; }
    .section-head h2, .split-band h2, .cta-band h2 { font-size: 28px; }
    .product-grid, .card-grid, .sector-grid, .reference-grid, .gallery-grid, .feature-columns, .logo-strip, .footer-grid, .value-grid { grid-template-columns: 1fr; }
    .cta-band .container, .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.hero-slider {
    position: relative;
    min-height: calc(100vh - 116px);
    overflow: hidden;
    background: var(--navy);
    color: #fff;
}
.hero-slider__track, .hero-slide, .hero-slide picture {
    position: absolute;
    inset: 0;
}
.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 7s ease;
}
.hero-slide.is-active .hero-slide__image {
    transform: scale(1);
}
.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8,22,38,.94) 0%, rgba(8,22,38,.76) 44%, rgba(8,22,38,.34) 100%),
        linear-gradient(0deg, rgba(8,22,38,.72), rgba(8,22,38,.12));
}
.hero-slide__content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 116px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 104px;
}
.hero-slide__content h1 {
    max-width: 900px;
    margin: 0 0 20px;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}
.hero-slide__content p {
    max-width: 720px;
    margin: 0 0 30px;
    color: #e2e8f0;
    font-size: 20px;
}
.hero-slider__arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    background: rgba(8,22,38,.48);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}
.hero-slider__arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.hero-slider__arrow--prev { left: 28px; }
.hero-slider__arrow--next { right: 28px; }
.hero-slider__dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}
.hero-slider__dots button {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.38);
    cursor: pointer;
}
.hero-slider__dots button.is-active {
    background: var(--accent);
}

@media (max-width: 760px) {
    .hero-slider, .hero-slide__content {
        min-height: 620px;
    }
    .hero-slide__content {
        padding-top: 78px;
        padding-bottom: 92px;
    }
    .hero-slide__content h1 {
        font-size: 34px;
        line-height: 1.12;
    }
    .hero-slide__content p {
        font-size: 16px;
    }
    .hero-slider__arrow {
        top: auto;
        bottom: 28px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    .hero-slider__arrow--prev { left: 18px; }
    .hero-slider__arrow--next { right: 18px; }
    .hero-slider__dots {
        bottom: 46px;
    }
}

/* BETADES premium visual homepage refresh */
.visual-section {
    position: relative;
}
.visual-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 220px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8,22,38,.05), rgba(8,22,38,0));
}
.section-head--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}
.section-head--split > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}
.categories.card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.category-card {
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(8,22,38,.10);
    background: #fff;
    box-shadow: 0 16px 42px rgba(8,22,38,.08);
}
.category-card__media {
    margin: 0;
    position: relative;
    aspect-ratio: 4 / 3;
    background: #101a28;
    overflow: hidden;
}
.category-card__media::after,
.product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,22,38,0) 35%, rgba(8,22,38,.52) 100%);
}
.category-card__media img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    background: transparent;
    border-radius: 0;
    transform: scale(1.01);
    transition: transform .35s ease;
}
.category-card__body {
    padding: 20px;
}
.category-card__body span,
.product-card__body span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.category-card__body h3 {
    margin: 8px 0 10px;
    font-size: 20px;
    color: var(--navy);
}
.category-card__body p {
    margin: 0;
    color: var(--muted);
}
.category-card:hover .category-card__media img,
.product-card:hover .product-card__media img {
    transform: scale(1.06);
}
.product-card {
    border: 1px solid rgba(8,22,38,.10);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(8,22,38,.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243,112,33,.45);
    box-shadow: 0 22px 54px rgba(8,22,38,.16);
}
.product-card__media {
    margin: 0;
    position: relative;
    aspect-ratio: 1.25 / 1;
    background: #101a28;
    overflow: hidden;
}
.product-card__media img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    background: transparent;
    transition: transform .35s ease;
}
.product-card__body {
    padding: 18px;
}
.product-card__body h3 {
    margin: 8px 0 9px;
    min-height: 50px;
    color: var(--navy);
}
.product-card__body p {
    min-height: 76px;
    margin: 0 0 12px;
}
.product-card__body a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 6px;
    background: rgba(243,112,33,.10);
}
.hero-slide__content {
    max-width: none;
}
.hero-slide__content .btn {
    box-shadow: 0 14px 30px rgba(243,112,33,.28);
}

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

@media (max-width: 900px) {
    .section-head--split {
        display: block;
    }
    .section-head--split > p {
        margin-top: 12px;
    }
    .categories.card-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .categories.card-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-card__body h3,
    .product-card__body p {
        min-height: 0;
    }
}

/* BETADES header refinement */
.site-header {
    box-shadow: 0 10px 28px rgba(8, 22, 38, .08);
}
.top-strip__inner {
    min-height: 34px;
}
.nav-shell {
    height: 82px;
    min-height: 82px;
    gap: 22px;
}
.brand {
    display: flex;
    align-items: center;
    flex: 0 0 188px;
    width: 188px;
    min-width: 188px;
}
.brand img {
    width: 188px;
    height: 52px;
    object-fit: contain;
    object-position: left center;
}
.main-nav {
    gap: 16px;
}
.quote-link {
    flex: 0 0 auto;
}

@media (max-width: 1040px) {
    .brand {
        flex-basis: 164px;
        width: 164px;
        min-width: 164px;
    }
    .brand img {
        width: 164px;
        height: 46px;
    }
    .main-nav {
        gap: 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .site-header .top-strip {
        display: none;
    }
    .nav-shell {
        height: 70px;
        min-height: 70px;
    }
    .brand {
        flex-basis: 154px;
        width: 154px;
        min-width: 154px;
    }
    .brand img {
        width: 154px;
        height: 44px;
    }
    .quote-link {
        display: none;
    }
    .main-nav {
        top: 70px;
    }
}

/* BETADES sector solutions refresh */
.sector-hero,
.sector-detail-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 112px 0 92px;
}
.sector-hero .container,
.sector-detail-hero .container {
    position: relative;
    z-index: 1;
}
.sector-hero h1,
.sector-detail-hero h1 {
    max-width: 960px;
}
.sector-list-section {
    background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}
.sector-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.sector-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8, 22, 38, .09);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.sector-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 112, 33, .45);
    box-shadow: 0 24px 58px rgba(8, 22, 38, .16);
}
.sector-card__media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #101a28;
}
.sector-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 22, 38, 0) 42%, rgba(8, 22, 38, .58) 100%);
}
.sector-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .35s ease;
}
.sector-card:hover .sector-card__media img {
    transform: scale(1.07);
}
.sector-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}
.sector-card__body span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.sector-card__body h2 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.2;
}
.sector-card__body p {
    flex: 1;
    margin: 0 0 18px;
    color: var(--muted);
}
.sector-card__body strong {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 6px;
    background: rgba(243, 112, 33, .10);
    color: var(--accent);
    font-size: 14px;
}
.sector-detail-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}
.sector-detail-aside {
    position: sticky;
    top: 130px;
    overflow: hidden;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8, 22, 38, .08);
}
.sector-detail-aside img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.sector-detail-aside div {
    padding: 20px;
}
.sector-detail-aside strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}
.sector-detail-aside span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}
.sector-rich-content .lead {
    color: var(--steel);
    font-size: 20px;
    line-height: 1.65;
}
.solution-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.solution-category-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 22, 38, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.solution-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 112, 33, .42);
    box-shadow: 0 18px 40px rgba(8, 22, 38, .12);
}
.solution-category-card img {
    width: 132px;
    height: 104px;
    border-radius: 6px;
    object-fit: cover;
}
.solution-category-card h3 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 18px;
}
.solution-category-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.sector-advantage-band {
    border-radius: 8px;
}

@media (max-width: 980px) {
    .sector-card-grid,
    .solution-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sector-detail-layout {
        grid-template-columns: 1fr;
    }
    .sector-detail-aside {
        position: static;
    }
}

@media (max-width: 620px) {
    .sector-hero,
    .sector-detail-hero {
        padding: 76px 0 64px;
    }
    .sector-card-grid,
    .solution-category-grid {
        grid-template-columns: 1fr;
    }
    .solution-category-card {
        grid-template-columns: 1fr;
    }
    .solution-category-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/* BETADES references and content visuals refresh */
.page-hero--visual,
.reference-hero,
.reference-detail-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 112px 0 92px;
}
.page-hero--visual .container,
.reference-hero .container,
.reference-detail-hero .container {
    position: relative;
    z-index: 1;
}
.reference-list-section {
    background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}
.reference-project-grid,
.home-reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.reference-project-card,
.home-reference-card,
.catalog-card--visual {
    overflow: hidden;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8, 22, 38, .09);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.reference-project-card:hover,
.home-reference-card:hover,
.catalog-card--visual:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 112, 33, .45);
    box-shadow: 0 24px 58px rgba(8, 22, 38, .16);
}
.reference-project-card__media,
.catalog-card__media {
    position: relative;
    display: block;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #101a28;
}
.reference-project-card__media::after,
.home-reference-card::after,
.catalog-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 22, 38, 0) 42%, rgba(8, 22, 38, .56) 100%);
    pointer-events: none;
}
.reference-project-card__media img,
.home-reference-card img,
.catalog-card__media img,
.news-card--image img,
.content-image--cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reference-project-card__media img,
.home-reference-card img,
.catalog-card__media img {
    transform: scale(1.01);
    transition: transform .35s ease;
}
.reference-project-card:hover .reference-project-card__media img,
.home-reference-card:hover img,
.catalog-card--visual:hover .catalog-card__media img {
    transform: scale(1.07);
}
.reference-project-card__body,
.catalog-card__body {
    padding: 22px;
}
.reference-project-card__body span,
.home-reference-card span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.reference-project-card__body h2 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.2;
}
.reference-project-card__body p {
    margin: 0 0 18px;
    color: var(--muted);
}
.inline-action {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 6px;
    background: rgba(243, 112, 33, .10);
    color: var(--accent);
    font-weight: 900;
}
.home-reference-card {
    position: relative;
    display: flex;
    min-height: 260px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
}
.home-reference-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.home-reference-card::after {
    z-index: 1;
    background: linear-gradient(180deg, rgba(8,22,38,.06) 18%, rgba(8,22,38,.88) 100%);
}
.home-reference-card span,
.home-reference-card strong {
    position: relative;
    z-index: 2;
}
.home-reference-card strong {
    margin-top: 6px;
    font-size: 20px;
    line-height: 1.2;
}
.reference-detail-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}
.reference-detail-aside {
    position: sticky;
    top: 130px;
    overflow: hidden;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8, 22, 38, .08);
}
.reference-detail-aside img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.reference-detail-aside div {
    padding: 20px;
}
.reference-detail-aside strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.25;
}
.reference-detail-aside span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}
.reference-rich-content .solution-category-grid {
    margin-top: 18px;
}
.news-card--image {
    overflow: hidden;
    padding: 0;
}
.news-card--image img {
    height: 210px;
}
.news-card--image span,
.news-card--image h2,
.news-card--image h3,
.news-card--image p,
.news-card--image a {
    margin-left: 20px;
    margin-right: 20px;
}
.news-card--image span {
    display: block;
    margin-top: 18px;
}
.news-card--image a {
    display: inline-flex;
    margin-bottom: 20px;
}
.catalog-card--visual {
    padding: 0;
}
.catalog-card__body p {
    color: var(--muted);
}
.content-image--cover {
    min-height: 320px;
    padding: 0;
}

@media (max-width: 980px) {
    .reference-project-grid,
    .home-reference-grid,
    .reference-detail-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .reference-detail-layout {
        grid-template-columns: 1fr;
    }
    .reference-detail-aside {
        position: static;
    }
}

@media (max-width: 620px) {
    .page-hero--visual,
    .reference-hero,
    .reference-detail-hero {
        padding: 76px 0 64px;
    }
    .reference-project-grid,
    .home-reference-grid {
        grid-template-columns: 1fr;
    }
}
/* BETADES product catalog and contact refresh */
.reference-product-groups {
    margin-top: 36px;
}
.reference-subhead {
    margin-bottom: 22px;
}
.reference-subhead h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.18;
}
.reference-subhead p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}
.product-group-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.product-group-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8, 22, 38, .08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-group-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 112, 33, .45);
    box-shadow: 0 24px 56px rgba(8, 22, 38, .15);
}
.product-group-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #101a28;
}
.product-group-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .35s ease;
}
.product-group-card:hover .product-group-image img {
    transform: scale(1.07);
}
.product-group-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}
.product-group-content h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.22;
}
.product-group-content p {
    flex: 1;
    margin: 0 0 18px;
    color: var(--muted);
}
.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 6px;
    background: rgba(243, 112, 33, .10);
    color: var(--accent);
    font-weight: 900;
}
.product-catalog-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8, 22, 38, .08);
}
.product-catalog-download h2 {
    max-width: 760px;
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 32px;
    line-height: 1.16;
}
.product-catalog-download p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}
.contact-panel--modern h2 {
    color: var(--navy);
    line-height: 1.2;
}
.contact-whatsapp {
    width: max-content;
    margin-top: 18px;
}
.contact-map-section {
    padding-top: 0;
}
.contact-map-card {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(8, 22, 38, .10);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8, 22, 38, .10);
}
.contact-map-copy {
    padding: 34px;
}
.contact-map-copy h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.18;
}
.contact-map-copy p {
    color: var(--muted);
}
.contact-map-embed {
    min-height: 430px;
    background: #dfe5ec;
}
.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

@media (max-width: 980px) {
    .product-group-grid {
        grid-template-columns: 1fr;
    }
    .product-catalog-download,
    .contact-map-card {
        grid-template-columns: 1fr;
    }
    .product-catalog-download {
        display: grid;
    }
}

@media (max-width: 620px) {
    .reference-subhead h2,
    .product-catalog-download h2,
    .contact-map-copy h2 {
        font-size: 26px;
    }
    .product-catalog-download,
    .contact-map-copy {
        padding: 24px;
    }
    .contact-map-embed,
    .contact-map-embed iframe {
        min-height: 320px;
    }
}
/* BETADES contact WhatsApp visibility fix */
.contact-panel a.contact-whatsapp,
.contact-panel a.contact-whatsapp:visited,
.contact-panel a.contact-whatsapp:hover {
    color: #fff;
}