/* =========================================================
   PRODUCT DETAIL PAGE
   Civil Tech Testing Solutions
   BEM Architecture
========================================================= */
/* =========================================================
   PAGE CONTAINER
========================================================= */
.product-page__container {
    --product-primary: #021f61;
    --product-primary-dark: #01194e;
    --product-yellow: #fcc101;
    --product-green: #12a45a;
    --product-heading: #09265d;
    --product-text: #52617a;
    --product-muted: #78859a;
    --product-white: #ffffff;
    --product-bg: #f7f9fc;
    --product-border: #e3e9f2;
    --product-border-dark: #c8d2e2;
    --product-shadow: 0 8px 30px rgba(2, 31, 97, 0.055);
    --product-radius: 10px;
    --product-transition: 0.3s ease;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

/* =========================================================
   BREADCRUMB
========================================================= */
.product-breadcrumb {
    padding: 18px 0 12px;
    background: #fff;
    border-bottom: 1px solid #edf1f6;
}

.product-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-breadcrumb__item {
    color: #738097;
    font-size: 12px;
    line-height: 1.4;
}

.product-breadcrumb__link {
    color: #738097;
    transition: color var(--product-transition);
}

.product-breadcrumb__link:hover {
    color: var(--product-primary);
}

.product-breadcrumb__separator {
    display: flex;
    color: #9ca8ba;
    font-size: 12px;
}

.product-breadcrumb__item--current {
    color: var(--product-primary);
    font-weight: 700;
}

/* =========================================================
   PRODUCT DETAIL
========================================================= */
.product-detail {
    padding: 18px 0 25px;
}

/* =========================================================
   MAIN PRODUCT GRID
========================================================= */
.product-detail__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

/* =========================================================
   PRODUCT GALLERY
========================================================= */
.product-gallery {
    min-width: 0;
    padding: 12px;
    background: var(--product-white);
    border: 1px solid var(--product-border);
    border-radius: var(--product-radius);
    box-shadow: var(--product-shadow);
}

/* =========================================================
   MAIN GALLERY
========================================================= */
.product-gallery__main {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #fff;
    border-radius: 7px;
}

.product-gallery__main-slider {
    width: 100%;
    height: 100%;
}

.product-gallery__main-slider .swiper-slide {
    height: 100%;
}

.product-gallery__image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 60px;
}

.product-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    transition: transform var(--product-transition);
}

/* =========================================================
   VIEW BUTTON
========================================================= */
.product-gallery__view-button,
.product-gallery__fullscreen {
    position: absolute;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--product-primary);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--product-border);
    box-shadow: 0 3px 12px rgba(2, 31, 97, 0.08);
    transition:
        background var(--product-transition),
        color var(--product-transition),
        border-color var(--product-transition),
        transform var(--product-transition);
}

.product-gallery__view-button {
    top: 10px;
    left: 10px;
    gap: 5px;
    min-width: 45px;
    min-height: 34px;
    padding: 6px 9px;
    border-radius: 7px;
    font-size: 10px;
}

.product-gallery__view-button i {
    font-size: 13px;
}

.product-gallery__fullscreen {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 7px;
}

.product-gallery__fullscreen i {
    font-size: 16px;
}

.product-gallery__view-button:hover,
.product-gallery__fullscreen:hover {
    color: var(--product-primary);
    border-color: var(--product-yellow);
    background: #fffdf2;
    transform: translateY(-2px);
}

/* =========================================================
   THUMBNAILS
========================================================= */
.product-gallery__thumbs {
    position: relative;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
}

.product-gallery__thumb-slider {
    min-width: 0;
    width: 100%;
}

.product-gallery__thumb-slider .swiper-slide {
    width: 72px;
}

.product-gallery__thumb {
    position: relative;
    width: 100%;
    height: 52px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--product-border);
    border-radius: 6px;
    transition:
        border-color var(--product-transition),
        box-shadow var(--product-transition);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-slide-thumb-active .product-gallery__thumb {
    border-color: var(--product-yellow);
    box-shadow: 0 0 0 1px rgba(252, 193, 1, 0.2);
}

.product-gallery__thumb-nav {
    width: 28px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--product-primary);
    background: #fff;
    border: 1px solid var(--product-border);
    border-radius: 6px;
    transition: all var(--product-transition);
}

.product-gallery__thumb-nav:hover {
    color: #fff;
    background: var(--product-primary);
    border-color: var(--product-primary);
}

.product-gallery__thumb-nav i {
    font-size: 15px;
}

/* =========================================================
   PRODUCT INFORMATION
========================================================= */
.product-info {
    min-width: 0;
    padding: 4px 0;
}

/* =========================================================
   TITLE
========================================================= */
.product-info__title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-info__title {
    margin: 0;
    color: var(--product-heading);
    font-size: clamp(27px, 2.25vw, 39px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: var(--primary-font);
}

.product-info__code {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 9px;
    color: #fff;
    background: var(--product-primary);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* =========================================================
   META
========================================================= */
.product-info__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 13px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-rating__stars {
    display: inline-flex;
    gap: 1px;
    color: #ffb900;
}

.product-rating__stars i {
    font-size: 14px;
}

.product-rating__value {
    color: var(--product-heading);
    font-size: 11px;
    font-weight: 600;
}

.product-rating__reviews {
    color: #67758d;
    font-size: 10px;
    transition: color var(--product-transition);
}

.product-rating__reviews:hover {
    color: var(--product-primary);
}

.product-info__stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--product-green);
    font-size: 10px;
    font-weight: 600;
}

.product-info__stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--product-green);
}

/* =========================================================
   DESCRIPTION
========================================================= */
.product-info__description {
    max-width: 690px;
    margin: 14px 0 15px;
    color: var(--product-text);
    font-size: 16px;
    line-height: 1.65;
}

/* =========================================================
   STANDARDS
========================================================= */
.product-standards {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.product-standard {
    min-height: 42px;
    padding: 7px 11px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--product-text);
    background: #fff;
    border: 1px solid var(--product-border);
    border-radius: 7px;
    box-shadow: 0 3px 10px rgba(2, 31, 97, 0.025);
    font-size: 10px;
    font-weight: 600;
}

.product-standard__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--product-primary);
}

.product-standard__icon i {
    font-size: 17px;
}

/* =========================================================
   ACTIONS
========================================================= */
.product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 6px;
}

.product-action {
    min-height: 46px;
    padding: 9px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    transition:
        color var(--product-transition),
        background var(--product-transition),
        border-color var(--product-transition),
        transform var(--product-transition),
        box-shadow var(--product-transition);
}

.product-action  span{
    font-size: 16px;
    
}
.product-action i {
    font-size: 18px;
    transition: transform var(--product-transition);
}

.product-action:hover {
    transform: translateY(-2px);
}

.product-action:hover i {
    transform: translateX(3px);
}

/* Quote */
.product-action--quote {
    color: var(--product-primary);
    background: var(--product-yellow);
    border: 1px solid var(--product-yellow);
}

.product-action--quote:hover {
    color: var(--product-primary);
    background: #ffd32e;
    box-shadow: 0 7px 18px rgba(252, 193, 1, 0.22);
}

/* Catalog */
.product-action--catalog {
    color: var(--product-primary);
    background: #fff;
    border: 1px solid #8b9ab5;
}

.product-action--catalog:hover {
    color: #fff;
    background: var(--product-primary);
    border-color: var(--product-primary);
}

/* WhatsApp */
.product-action--whatsapp {
    color: #15995a;
    background: #fff;
    border: 1px solid #7bd5ad;
}

.product-action--whatsapp:hover {
    color: #fff;
    background: #15995a;
    border-color: #15995a;
}

/* Enquiry */
.product-action--enquiry {
    color: var(--product-primary);
    background: #fff;
    border: 1px solid #8b9ab5;
}

.product-action--enquiry:hover {
    color: #fff;
    background: var(--product-primary);
    border-color: var(--product-primary);
}

/* =========================================================
   TRUST FEATURES
========================================================= */
.product-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 17px;
}

.product-trust__item {
    min-height: 47px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--product-border);
    border-radius: 6px;
    color: var(--product-heading);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.product-trust__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--product-primary);
}

.product-trust__icon i {
    font-size: 19px;
}

/* =========================================================
   SPECIFICATIONS
========================================================= */
.product-specifications {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-top: 14px;
    background: #fff;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    box-shadow: var(--product-shadow);
}

.product-specification {
    min-width: 0;
    min-height: 66px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--product-border);
}

.product-specification:last-child {
    border-right: 0;
}

.product-specification__icon {
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--product-primary);
}

.product-specification__icon i {
    font-size: 26px;
}

.product-specification__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.product-specification__label {
    color: var(--product-heading);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.product-specification__value {
    margin-top: 4px;
    color: var(--product-text);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.35;
}

/* =========================================================
   LIGHTBOX
========================================================= */
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--product-transition),
        visibility var(--product-transition);
}

.product-lightbox--active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(1, 15, 43, 0.9);
    backdrop-filter: blur(5px);
}

.product-lightbox__dialog {
    position: relative;
    z-index: 2;
    max-width: 900px;
    max-height: 90vh;
    padding: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform var(--product-transition);
}

.product-lightbox--active .product-lightbox__dialog {
    transform: scale(1);
}

.product-lightbox__image {
    max-width: 85vw;
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.product-lightbox__close {
    position: absolute;
    z-index: 5;
    top: -15px;
    right: -15px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--product-primary);
    border: 2px solid #fff;
    border-radius: 50%;
}

.product-lightbox__close i {
    font-size: 17px;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */
@media (min-width: 1600px) {
    .product-page__container {
        max-width: 1700px;
    }

    .product-gallery__main {
        height: 390px;
    }

    .product-info__title {
        font-size: 38px;
    }
}

/* =========================================================
   1200px - 1399px
========================================================= */
@media (max-width: 1399px) {
    .product-page__container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .product-gallery__main {
        height: 320px;
    }

    .product-info__title {
        font-size: 31px;
    }

    .product-standard {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */
@media (max-width: 991px) {
    .product-detail__layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-gallery__main {
        height: 430px;
    }

    .product-info {
        padding: 0;
    }

    .product-info__title {
        font-size: 30px;
    }

    .product-info__description {
        max-width: 850px;
    }

    .product-specifications {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-specification {
        border-bottom: 1px solid var(--product-border);
    }

    .product-specification:nth-child(3) {
        border-right: 0;
    }

    .product-specification:nth-child(4),
    .product-specification:nth-child(5),
    .product-specification:nth-child(6) {
        border-bottom: 0;
    }

    .product-specification:nth-child(6) {
        border-right: 0;
    }
}

/* =========================================================
   MOBILE LANDSCAPE / TABLET
========================================================= */
@media (max-width: 767px) {
    .product-page__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .product-breadcrumb {
        padding-top: 13px;
        padding-bottom: 10px;
    }

    .product-breadcrumb__list {
        gap: 4px;
    }

    .product-breadcrumb__item {
        font-size: 10px;
    }

    .product-detail {
        padding-top: 12px;
    }

    .product-gallery {
        padding: 8px;
    }

    .product-gallery__main {
        height: 350px;
    }

    .product-gallery__image-wrapper {
        padding: 12px 45px;
    }

    .product-info__title {
        font-size: 27px;
    }

    .product-info__description {
        font-size: 12px;
    }

    .product-standards {
        gap: 6px;
    }

    .product-standard {
        min-height: 39px;
        font-size: 9px;
    }

    .product-actions {
        gap: 7px;
    }

    .product-action {
        min-height: 45px;
        padding-left: 9px;
        padding-right: 9px;
        gap: 7px;
        font-size: 10px;
    }

    .product-trust {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .product-trust__item {
        justify-content: flex-start;
        padding-left: 15px;
        text-align: left;
    }

    .product-specifications {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-specification {
        border-right: 1px solid var(--product-border);
        border-bottom: 1px solid var(--product-border);
    }

    .product-specification:nth-child(2n) {
        border-right: 0;
    }

    .product-specification:nth-child(5),
    .product-specification:nth-child(6) {
        border-bottom: 0;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 575px) {

    .product-breadcrumb__item:nth-of-type(3),
    .product-breadcrumb__separator:nth-of-type(3) {
        display: none;
    }

    .product-gallery__main {
        height: 290px;
    }

    .product-gallery__image-wrapper {
        padding: 15px 35px;
    }

    .product-gallery__thumb-slider .swiper-slide {
        width: 62px;
    }

    .product-gallery__thumb {
        height: 48px;
    }

    .product-info__title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .product-info__title {
        font-size: 25px;
    }

    .product-info__meta {
        gap: 12px;
    }

    .product-info__description {
        font-size: 12px;
        line-height: 1.7;
    }

    .product-standards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-standard {
        width: 100%;
        justify-content: flex-start;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .product-action {
        width: 100%;
    }

    .product-specifications {
        grid-template-columns: 1fr;
    }

    .product-specification,
    .product-specification:nth-child(2n) {
        min-height: 62px;
        border-right: 0;
        border-bottom: 1px solid var(--product-border);
    }

    .product-specification:last-child {
        border-bottom: 0;
    }

    .product-lightbox {
        padding: 15px;
    }

    .product-lightbox__dialog {
        width: 100%;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 380px) {
    .product-page__container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .product-gallery__main {
        height: 250px;
    }

    .product-info__title {
        font-size: 23px;
    }

    .product-standard {
        padding: 6px;
        font-size: 8px;
    }

    .product-standard__icon {
        width: 18px;
        height: 18px;
    }

    .product-standard__icon i {
        font-size: 14px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   MAIN SECTION
========================================================= */
.product-information {
    --info-primary: #061f5a;
    --info-primary-light: #153b80;
    --info-yellow: #f9bd00;
    --info-heading: #071f58;
    --info-text: #3f4f6b;
    --info-muted: #71809a;
    --info-white: #ffffff;
    --info-background: #f7f9fc;
    --info-border: #e5eaf2;
    --info-border-light: #edf1f6;
    --info-shadow:
        0 5px 20px rgba(6, 31, 90, 0.055);
    --info-radius: 10px;
    --info-transition: 0.3s ease;
    width: 100%;
    padding:
        10px 0 30px;
}

.product-information__container {
    width: 100%;
    max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 28px;
    padding-left: 28px;
}

/* =========================================================
   PRODUCT INTRODUCTION
========================================================= */
.product-introduction {
    width: 100%;
    margin-bottom: 26px;
    padding: 0 20px;
}

.product-introduction__text {
    max-width: 1500px;
    margin: 0;
    color: var(--info-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

/* =========================================================
   MAIN INFORMATION GRID
========================================================= */
.product-information__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 2fr) minmax(280px, 0.96fr);
    gap: 12px;
    align-items: stretch;
    margin-bottom: 20px;
    padding: 20px 0;
}

/* =========================================================
   SHARED CARD
========================================================= */
.technical-specifications,
.product-applications {
    min-width: 0;
    background:
        var(--info-white);
    border:
        1px solid var(--info-border);
    border-radius:
        var(--info-radius);
    box-shadow:
        var(--info-shadow);
}

/* =========================================================
   TECHNICAL SPECIFICATIONS
========================================================= */
.technical-specifications {
    overflow: hidden;
    padding: 13px 15px 12px;
}

.technical-specifications__header {
    padding:
        13px 14px 7px;
}

.technical-specifications__title {
    margin: 0;
    color: var(--info-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================================
   TABLE WRAPPER
========================================================= */
.technical-specifications__table-wrapper {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color:
        #cbd4e2 transparent;
}

.technical-specifications__table-wrapper::-webkit-scrollbar {
    height: 5px;
}

.technical-specifications__table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.technical-specifications__table-wrapper::-webkit-scrollbar-thumb {
    background: #cbd4e2;
    border-radius: 20px;
}

/* =========================================================
   SPECIFICATION TABLE
========================================================= */
.technical-specifications__table {
    width: 100%;
    min-width: 620px;
    margin: 0;
    border-collapse: collapse;
    table-layout: fixed;
    color: var(--info-text);
    font-size: 14px;
    line-height: 1.35;
}

/* =========================================================
   TABLE CELLS
========================================================= */
.technical-specifications__table th,
.technical-specifications__table td {
    padding:
        6px 12px;
    vertical-align: middle;
    border-top:
        1px solid var(--info-border-light);
    border-right:
        1px solid var(--info-border-light);
    white-space: normal;
}

.technical-specifications__table th:last-child,
.technical-specifications__table td:last-child {
    border-right: 0;
}

/* =========================================================
   TABLE HEADER
========================================================= */
.technical-specifications__table thead th {
    padding-top: 7px;
    padding-bottom: 7px;
    color: var(--info-heading);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    border-top: 0;
    background: #fff;
}

.technical-specifications__table thead th:first-child {
    width: 25%;
}

.technical-specifications__table thead th:not(:first-child) {
    width: 25%;
}

/* =========================================================
   TABLE BODY
========================================================= */
.technical-specifications__table tbody th {
    color: var(--info-heading);
    font-weight: 600;
    text-align: left;
    background: #fff;
}

.technical-specifications__table tbody td {
    color: var(--info-text);
    font-weight: 400;
}

/* =========================================================
   TABLE HOVER
========================================================= */
.technical-specifications__table tbody tr {
    transition:
        background var(--info-transition);
}

.technical-specifications__table tbody tr:hover {
    background: #fbfcfe;
}

.technical-specifications__table tbody tr:hover th,
.technical-specifications__table tbody tr:hover td {
    background: #fbfcfe;
}

/* =========================================================
   APPLICATIONS
========================================================= */
.product-applications {
    padding:
        13px 15px 12px;
}

.product-applications__header {
    margin-bottom: 13px;
}

.product-applications__title {
    margin: 0;
    color: var(--info-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================================
   APPLICATION LIST
========================================================= */
.product-applications__list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =========================================================
   APPLICATION ITEM
========================================================= */
.product-applications__item {
    display: grid;
    grid-template-columns:
        18px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
}

.product-applications__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--info-primary);
}

.product-applications__icon i {
    font-size: 15px;
}

.product-applications__text {
    color: var(--info-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

/* =========================================================
   APPLICATION HOVER
========================================================= */
.product-applications__item {
    transition:
        transform var(--info-transition);
}

.product-applications__item:hover {
    transform: translateX(3px);
}

.product-applications__item:hover .product-applications__icon {
    color: var(--info-yellow);
}

/* =========================================================
   TESTING STANDARDS
========================================================= */
.testing-standards {
    margin-top: 13px;
}

.testing-standards__title {
    margin:
        0 0 8px;
    padding-left: 12px;
    color: var(--info-heading);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================================
   STANDARDS GRID
========================================================= */
.testing-standards__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 0;
    padding:
        9px 10px;
    background:
        var(--info-white);
    border:
        1px solid var(--info-border);
    border-radius:
        var(--info-radius);
    box-shadow:
        var(--info-shadow);
}

/* =========================================================
   STANDARD CARD
========================================================= */
.testing-standard {
    min-width: 0;
    min-height: 60px;
    padding:
        5px 15px;
    display: grid;
    grid-template-columns:
        40px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    border-right:
        1px solid var(--info-border);
}

.testing-standard:last-child {
    border-right: 0;
}

/* =========================================================
   STANDARD ICON
========================================================= */
.testing-standard__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--info-primary);
    border:
        1px solid #dce3ee;
    border-radius: 50%;
    background:
        #fafbfd;
    transition:
        color var(--info-transition),
        background var(--info-transition),
        border-color var(--info-transition),
        transform var(--info-transition);
}

.testing-standard__icon i {
    font-size: 19px;
}

.testing-standard:hover .testing-standard__icon {
    color: var(--info-white);
    background:
        var(--info-primary);
    border-color:
        var(--info-primary);
    transform: scale(1.05);
}

/* =========================================================
   STANDARD CONTENT
========================================================= */
.testing-standard__content {
    min-width: 0;
}

.testing-standard__name {
    margin: 0 0 3px;
    color: var(--info-heading);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.testing-standard__description {
    margin: 0;
    color: var(--info-muted);
    font-size: 8px;
    font-weight: 400;
    line-height: 1.45;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */
@media (min-width: 1600px) {
    .product-information__container {
        max-width: 1700px;
        padding-right: 35px;
        padding-left: 35px;
    }

    .product-introduction__text {
        font-size: 13px;
    }

    .technical-specifications__title,
    .product-applications__title,
    .testing-standards__title {
        font-size: 14px;
    }

    .technical-specifications__table {
        font-size: 11px;
    }

    .technical-specifications__table thead th {
        font-size: 11px;
    }

    .product-applications__text {
        font-size: 11px;
    }

    .testing-standard__name {
        font-size: 11px;
    }

    .testing-standard__description {
        font-size: 9px;
    }
}

/* =========================================================
   1400px
========================================================= */
@media (max-width: 1399px) {
    .product-information__container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .product-information__grid {
        grid-template-columns:
            minmax(0, 1.85fr) minmax(270px, 0.95fr);
    }

    .technical-specifications__table th,
    .technical-specifications__table td {
        padding-right: 10px;
        padding-left: 10px;
    }

    .testing-standard {
        padding-right: 11px;
        padding-left: 11px;
    }
}

/* =========================================================
   1200px
========================================================= */
@media (max-width: 1199px) {
    .product-information {
        padding-top: 8px;
    }

    .product-information__container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .product-information__grid {
        grid-template-columns:
            minmax(0, 1.7fr) minmax(250px, 1fr);
    }

    .technical-specifications__table {
        min-width: 590px;
    }

    .testing-standard {
        grid-template-columns:
            35px minmax(0, 1fr);
        gap: 8px;
        padding-right: 9px;
        padding-left: 9px;
    }

    .testing-standard__icon {
        width: 34px;
        height: 34px;
    }

    .testing-standard__icon i {
        font-size: 17px;
    }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
    .product-information {
        padding:
            10px 0 25px;
    }

    .product-information__container {
        padding-right: 16px;
        padding-left: 16px;
    }

    /*
     * Main layout changes from:
     *
     * Specifications | Applications
     *
     * to:
     *
     * Specifications
     * Applications
     */
    .product-information__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-introduction__text {
        font-size: 11px;
    }

    .product-applications {
        padding-bottom: 16px;
    }

    .product-applications__list {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        column-gap: 25px;
        row-gap: 12px;
    }

    .testing-standards__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .testing-standard:nth-child(2) {
        border-right: 0;
    }

    .testing-standard:nth-child(-n + 2) {
        border-bottom:
            1px solid var(--info-border);
    }

    .testing-standard:nth-child(3) {
        border-right:
            1px solid var(--info-border);
    }
}

/* =========================================================
   MOBILE LANDSCAPE
========================================================= */
@media (max-width: 767px) {
    .product-information__container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .product-introduction {
        margin-bottom: 9px;
    }

    .product-introduction__text {
        font-size: 10px;
        line-height: 1.6;
    }

    .technical-specifications__header {
        padding:
            12px 12px 7px;
    }

    .technical-specifications__title,
    .product-applications__title,
    .testing-standards__title {
        font-size: 12px;
    }

    /*
     * Horizontal scrolling is intentionally retained
     * for the technical table so its 4 columns remain
     * readable on small screens.
     */
    .technical-specifications__table {
        min-width: 620px;
        font-size: 9px;
    }

    .technical-specifications__table thead th {
        font-size: 9px;
    }

    .technical-specifications__table th,
    .technical-specifications__table td {
        padding:
            6px 9px;
    }

    .product-applications {
        padding:
            12px;
    }

    .product-applications__list {
        column-gap: 18px;
    }

    .product-applications__text {
        font-size: 9px;
    }

    .testing-standards__title {
        padding-left: 4px;
    }

    .testing-standards__grid {
        padding:
            6px;
    }

    .testing-standard {
        min-height: 66px;
        padding:
            7px 9px;
        grid-template-columns:
            35px minmax(0, 1fr);
        gap: 7px;
    }

    .testing-standard__icon {
        width: 33px;
        height: 33px;
    }

    .testing-standard__icon i {
        font-size: 16px;
    }

    .testing-standard__name {
        font-size: 9px;
    }

    .testing-standard__description {
        font-size: 7.5px;
    }
}

/* =========================================================
   MOBILE PORTRAIT
========================================================= */
@media (max-width: 575px) {
    .product-information {
        padding:
            8px 0 20px;
    }

    .product-information__container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .product-introduction__text {
        font-size: 9px;
        line-height: 1.65;
    }

    .technical-specifications,
    .product-applications,
    .testing-standards__grid {
        border-radius: 8px;
    }

    .technical-specifications__table {
        min-width: 570px;
        font-size: 8px;
    }

    .technical-specifications__table thead th {
        font-size: 8px;
    }

    .technical-specifications__table th,
    .technical-specifications__table td {
        padding:
            6px 8px;
    }

    .product-applications__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-applications__item {
        grid-template-columns:
            17px minmax(0, 1fr);
        gap: 7px;
    }

    .product-applications__text {
        font-size: 9px;
    }

    .testing-standards__grid {
        grid-template-columns: 1fr;
        padding: 7px;
    }

    .testing-standard,
    .testing-standard:nth-child(3) {
        min-height: 60px;
        border-right: 0;
        border-bottom:
            1px solid var(--info-border);
    }

    .testing-standard:last-child {
        border-bottom: 0;
    }

    .testing-standard__description {
        font-size: 8px;
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */
@media (max-width: 380px) {
    .product-information__container {
        padding-right: 8px;
        padding-left: 8px;
    }

    .technical-specifications__table {
        min-width: 550px;
    }

    .technical-specifications__table th,
    .technical-specifications__table td {
        padding-right: 7px;
        padding-left: 7px;
    }

    .product-applications__text {
        font-size: 8px;
    }

    .testing-standard {
        padding-right: 7px;
        padding-left: 7px;
    }
}

/* =========================================================
   TOUCH DEVICES
========================================================= */
@media (hover: none) {
    .product-applications__item:hover {
        transform: none;
    }

    .testing-standard:hover .testing-standard__icon {
        color: var(--info-primary);
        background: #fafbfd;
        border-color: #dce3ee;
        transform: none;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   PRODUCT FEATURES / TECHNICAL BENEFITS
========================================================= */
.product-features {
    padding: 14px 0 24px;
}

.product-features__container {
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: 28px;
}

/* =========================================================
   MAIN GRID
========================================================= */
.product-features__layout {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.95fr) minmax(0, 1.45fr);
    min-height: 235px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 9px;
    box-shadow:
        0 5px 20px rgba(6, 31, 90, 0.055);
}

/* =========================================================
   LEFT CONTENT
========================================================= */
.product-features__content {
    min-width: 0;
    padding: 15px 25px 15px 18px;
    border-right: 1px solid #e4e9f1;
}

.product-features__title {
    margin: 0 0 13px;
    color: #071f58;
    font-size: 20px;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================================
   BENEFIT LIST
========================================================= */
.product-features__list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-features__item {
    display: grid;
    grid-template-columns:
        19px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    color: #3f4f6b;
    font-size: 16px;
    line-height: 1.4;
}

.product-features__item-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #092b69;
}

.product-features__item-icon i {
    font-size: 15px;
}

.product-features__item-text {
    min-width: 0;
}

/* =========================================================
   RIGHT DIAGRAM
========================================================= */
.product-features__diagram {
    position: relative;
    min-width: 0;
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.product-features__image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24%;
}

.product-features__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/* =========================================================
   ANNOTATIONS
   These remain available for semantic/accessibility
   purposes when the supplied image already contains
   the graphical callout lines/text.
========================================================= */
.product-features__annotations {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

/* =========================================================
   LARGE DESKTOP
========================================================= */
@media (min-width: 1600px) {
    .product-features__container {
        max-width: 1700px;
        padding-inline: 35px;
    }

    .product-features__layout {
        min-height: 250px;
    }

    .product-features__content {
        padding:
            17px 30px 17px 22px;
    }

    .product-features__title {
        font-size: 14px;
    }

    .product-features__item {
        font-size: 11px;
    }
}

/* =========================================================
   1400px
========================================================= */
@media (max-width: 1399px) {
    .product-features__container {
        padding-inline: 24px;
    }

    .product-features__layout {
        grid-template-columns:
            minmax(330px, 0.95fr) minmax(0, 1.4fr);
    }

    .product-features__content {
        padding-right: 20px;
    }
}

/* =========================================================
   1200px
========================================================= */
@media (max-width: 1199px) {
    .product-features__container {
        padding-inline: 20px;
    }

    .product-features__layout {
        grid-template-columns:
            minmax(300px, 0.9fr) minmax(0, 1.35fr);
        min-height: 220px;
    }

    .product-features__content {
        padding:
            14px 17px;
    }

    .product-features__item {
        font-size: 9px;
    }

    .product-features__diagram {
        min-height: 220px;
    }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
    .product-features {
        padding-top: 12px;
    }

    .product-features__container {
        padding-inline: 16px;
    }

    .product-features__layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .product-features__content {
        padding:
            16px 18px;
        border-right: 0;
        border-bottom:
            1px solid #e4e9f1;
    }

    .product-features__list {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        column-gap: 25px;
        row-gap: 10px;
    }

    .product-features__item {
        font-size: 10px;
    }

    .product-features__diagram {
        min-height: 280px;
    }

    .product-features__image-wrapper {
        padding:
            15px 35px;
    }
}

/* =========================================================
   MOBILE LANDSCAPE
========================================================= */
@media (max-width: 767px) {
    .product-features {
        padding:
            10px 0 20px;
    }

    .product-features__container {
        padding-inline: 12px;
    }

    .product-features__content {
        padding:
            14px;
    }

    .product-features__title {
        margin-bottom: 11px;
        font-size: 12px;
    }

    .product-features__list {
        column-gap: 16px;
        row-gap: 9px;
    }

    .product-features__item {
        grid-template-columns:
            18px minmax(0, 1fr);
        gap: 6px;
        font-size: 9px;
    }

    .product-features__item-icon {
        width: 17px;
        height: 17px;
    }

    .product-features__item-icon i {
        font-size: 14px;
    }

    .product-features__diagram {
        min-height: 250px;
    }

    .product-features__image-wrapper {
        padding:
            12px 20px;
    }
}

/* =========================================================
   MOBILE PORTRAIT
========================================================= */
@media (max-width: 575px) {
    .product-features {
        padding-bottom: 16px;
    }

    .product-features__container {
        padding-inline: 10px;
    }

    .product-features__layout {
        border-radius: 8px;
    }

    .product-features__content {
        padding:
            13px;
    }

    .product-features__list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .product-features__item {
        font-size: 9px;
    }

    .product-features__diagram {
        min-height: 215px;
    }

    .product-features__image-wrapper {
        padding:
            10px 12px;
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */
@media (max-width: 380px) {
    .product-features__container {
        padding-inline: 8px;
    }

    .product-features__content {
        padding:
            12px 11px;
    }

    .product-features__title {
        font-size: 11px;
    }

    .product-features__item {
        font-size: 8px;
    }

    .product-features__item-icon i {
        font-size: 13px;
    }

    .product-features__diagram {
        min-height: 185px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {

    .product-features__item,
    .product-features__image {
        transition: none;
    }
}

/* =========================================================
   PRODUCT SUPPORT SECTION
   BEM / RESPONSIVE GRID
========================================================= */
.product-support {
    width: 100%;
    padding: 10px 0 24px;
}

.product-support__container {
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: 28px;
}

/* =========================================================
   SHARED SECTION TITLE
========================================================= */
.product-support__section-title {
    margin: 0 0 6px;
    color: #071f58;
font-size: 20px;
    font-family: var(--primary-font);
        font-weight: 700;
    line-height: 1.35;
}

/* =========================================================
   INDUSTRIES SERVED
========================================================= */
.product-industries {
    width: 100%;
    margin-bottom: 12px;
}

.product-industries__grid {
    display: grid;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));
    gap: 10px;
}

/* =========================================================
   INDUSTRY CARD
========================================================= */
.product-industry {
    min-width: 0;
    min-height: 61px;
    display: grid;
    grid-template-columns:
        40px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e7ebf2;
    border-radius: 7px;
    box-shadow:
        0 4px 14px rgba(7, 31, 88, 0.045);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.product-industry:hover {
    transform: translateY(-2px);
    border-color: #d5dfef;
    box-shadow:
        0 7px 18px rgba(7, 31, 88, 0.08);
}

/* =========================================================
   INDUSTRY ICON
========================================================= */
.product-industry__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #092b69;
}

.product-industry__icon i {
    font-size: 23px;
}

/* =========================================================
   INDUSTRY TITLE
========================================================= */
.product-industry__title {
    margin: 0;
    color: #071f58;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================================
   FAQ SECTION
========================================================= */
.product-faq {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr) minmax(320px, 1fr);
    gap: 15px;
    align-items: stretch;
    margin-bottom: 14px;
    padding: 20px 0;
}

.product-faq__content {
    min-width: 0;
}

.product-faq__content .product-support__section-title {
    margin-bottom: 7px;
}

/* =========================================================
   FAQ ACCORDION
========================================================= */
.product-faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-faq__item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5eaf2;
    border-radius: 5px;
    box-shadow:
        0 2px 8px rgba(7, 31, 88, 0.035);
        margin-bottom: 6px;
}

/* =========================================================
   FAQ BUTTON
========================================================= */
.product-faq__question {
    margin: 0;
}

.product-faq__button {
    width: 100%;
    min-height: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 20px;
    color: #0b2a65;
    background: #ffffff;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.product-faq__button:hover {
    background: #f9fbfe;
}

.product-faq__button:focus-visible {
    outline: 2px solid #f9bd00;
    outline-offset: -2px;
}

.product-faq__button i {
    flex: 0 0 auto;
    color: #092b69;
    font-size: 13px;
    transition:
        transform 0.25s ease;
}

/* Rotate accordion icon */
.product-faq__button[aria-expanded="true"] {
    color: #061f5a;
    background: #f9fbfe;
}

.product-faq__button[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* =========================================================
   FAQ ANSWER
========================================================= */
.product-faq__answer {
    background: #ffffff;
}

.product-faq__answer-content {
    padding:
        2px 20px 10px;
    color: #596a85;
    font-size: 16px;
    line-height: 1.55;
}

/* =========================================================
   FAQ MEDIA
========================================================= */
.product-faq__media {
    position: relative;
    min-width: 0;
    min-height: 190px;
    overflow: hidden;
    border-radius: 7px;
    background: #eef2f7;
    aspect-ratio: 16 / 9;
}

.product-faq__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   EXPERT GUIDANCE CTA
========================================================= */
.product-guidance {
    position: relative;
    min-height: 143px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr) minmax(180px, 0.7fr) minmax(200px, 0.7fr);
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(105deg,
            #06235f 0%,
            #062c75 50%,
            #071f58 100%);
    border-radius: 7px;
    box-shadow:
        0 5px 18px rgba(7, 31, 88, 0.08);
}

/* =========================================================
   SUBTLE BACKGROUND EFFECT
========================================================= */
.product-guidance::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 58% 50%,
            rgba(73, 121, 190, 0.2),
            transparent 30%);
}

/* =========================================================
   CTA CONTENT
========================================================= */
.product-guidance__content {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding:
         40px 14px ;
}

.product-guidance__title {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.product-guidance__description {
    margin: 0 0 13px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* =========================================================
   CTA BUTTONS
========================================================= */
.product-guidance__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.product-guidance__button {
    min-width: 164px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.product-guidance__button:hover {
    transform: translateY(-2px);
}

.product-guidance__button--primary {
    color: #071f58;
    background: #f9bd00;
    border: 1px solid #f9bd00;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.08);
}

.product-guidance__button--primary:hover {
    color: #071f58;
    background: #ffca22;
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.14);
}

.product-guidance__button--secondary {
    color: #071f58;
    background: #ffffff;
    border: 1px solid #ffffff;
}

.product-guidance__button--secondary:hover {
    color: #071f58;
    background: #f4f7fb;
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.1);
}

.product-guidance__button i {
    font-size: 13px;
}

/* =========================================================
   EXPERT IMAGE
========================================================= */
.product-guidance__expert {
    position: relative;
    align-self: end;
    max-height: 250px;
    height: 100%;
    min-width: 0;
    z-index: 2;
}

.product-guidance__expert-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center bottom;
}

/* =========================================================
   SUPPORT BENEFITS
========================================================= */
.product-guidance__benefits {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding:
        10px 24px 10px 15px;
    list-style: none;
}

.product-guidance__benefit {
    display: grid;
    grid-template-columns:
        18px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    color: #ffffff;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.35;
}

.product-guidance__benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.product-guidance__benefit-icon i {
    font-size: 15px;
}

/* =========================================================
   1600px+
========================================================= */
@media (min-width: 1600px) {
    .product-support__container {
        max-width: 1700px;
        padding-inline: 35px;
    }

    .product-industry {
        min-height: 68px;
    }

    .product-industry__title {
        font-size: 10px;
    }

    .product-guidance {
        min-height: 150px;
    }

    .product-guidance__expert {
        height: 150px;
    }

    .product-guidance__title {
        font-size: 34px;
    }
}

/* =========================================================
   1400px
========================================================= */
@media (max-width: 1399px) {
    .product-support__container {
        padding-inline: 24px;
    }

    .product-industries__grid {
        gap: 8px;
    }

    .product-industry {
        grid-template-columns:
            36px minmax(0, 1fr);
        gap: 7px;
        padding-inline: 9px;
    }

    .product-industry__icon {
        width: 35px;
        height: 35px;
    }

    .product-industry__icon i {
        font-size: 21px;
    }

    .product-guidance__content {
        padding-left: 20px;
    }

    .product-guidance__title {
        font-size: 30px;
    }
}

/* =========================================================
   1200px
========================================================= */
@media (max-width: 1199px) {
    .product-support__container {
        padding-inline: 20px;
    }

    .product-industries__grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .product-industry {
        min-height: 62px;
    }

    .product-faq {
        grid-template-columns:
            minmax(0, 1fr) minmax(300px, 0.9fr);
    }

    .product-guidance {
        grid-template-columns:
            minmax(0, 1.25fr) minmax(160px, 0.65fr) minmax(190px, 0.7fr);
    }

    .product-guidance__title {
        font-size: 28px;
    }

    .product-guidance__description {
        font-size: 9px;
    }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
    .product-support {
        padding-top: 10px;
    }

    .product-support__container {
        padding-inline: 16px;
    }

    .product-industries__grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .product-industry {
        min-height: 65px;
    }

    .product-faq {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-faq__media {
        min-height: 260px;
        order: -1;
    }

    .product-guidance {
        grid-template-columns:
            minmax(0, 1.4fr) minmax(150px, 0.7fr);
        min-height: 155px;
    }

    .product-guidance__expert {
        display: none;
    }

    .product-guidance__benefits {
        padding-right: 18px;
    }
}

/* =========================================================
   MOBILE LANDSCAPE
========================================================= */
@media (max-width: 767px) {
    .product-support {
        padding:
            8px 0 20px;
    }

    .product-support__container {
        padding-inline: 12px;
    }

    .product-support__section-title {
        font-size: 12px;
    }

    .product-industries {
        margin-bottom: 10px;
    }

    .product-industries__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .product-industry {
        min-height: 58px;
        grid-template-columns:
            34px minmax(0, 1fr);
        padding:
            7px 9px;
    }

    .product-industry__icon {
        width: 32px;
        height: 32px;
    }

    .product-industry__icon i {
        font-size: 19px;
    }

    .product-industry__title {
        font-size: 8px;
    }

    .product-faq {
        margin-bottom: 10px;
    }

    .product-faq__media {
        min-height: 210px;
        border-radius: 6px;
    }

    .product-faq__button {
        min-height: 35px;
        padding-inline: 10px;
        font-size: 8px;
    }

    .product-faq__answer-content {
        padding-inline: 10px;
        font-size: 8px;
    }

    .product-guidance {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 4px 0 8px;
    }

    .product-guidance__content {
        padding:
            13px 15px 8px;
    }

    .product-guidance__title {
        margin-bottom: 5px;
        font-size: 26px;
    }

    .product-guidance__description {
        margin-bottom: 10px;
        font-size: 8px;
    }

    .product-guidance__actions {
        gap: 8px;
    }

    .product-guidance__button {
        min-width: 140px;
        min-height: 36px;
        padding-inline: 13px;
        font-size: 8px;
    }

    .product-guidance__benefits {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 7px;
        padding:
            6px 15px 8px;
    }

    .product-guidance__benefit {
        font-size: 8px;
    }
}

/* =========================================================
   MOBILE PORTRAIT
========================================================= */
@media (max-width: 575px) {
    .product-support__container {
        padding-inline: 10px;
    }

    .product-industries__grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-industry {
        min-height: 56px;
        grid-template-columns:
            30px minmax(0, 1fr);
        gap: 6px;
        padding:
            6px 7px;
    }

    .product-industry__icon {
        width: 29px;
        height: 29px;
    }

    .product-industry__icon i {
        font-size: 17px;
    }

    .product-industry__title {
        font-size: 7.5px;
    }

    .product-faq__media {
        min-height: 180px;
    }

    .product-guidance__title {
        font-size: 20px;
    }

    .product-guidance__description {
        font-size: 8px;
    }

    .product-guidance__benefits {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */
@media (max-width: 380px) {
    .product-support__container {
        padding-inline: 8px;
    }

    .product-industries__grid {
        gap: 6px;
    }

    .product-industry {
        min-height: 52px;
        grid-template-columns:
            27px minmax(0, 1fr);
        gap: 5px;
        padding:
            5px 6px;
    }

    .product-industry__icon {
        width: 27px;
        height: 27px;
    }

    .product-industry__icon i {
        font-size: 15px;
    }

    .product-industry__title {
        font-size: 7px;
    }

    .product-faq__button {
        min-height: 33px;
        font-size: 7.5px;
    }

    .product-guidance__content {
        padding-inline: 12px;
    }

    .product-guidance__title {
        font-size: 18px;
    }

    .product-guidance__button {
        min-width: 125px;
        min-height: 34px;
        font-size: 7.5px;
    }
}

/* =========================================================
   TOUCH DEVICES
========================================================= */
@media (hover: none) {
    .product-industry:hover {
        transform: none;
        border-color: #e7ebf2;
        box-shadow:
            0 4px 14px rgba(7, 31, 88, 0.045);
    }

    .product-guidance__button:hover {
        transform: none;
        box-shadow: none;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {

    .product-industry,
    .product-faq__button,
    .product-faq__button i,
    .product-guidance__button {
        transition: none;
    }
}