/* Brochure catalogue – matched to alfa_marine_complete_environment_v43.html */
.brochure-page {
    --navy: #052643;
    --navy2: #0a3557;
    --blue: #078fd0;
    --cyan: #14a8e6;
    --ink: #233746;
    --muted: #6e7f8b;
    --line: #dbe7ee;
    --shadow: 0 16px 44px rgba(5, 38, 67, 0.13);
    background: #f7fbfd;
    color: var(--ink);
    line-height: 1.5;
    font-family: Arial, Helvetica, sans-serif;
}

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

.brochure-page .brochure-container {
    width: min(1200px, calc(100% - 30px));
    margin: auto;
}

.brochure-page .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.65s ease;
}

.brochure-page .reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── Hero ── */
.brochure-page .brochure-hero {
    display: grid;
    grid-template-columns: 41% 59%;
    min-height: 650px;
    background: #fff;
}

.brochure-page .about-panel-split {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(4, 31, 54, 0.96) 0%, rgba(4, 31, 54, 0.92) 54%, rgba(4, 31, 54, 0.8) 100%),
        var(--about-bg, none) center center / cover no-repeat;
}

.brochure-page .about-panel-split::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.08), transparent 25%),
        linear-gradient(90deg, rgba(3, 28, 49, 0.52), rgba(3, 28, 49, 0.06));
    pointer-events: none;
}

.brochure-page .about-content-side {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 650px;
    padding: 48px 42px;
    color: #fff;
}

.brochure-page .exact-brochure-logo {
    display: block;
    width: 270px;
    max-width: 100%;
    margin: 0 0 30px;
    padding: 0;
    background: transparent;
    border: 0;
}

.brochure-page .exact-brochure-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    background: transparent;
}

.brochure-page .about-heading {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 24px 0 8px;
}

.brochure-page .about-heading span {
    color: var(--cyan);
}

.brochure-page .about-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 425px;
    margin: 0;
}

.brochure-page .blue-rule {
    width: 62px;
    height: 3px;
    background: var(--cyan);
    margin: 20px 0;
}

.brochure-page .benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.brochure-page .benefit {
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 12px;
    align-items: center;
}

.brochure-page .icon-circle {
    width: 43px;
    height: 43px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--cyan);
    font-size: 19px;
}

.brochure-page .benefit strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

.brochure-page .benefit small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.25;
}

.brochure-page .contact-area.contact-with-qr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 20px;
    width: 100%;
    margin-top: 28px;
}

.brochure-page .contact-area .contact-details {
    min-width: 0;
}

.brochure-page .contact-title {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.brochure-page .contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    margin: 7px 0;
}

.brochure-page .contact-line .bi {
    color: var(--cyan);
    font-size: 14px;
    flex-shrink: 0;
}

.brochure-page .contact-area .qr-link {
    justify-self: start;
    align-self: end;
    margin: 0;
    display: inline-flex;
    padding: 7px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    transition: 0.22s ease;
}

.brochure-page .contact-area .qr-link:hover {
    transform: translateY(-3px) scale(1.02);
}

.brochure-page .contact-area .qr-image {
    display: block;
    width: 92px;
    height: 92px;
    object-fit: contain;
}

/* Ship panel */
.brochure-page .ship-panel {
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

.brochure-page .ship-panel > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.brochure-page .ship-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(2, 27, 47, 0.86), rgba(2, 27, 47, 0.03) 58%);
}

.brochure-page .ship-logo {
    position: absolute;
    top: 24px;
    left: 30px;
    z-index: 30;
    width: 255px;
    max-width: calc(100% - 40px);
    margin: 0;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.brochure-page .ship-logo.exact-brochure-logo {
    margin-bottom: 0;
}

.brochure-page .ship-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    background: transparent;
}

.brochure-page .ship-text {
    position: absolute;
    left: 48px;
    right: 40px;
    bottom: 34px;
    z-index: 5;
    color: #fff;
}

.brochure-page .ship-kicker {
    font-size: 18px;
    font-weight: 900;
}

.brochure-page .ship-title {
    margin: 5px 0 16px;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.brochure-page .ship-title span {
    display: block;
    color: var(--cyan);
}

.brochure-page .tick-list {
    display: grid;
    gap: 5px;
    font-size: 14px;
    font-weight: 800;
}

.brochure-page .tick-list span::before {
    content: "✓";
    color: var(--cyan);
    margin-right: 8px;
}

.brochure-page .service-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
    max-width: 520px;
}

.brochure-page .service {
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.2;
}

.brochure-page .service .service-icon {
    font-size: 25px;
    display: block;
    margin-bottom: 7px;
    color: var(--cyan);
}

.brochure-page .ship-url {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    color: #fff;
    background: var(--blue);
    padding: 8px 46px 8px 95px;
    font-size: 12px;
    font-weight: 800;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

/* ── Categories + brands row ── */
.brochure-page .content-section {
    padding: 34px 0;
}

.brochure-page .brochure-bottom-section {
    padding-top: 0;
}

.brochure-page .content-section .brochure-container.two-col {
    width: min(1480px, calc(100% - 24px)) !important;
    max-width: none !important;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(420px, 0.95fr);
    gap: 18px;
}

.brochure-page .section-box {
    background: #fff;
    border: 1px solid var(--line);
    padding: 20px;
    box-shadow: var(--shadow);
}

.brochure-page .box-title {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.brochure-page .static-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff;
}

.brochure-page .static-category-grid .product-card {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transform: none;
    text-decoration: none;
    color: inherit;
}

.brochure-page .static-category-grid .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(5, 38, 67, 0.12);
    position: relative;
    z-index: 2;
}

.brochure-page .static-category-grid .product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    object-position: center;
    padding: 0;
    background: #fff;
}

.brochure-page .static-category-grid .product-label {
    min-height: 58px;
    padding: 10px 9px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    line-height: 1.18;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    letter-spacing: 0.01em;
}

.brochure-page .static-category-grid .product-label .bi {
    color: var(--cyan);
    font-size: 24px;
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex: 0 0 24px;
    line-height: 1;
}

.brochure-page .static-category-grid .product-label span {
    color: #fff;
}

/* Brands */
.brochure-page .brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff;
}

.brochure-page .brand-grid .brand-tile {
    height: 112px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    transform: none;
    transition: 0.2s;
}

.brochure-page .brand-grid .brand-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(5, 38, 67, 0.12);
    position: relative;
    z-index: 2;
}

.brochure-page .brand-grid .brand-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #fff;
    padding: 0;
}

/* ── Bottom layout ── */
.brochure-page .content-section .brochure-container.bottom-layout {
    width: min(1480px, calc(100% - 24px)) !important;
    max-width: none !important;
}

.brochure-page .bottom-layout {
    display: grid;
    grid-template-columns:
        minmax(240px, 0.68fr)
        minmax(445px, 1.02fr)
        minmax(740px, 1.72fr);
    grid-template-areas:
        "why industries catalogue"
        "logistics logistics catalogue";
    gap: 16px;
    align-items: start;
}

.brochure-page .bottom-layout .section-box {
    border: 1px solid #dfe7ed;
    box-shadow: none;
    border-radius: 0;
    background: #fff;
}

.brochure-page .why-choose-card {
    grid-area: why;
    padding: 22px 22px 18px;
}

.brochure-page .industries-card {
    grid-area: industries;
    padding: 14px 14px 12px;
}

.brochure-page .logistics-card {
    grid-area: logistics;
    padding: 14px 18px 14px;
    min-width: 0;
}

.brochure-page .catalogue-section {
    grid-area: catalogue;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d9e4eb;
    background: #fff;
    box-shadow: none;
    height: 100%;
}

.brochure-page .why-choose-card .box-title,
.brochure-page .industries-card .box-title {
    color: #1566b0;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.brochure-page .brochure-why-list {
    display: grid;
    gap: 18px;
}

.brochure-page .brochure-why-list .why-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.brochure-page .brochure-why-list .why-check {
    width: 28px;
    height: 28px;
    background: #1b73c9;
    border-radius: 50%;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 900;
    margin-top: 1px;
}

.brochure-page .brochure-why-list strong {
    display: block;
    color: #1f2f3d;
    font-size: 14px;
    line-height: 1.2;
    text-transform: none;
}

.brochure-page .brochure-why-list small {
    display: block;
    color: #525f69;
    font-size: 13px;
    line-height: 1.2;
    margin-top: 2px;
}

/* Industries */
.brochure-page .brochure-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.brochure-page .brochure-industry-grid .industry {
    position: relative;
    height: 138px;
    border: 1px solid #dfe7ed;
    overflow: hidden;
}

.brochure-page .brochure-industry-grid .industry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.35s;
}

.brochure-page .brochure-industry-grid .industry:hover img {
    transform: scale(1.05);
}

.brochure-page .brochure-industry-grid .industry span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6px 4px;
    background: rgba(6, 39, 67, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

/* Logistics */
.brochure-page .logistics-main-title {
    margin: 0 0 10px;
    color: #1566b0;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.08;
}

.brochure-page .logistics-content-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 1.05fr);
    gap: 18px;
    align-items: center;
}

.brochure-page .courier-logo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 0 10px;
}

.brochure-page .courier-logo {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 0;
    padding: 4px 8px;
}

.brochure-page .courier-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.brochure-page .logistics-caption {
    margin: 0;
    color: #394854;
    font-size: 13px;
    line-height: 1.25;
}

.brochure-page .brochure-map {
    border: 0;
    background: transparent;
}

.brochure-page .brochure-map img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Catalogue card (reference grid layout) ── */
.brochure-page .catalogue-html-card {
    position: relative;
    display: grid;
    grid-template-columns: 46% 54%;
    grid-template-rows: 90px auto;
    width: 100%;
    min-height: 540px;
    overflow: hidden;
    background: #fff;
}

.brochure-page .catalogue-feature-bar {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    min-height: 90px;
    padding: 0 12px;
    margin: 0;
    display: grid;
    grid-template-columns:
        minmax(0, 0.72fr)
        minmax(0, 0.72fr)
        minmax(0, 1.38fr)
        minmax(0, 1.18fr);
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, #062743 0%, #0b3b63 50%, #062743 100%);
    color: #fff;
    z-index: 5;
    box-sizing: border-box;
}

.brochure-page .catalogue-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    min-width: 0;
    padding: 0;
    text-transform: uppercase;
    overflow: hidden;
}

.brochure-page .catalogue-feature-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    border: 0;
    border-radius: 0;
    background: transparent;
    margin-right: 0;
}

.brochure-page .catalogue-feature-icon .bi {
    display: block;
    line-height: 1;
}

.brochure-page .catalogue-feature-copy {
    min-width: 0;
    flex: 1 1 auto;
    white-space: normal;
    overflow: hidden;
}

.brochure-page .catalogue-feature b,
.brochure-page .catalogue-feature small {
    display: block;
    color: #fff;
    line-height: 1.05;
    white-space: nowrap;
}

.brochure-page .catalogue-feature b {
    font-size: 12px;
    font-weight: 900;
}

.brochure-page .catalogue-feature small {
    font-size: 10px;
    font-weight: 700;
}

.brochure-page .catalogue-html-grid {
    display: contents;
}

.brochure-page .catalogue-cover-html {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    overflow: hidden;
    min-height: 540px;
    height: 100%;
    background: linear-gradient(145deg, #031d33, #073a60);
}

.brochure-page .catalogue-engine-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 72% center;
    background-repeat: no-repeat;
    filter: saturate(0.88) brightness(0.88);
}

.brochure-page .catalogue-cover-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 19, 34, 0.94) 0%, rgba(3, 27, 48, 0.8) 44%, rgba(5, 45, 75, 0.36) 100%);
}

.brochure-page .catalogue-cover-content-html {
    position: relative;
    z-index: 2;
    min-height: 540px;
    padding: 24px 24px 72px;
    color: #fff;
}

.brochure-page .catalogue-official-logo {
    display: block;
    width: 230px;
    max-width: 72%;
    height: auto;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 42px;
}

.brochure-page .catalogue-cover-copy h3 {
    margin: 0;
    color: #fff;
    font-size: 29px;
    line-height: 1.02;
    font-weight: 900;
    text-transform: uppercase;
}

.brochure-page .catalogue-year-html {
    margin-top: 8px;
    color: #087dd8;
    font-size: 58px;
    line-height: 0.92;
    font-weight: 900;
}

.brochure-page .catalogue-accent-line {
    width: 46px;
    height: 4px;
    background: #148ee5;
    margin: 14px 0 16px;
}

.brochure-page .catalogue-accent-line-bottom {
    margin-top: 16px;
    margin-bottom: 0;
}

.brochure-page .catalogue-cover-copy p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.brochure-page .catalogue-site-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    color: #fff;
    background: linear-gradient(90deg, #154a82, #1267b4);
    font-size: 14px;
    font-weight: 800;
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.brochure-page .catalogue-contents-html {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    z-index: 3;
    margin-left: 0;
    padding: 18px 24px 14px 26px;
    background:
        radial-gradient(circle at 90% 90%, rgba(21, 104, 178, 0.06), transparent 30%),
        #fff;
    border-left: 1px solid #dce5ec;
    box-shadow: -6px 0 16px rgba(0, 0, 0, 0.1);
    min-height: 0;
    height: auto;
}

.brochure-page .catalogue-contents-html h3 {
    margin: 0 0 10px;
    color: #1771bd;
    font-size: 27px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.brochure-page .catalogue-list {
    display: grid;
    gap: 0;
}

.brochure-page .catalogue-list > div {
    display: grid;
    grid-template-columns: 27px 1fr 31px;
    gap: 8px;
    align-items: center;
    min-height: 25px;
    border-bottom: 1px solid #dce5ec;
    color: #2a3d4c;
    font-size: 10px;
}

.brochure-page .catalogue-list b,
.brochure-page .catalogue-list em {
    font-style: normal;
    font-weight: 900;
    color: #42525e;
}

.brochure-page .catalogue-list span {
    font-weight: 800;
    text-transform: uppercase;
}

/* ── Footer strip ── */
.brochure-page .brochure-footer-strip {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #052643;
    color: #fff;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brochure-page .brochure-footer-strip .brochure-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.brochure-page .brochure-footer-grid {
    width: 100%;
    min-height: 100px;
    display: grid;
    grid-template-columns:
        minmax(150px, 0.8fr)
        minmax(180px, 1fr)
        minmax(180px, 1fr)
        minmax(180px, 1fr)
        minmax(330px, 1.45fr)
        minmax(310px, 1.3fr);
    align-items: stretch;
    background: #052643;
}

.brochure-page .footer-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 14px;
    min-width: 0;
}

.brochure-page .footer-stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
    border: 0;
    padding: 0;
}

.brochure-page .footer-stat-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.brochure-page .footer-stat-icon .bi {
    font-size: 28px;
    line-height: 1;
    color: #fff;
}

.brochure-page .footer-stat strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.brochure-page .footer-stat small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
    line-height: 1.15;
    text-transform: uppercase;
    margin-top: 3px;
}

.brochure-page .footer-partner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 18px 22px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: #052643;
}

.brochure-page .footer-partner b {
    color: #22a7e8;
    font-weight: 900;
}

.brochure-page .footer-partner::after {
    display: none;
}

.brochure-page .footer-slash {
    width: 2px;
    height: 54px;
    background: rgba(255, 255, 255, 0.75);
    transform: skew(-28deg);
    flex: 0 0 2px;
}

.brochure-page .footer-ship {
    position: relative;
    min-height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #052643;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.brochure-page .footer-ship::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #052643 0%, rgba(5, 38, 67, 0.3) 36%, transparent 72%);
}

/* ── Responsive ── */
@media (max-width: 1500px) {
    .brochure-page .bottom-layout {
        grid-template-columns:
            minmax(230px, 0.7fr)
            minmax(425px, 1fr)
            minmax(650px, 1.56fr);
    }

    .brochure-page .catalogue-feature b {
        font-size: 11px;
    }

    .brochure-page .catalogue-feature small {
        font-size: 9px;
    }

    .brochure-page .catalogue-feature-icon {
        font-size: 16px;
    }
}

@media (max-width: 1260px) {
    .brochure-page .bottom-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "why industries"
            "logistics logistics"
            "catalogue catalogue";
    }

}

@media (max-width: 1200px) {
    .brochure-page .brochure-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .brochure-page .footer-partner {
        grid-column: 1 / 3;
    }

    .brochure-page .footer-ship {
        grid-column: 3 / 5;
        min-height: 110px;
    }
}

@media (max-width: 1180px) {
    .brochure-page .content-section .brochure-container.two-col {
        grid-template-columns: 1fr;
        width: min(1100px, calc(100% - 24px)) !important;
    }

    .brochure-page .brand-grid .brand-tile {
        height: 110px;
    }
}

@media (max-width: 1050px) {
    .brochure-page .brochure-hero {
        grid-template-columns: 1fr;
    }

    .brochure-page .static-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .brochure-page .about-content-side {
        min-height: auto;
        padding: 36px 22px;
    }

    .brochure-page .contact-area.contact-with-qr {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .brochure-page .contact-area .qr-image {
        width: 82px;
        height: 82px;
    }

    .brochure-page .benefit-grid {
        grid-template-columns: 1fr;
    }

    .brochure-page .ship-panel {
        min-height: 570px;
    }

    .brochure-page .ship-logo {
        top: 18px;
        left: 18px;
        width: 205px;
    }

    .brochure-page .ship-text {
        left: 22px;
        right: 22px;
    }

    .brochure-page .service-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .brochure-page .static-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brochure-page .static-category-grid .product-card img {
        height: 125px;
    }

    .brochure-page .static-category-grid .product-label {
        min-height: 54px;
        font-size: 11px;
        padding: 8px 6px;
    }

    .brochure-page .static-category-grid .product-label .bi {
        font-size: 20px;
        width: 20px;
        height: 20px;
        min-width: 20px;
        flex-basis: 20px;
    }

    .brochure-page .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brochure-page .brand-grid .brand-tile {
        height: 90px;
    }

    .brochure-page .content-section .brochure-container.bottom-layout {
        width: 100%;
        max-width: none;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }

    .brochure-page .bottom-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "why"
            "industries"
            "logistics"
            "catalogue";
        gap: 14px;
    }

    .brochure-page .logistics-content-grid {
        grid-template-columns: 1fr;
    }

    .brochure-page .brochure-industry-grid .industry {
        height: 120px;
    }

    .brochure-page .catalogue-html-card {
        display: block;
        min-height: auto;
    }

    .brochure-page .catalogue-feature-bar {
        width: 100%;
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        padding: 10px 8px;
        row-gap: 10px;
    }

    .brochure-page .catalogue-feature b {
        font-size: 11px;
    }

    .brochure-page .catalogue-feature small {
        font-size: 9px;
    }

    .brochure-page .catalogue-feature-icon {
        font-size: 15px;
    }

    .brochure-page .catalogue-cover-html,
    .brochure-page .catalogue-cover-content-html {
        min-height: 430px;
    }

    .brochure-page .catalogue-contents-html {
        margin-left: 0;
        box-shadow: none;
        border-left: 0;
    }

    .brochure-page .brochure-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brochure-page .footer-stat {
        justify-content: flex-start;
        padding: 16px 18px;
    }

    .brochure-page .footer-partner {
        grid-column: 1 / -1;
    }

    .brochure-page .footer-ship {
        grid-column: 1 / -1;
        min-height: 130px;
        clip-path: none;
    }
}

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

    .brochure-page .footer-partner,
    .brochure-page .footer-ship {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brochure-page .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
