/*
Responsive scale policy
-----------------------
Desktop / standard monitor: 769px and wider (base rules)
Mobile: 768px and narrower (single override block)
There are intentionally no separate tablet or small-phone breakpoints.
*/

:root {
    --navy-950: #00142b;
    --navy-900: #031d3a;
    --navy-850: #062746;
    --navy-800: #0a3158;
    --orange: #f04b0d;
    --orange-dark: #d93e00;
    --ink: #071936;
    --muted: #5d6878;
    --line: #dce3ea;
    --surface: #ffffff;
    --page: #f4f7fa;
    --page-width: 1380px;
    --header-height: 86px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 122px;
}

body {
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 92% 7%, rgba(8, 71, 119, 0.08), transparent 26%),
        var(--page);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body::before {
    height: 30px;
    padding: 0 max(24px, calc((100% - var(--page-width)) / 2));
    display: flex;
    align-items: center;
    color: #ffffff;
    background: linear-gradient(90deg, #001b39, #00132a);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1px;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.utility-bar {
    padding: 0 max(24px, calc((100% - var(--page-width)) / 2));
    background: linear-gradient(90deg, #001b39, #00132a);
    color: #fff;
    font-size: 12px;
}

.utility-bar__inner {
    width: 100%;
    min-height: 30px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.utility-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.utility-links a {
    text-decoration: none;
    padding: 0 13px;
    border-right: 1px solid rgba(255, 255, 255, .55);
}

.utility-links a:last-child {
    padding-right: 0;
    border-right: 0;
}

.utility-links a:hover {
    color: #ffb292;
}

/* =========================================================
   Header and navigation
   ========================================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    padding: 0 max(24px, calc((100% - var(--page-width)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e3e8ee;
    box-shadow: 0 4px 16px rgba(0, 20, 48, 0.08);
    backdrop-filter: blur(10px);
}

.logo {
    min-width: 315px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #08183e;
    text-decoration: none;
}

.brand__name {
    color: #08183e;
    font-size: 25px;
    font-weight: 800;
    line-height: .92;
    letter-spacing: .4px;
}

.logo-icon {
    width: 112px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header > nav {
    margin-left: auto;
}

header > nav > ul {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

header > nav > ul > li {
    position: relative;
}

header > nav > ul > li > a {
    position: relative;
    min-height: var(--header-height);
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

header > nav > ul > li > a:hover,
header > nav > ul > li.dropdown.active > a {
    color: var(--orange);
}

header > nav > ul > li:nth-last-child(2) > a::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    height: 3px;
    background: var(--orange);
}

header > nav > ul > li:last-child > a {
    min-height: 42px;
    margin-left: 8px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(180deg, #f65b11, #e74500);
    border-radius: 4px;
    box-shadow: 0 5px 12px rgba(228, 68, 0, 0.2);
}

header > nav > ul > li:last-child > a:hover {
    color: #ffffff;
    background: var(--orange-dark);
}

.dropdown-toggle::after {
    content: "▾";
    margin-left: 7px;
    font-size: 10px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    width: 245px;
    padding: 9px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    background: #ffffff;
    border: 1px solid #e4e9ef;
    border-radius: 6px;
    box-shadow: 0 18px 38px rgba(0, 20, 48, 0.18);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--ink);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--orange);
    background: #f2f5f8;
}

/* =========================================================
   About hero
   ========================================================= */
.about-section {
    position: relative;
    min-height: 610px;
    padding: 88px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    background-image: url("../../assets/background2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0, 20, 43, 0.98) 0%, rgba(0, 28, 58, 0.9) 48%, rgba(0, 20, 43, 0.72) 100%);
}

.about-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.about-section p {
    width: min(980px, 100%);
    padding: 44px 48px;
    color: #ffffff;
    background: rgba(2, 27, 54, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 8, 24, 0.36);
    font-size: 18px;
    line-height: 1.85;
    text-align: left;
    backdrop-filter: blur(5px);
}

/* =========================================================
   Shared contact form section
   ========================================================= */
.contact-section {
    position: relative;
    padding: 76px 30px 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background:
        linear-gradient(180deg, rgba(244, 247, 250, 0.96), #ffffff),
        var(--page);
}

.contact-section h2 {
    position: relative;
    margin-bottom: 34px;
    color: var(--navy-900);
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-section h2::after {
    content: "";
    width: 64px;
    height: 4px;
    margin: 14px auto 0;
    display: block;
    background: var(--orange);
}

.contact-form {
    width: min(760px, 100%);
    padding: 38px;
    background: #ffffff;
    border: 1px solid #dfe6ed;
    border-top: 4px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 24, 55, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 7px;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15px;
}

.form-group label .required {
    margin-left: 3px;
    color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    color: var(--ink);
    background: #f9fbfc;
    border: 1px solid #cfd8e2;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group textarea {
    min-height: 116px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 75, 13, 0.12);
}

.form-group h3 {
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.system-section {
    margin-bottom: 20px;
    padding: 20px;
    background: #f3f6f9;
    border: 1px solid #dce4ec;
    border-left: 4px solid var(--orange);
    border-radius: 6px;
}

.system-subsection {
    margin-bottom: 16px;
}

.system-subsection:last-child {
    margin-bottom: 0;
}

.system-subsection > label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-900);
    font-weight: 800;
}

.checkbox-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.checkbox-row label {
    min-height: 42px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #34445a;
    background: #ffffff;
    border: 1px solid #d9e1e9;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.checkbox-row input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--orange);
}

.submit-btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 28px;
    color: #ffffff;
    background: linear-gradient(180deg, #f65b11, #e74500);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(227, 66, 0, 0.23);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: var(--orange-dark);
    box-shadow: 0 12px 24px rgba(227, 66, 0, 0.28);
}

.submit-btn:active {
    transform: translateY(0);
}

/* =========================================================
   Supply chain section
   ========================================================= */
.supply-chain-section {
    padding: 76px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    border-top: 1px solid #e3e8ee;
    border-bottom: 1px solid #e3e8ee;
}

.supply-chain-images {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.supply-chain-images img {
    width: 100%;
    height: 126px;
    padding: 16px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #dce4ec;
    border-bottom: 3px solid var(--navy-800);
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0, 27, 57, 0.08);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.supply-chain-images img:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    border-bottom-color: var(--orange);
    box-shadow: 0 16px 32px rgba(0, 27, 57, 0.14);
}

.supply-chain-text {
    max-width: 840px;
    color: var(--navy-900);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
    text-align: center;
}

.supply-chain-text-block {
    max-width: 820px;
    margin-top: 4px;
    padding: 20px 26px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--navy-850), var(--navy-950));
    border-left: 4px solid var(--orange);
    border-radius: 6px;
    box-shadow: 0 16px 34px rgba(0, 22, 48, 0.18);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   Partners grid
   ========================================================= */
.partners-banner-section {
    width: min(1240px, calc(100% - 60px));
    margin: 0 auto;
    padding: 74px 0 82px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.partner-banner,
.partner-banner-featured {
    min-width: 0;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #dfe6ed;
    border-top: 3px solid var(--navy-800);
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 25, 53, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-banner:hover,
.partner-banner-featured:hover {
    transform: translateY(-4px);
    border-top-color: var(--orange);
    box-shadow: 0 16px 32px rgba(0, 25, 53, 0.13);
}

.partner-banner a,
.partner-banner-featured a {
    order: 1;
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.partner-banner-title {
    order: 2;
    min-height: 38px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
}

.partner-banner img,
.partner-banner-featured img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 76px;
    object-fit: contain;
    display: block;
    transition: transform 0.22s ease;
}

.partner-banner a:hover img,
.partner-banner-featured a:hover img {
    transform: scale(1.04);
}

.partner-banner-featured {
    grid-column: 2 / span 2;
    min-height: 270px;
    padding: 30px 24px;
    border-top-width: 4px;
    border-top-color: var(--orange);
    background:
        linear-gradient(135deg, rgba(8, 49, 88, 0.04), transparent 52%),
        #ffffff;
}

.partner-banner-featured a {
    height: 178px;
}

.partner-banner-featured img {
    max-width: 330px;
    max-height: 150px;
}

.partner-banner-featured .partner-banner-title {
    min-height: auto;
    font-size: 23px;
}

/* =========================================================
   Footer
   ========================================================= */
footer {
    padding: 54px 30px 24px;
    color: #dce7f2;
    background: linear-gradient(135deg, #062746, #00142b 76%);
    border-top: 4px solid var(--orange);
}

.footer-content {
    width: min(var(--page-width), 100%);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 34px;
}

.footer-logo-section,
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 9px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.footer-section h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
    list-style: none;
}

.footer-section a {
    color: #b9c9d9;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #ff9a70;
}

.footer-bottom {
    width: min(var(--page-width), 100%);
    margin: 0 auto;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-copyright,
.footer-description {
    margin: 0;
    color: #9fb1c3;
    font-size: 12px;
}

.footer-description {
    max-width: 680px;
    text-align: right;
}

/* =========================================================
   Responsive
   ========================================================= */






/* =========================================================
   Distribution coverage checker
   ========================================================= */
.distribution-check-section {
    position: relative;
    padding: 78px 30px 84px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(3, 29, 58, 0.98), rgba(0, 20, 43, 0.98)),
        var(--navy-950);
    border-top: 4px solid var(--orange);
}

.distribution-check-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
}

.distribution-check-container {
    position: relative;
    z-index: 1;
    width: min(880px, 100%);
    margin: 0 auto;
    text-align: center;
}

.distribution-check-heading {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.distribution-check-heading::after {
    content: "";
    width: 64px;
    height: 4px;
    margin: 16px auto 0;
    display: block;
    background: var(--orange);
}

.distribution-check-intro {
    max-width: 680px;
    margin: 20px auto 30px;
    color: #c9d8e6;
    font-size: 16px;
    line-height: 1.65;
}

.distribution-check-form {
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 8, 24, 0.32);
    backdrop-filter: blur(8px);
}

.distribution-region-field {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.distribution-region-field label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25px;
}

.distribution-region-select {
    width: 100%;
    min-height: 48px;
    padding: 11px 42px 11px 14px;
    color: var(--ink);
    background-color: #ffffff;
    border: 1px solid #cfd8e2;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.distribution-region-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 75, 13, 0.18);
}

.distribution-check-button,
.distribution-contact-button {
    min-height: 48px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(180deg, #f65b11, #e74500);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 8px 18px rgba(227, 66, 0, 0.24);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.distribution-check-button:hover,
.distribution-contact-button:hover {
    transform: translateY(-2px);
    background: var(--orange-dark);
    box-shadow: 0 12px 24px rgba(227, 66, 0, 0.3);
}

.distribution-check-button:active,
.distribution-contact-button:active {
    transform: translateY(0);
}

.distribution-result {
    display: none;
    margin-top: 22px;
    padding: 22px 24px;
    text-align: left;
    border-radius: 6px;
    box-shadow: 0 16px 34px rgba(0, 8, 24, 0.22);
    animation: distributionResultIn 0.28s ease;
}

.distribution-result.is-visible {
    display: block;
}

.distribution-result.is-success {
    color: #eafff1;
    background: linear-gradient(135deg, #0e5c3d, #083e2a);
    border: 1px solid rgba(170, 255, 210, 0.32);
    border-left: 4px solid #55d990;
}

.distribution-result.is-unavailable {
    color: #fff1ed;
    background: linear-gradient(135deg, #7b2a17, #4a170c);
    border: 1px solid rgba(255, 194, 174, 0.28);
    border-left: 4px solid var(--orange);
}

.distribution-result-title {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.distribution-result-message {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.distribution-contact-button {
    margin-top: 16px;
}

@keyframes distributionResultIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   Unified mobile scale
   ========================================================= */
@media (max-width: 768px) {
.logo {
        min-width: 250px;
    }

    .logo::after {
        font-size: 20px;
    }

    header > nav > ul > li > a {
        padding-inline: 12px;
        font-size: 12px;
    }

    .supply-chain-images {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .partners-banner-section {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .partner-banner-featured {
        grid-column: 1 / -1;
        width: calc((100% - 22px) * 2 / 3);
        justify-self: center;
    }

    .footer-content {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

body::before {
        justify-content: center;
    }

    header {
        position: relative;
        padding-block: 16px;
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        min-width: 0;
    }

    header > nav {
        margin-left: 0;
        width: 100%;
    }

    header > nav > ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    header > nav > ul > li > a {
        min-height: 42px;
    }

    header > nav > ul > li:nth-last-child(2) > a::before {
        bottom: 2px;
    }

    .dropdown-menu {
        top: 100%;
    }

    .about-section {
        min-height: 520px;
        padding: 64px 24px;
    }

    .about-section p {
        padding: 32px;
        font-size: 16px;
    }

    .supply-chain-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners-banner-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-banner-featured {
        grid-column: 1 / -1;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-logo-section {
        grid-column: 1 / -1;
    }

body::before {
        height: 28px;
        padding-inline: 18px;
        font-size: 11px;
    }

    header {
        padding-inline: 18px;
    }

    .logo-icon {
        width: 88px;
        height: 48px;
    }

    .logo::after {
        font-size: 17px;
    }

    header > nav > ul > li > a {
        padding-inline: 9px;
        font-size: 11px;
    }

    header > nav > ul > li:last-child > a {
        margin-left: 0;
        padding-inline: 14px;
    }

    .dropdown-menu {
        left: 0;
        width: min(245px, calc(100vw - 36px));
        transform: translate(0, 10px);
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        transform: translate(0, 0);
    }

    .about-section {
        min-height: 460px;
        padding: 48px 18px;
        background-attachment: scroll;
    }

    .about-section p {
        padding: 26px 22px;
        border-left-width: 4px;
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-section,
    .supply-chain-section {
        padding: 54px 18px;
    }

    .contact-form {
        padding: 26px 20px;
    }

    .form-row,
    .checkbox-row {
        grid-template-columns: 1fr;
    }

    .supply-chain-images {
        grid-template-columns: 1fr;
    }

    .supply-chain-images img {
        height: 112px;
    }

    .supply-chain-text {
        font-size: 17px;
    }

    .partners-banner-section {
        width: calc(100% - 36px);
        padding-block: 54px;
        grid-template-columns: 1fr;
    }

    .partner-banner-featured {
        min-height: 220px;
    }

    .partner-banner-featured a {
        height: 135px;
    }

    .partner-banner-featured .partner-banner-title {
        font-size: 19px;
    }

    footer {
        padding: 42px 20px 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .footer-description {
        text-align: left;
    }

.distribution-check-section {
        padding: 58px 18px 64px;
    }

    .distribution-check-form {
        padding: 22px 18px;
        grid-template-columns: 1fr;
    }

    .distribution-check-button,
    .distribution-contact-button {
        width: 100%;
    }

    .distribution-result {
        padding: 20px;
    }
}
