/* Medical Warehouse Global — Vertical Scroll Redesign */
:root {
    --mwg-blue: #3B8BC4;
    --mwg-green: #2AA641;
    --dark-bg: #151515;
    --dark-card: #1c1c1c;
    --light-grey: #e8e7e3;
    --text-main-light: #ffffff;
    --text-muted-light: #a0a0a0;
    --text-main-dark: #1a1a1a;
    --text-muted-dark: #555555;
    --font-body: 'Roboto', sans-serif;
    --font-heading: 'Roboto', sans-serif;
    --font-accent: 'Roboto', sans-serif;
    --content-max: 900px;
    --section-max: 1100px;
    --banner-height: 70px;
    --toc-height: 48px;
}

/* ── Reset ───────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── TOP BANNER ──────────────────────────────── */
.top-banner {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 2px solid var(--mwg-blue);
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: var(--banner-height);
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mwg-logo {
    height: 38px;
    width: auto;
}

.chiltern-logo {
    height: 28px;
    width: auto;
}

.banner-center {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main-dark);
    letter-spacing: 0.5px;
}

.banner-center a {
    color: var(--text-main-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.banner-center a:hover {
    color: var(--mwg-blue);
}

.banner-center a.banner-email {
    color: var(--mwg-green);
    font-weight: 700;
}

.banner-center a.banner-email:hover {
    color: #34c050;
}

.banner-center .divider {
    color: #ccc;
    font-weight: 400;
}

.banner-right {
    display: flex;
    align-items: center;
}

.export-logos {
    height: 44px;
    width: auto;
}

/* ── HERO ────────────────────────────────────── */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--banner-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/hero_bg.jpeg') center center / cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(230, 230, 230, 0.95) 0%, rgba(240, 240, 240, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 20px;
    max-width: 800px;
    color: var(--text-main-dark);
}

.title-accent {
    letter-spacing: 4px;
}

.hero-tagline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-left: 2px;
}

.tagline-green {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--mwg-green);
    font-style: italic;
}

.tagline-bullet {
    color: var(--mwg-green);
    font-size: 1.2rem;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--text-muted-dark);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-dark);
}

.hero-trust-badges .bullet {
    color: var(--mwg-blue);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    color: var(--text-main-dark);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* ── ABOUT SECTION ───────────────────────────── */
.about-section {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--dark-bg) 100%);
    padding: 100px 40px 80px;
    border-top: 3px solid var(--mwg-blue);
}

.section-inner {
    max-width: var(--section-max);
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--mwg-green);
    margin-bottom: 10px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-main-light);
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-bottom: 60px;
    font-weight: 300;
}

.about-lead strong {
    color: var(--mwg-blue);
    font-weight: 600;
}

/* Strengths Grid */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.strength-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 28px 22px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.strength-card:hover {
    border-color: var(--mwg-green);
    background: rgba(42, 166, 65, 0.04);
    transform: translateY(-3px);
}

.strength-icon {
    color: var(--mwg-green);
    margin-bottom: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 166, 65, 0.1);
    border-radius: 8px;
}

.strength-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main-light);
    margin-bottom: 10px;
    line-height: 1.3;
}

.strength-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

/* Credentials Bar */
.credentials-bar {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.credential {
    flex: 1;
    padding: 24px 28px;
}

.credential-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.credential-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mwg-blue);
    margin-bottom: 6px;
}

.credential-value {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ── PRODUCTS SECTION ────────────────────────── */
.products-section {
    background: var(--dark-bg);
    position: relative;
    padding-bottom: 80px;
}

/* Sticky TOC */
.product-toc {
    position: sticky;
    top: var(--banner-height);
    z-index: 900;
    background: rgba(21, 21, 21, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    height: var(--toc-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toc-inner {
    display: flex;
    gap: 6px;
    max-width: var(--section-max);
    padding: 0 20px;
}

.toc-link {
    display: inline-block;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toc-link:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.toc-link.active {
    color: #fff;
    background: rgba(42, 166, 65, 0.15);
    border-color: var(--mwg-green);
}

/* Products Container */
.products-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 30px;
}

/* Individual Product Card */
.product-card {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    scroll-margin-top: calc(var(--banner-height) + var(--toc-height) + 20px);
    opacity: 0;
    transform: translateY(40px);
}

.product-card:last-child {
    border-bottom: none;
}

.product-layout {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.product-text {
    flex: 1;
    min-width: 0;
}

.product-image {
    flex: 0 0 320px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: calc(var(--banner-height) + var(--toc-height) + 40px);
}

.product-image img {
    max-width: 100%;
    max-height: 45vh;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.03) translateY(-4px);
}

/* Product Typography */
.product-header h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-main-light);
    line-height: 1.1;
    margin-bottom: 5px;
}

.product-header h3 {
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--mwg-blue);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

/* Use-Case Badges */
.use-case-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.use-case-badges .badge {
    display: inline-block;
    padding: 4px 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s, background 0.3s;
}

.use-case-badges .badge:hover {
    border-color: var(--mwg-green);
    background: rgba(42, 166, 65, 0.1);
}

.use-case-badges .badge-accent {
    border-color: var(--mwg-blue);
    color: var(--mwg-blue);
    background: rgba(59, 139, 196, 0.1);
}

/* Best Seller Badge */
.badge-bestseller {
    border-color: #d4a739 !important;
    color: #d4a739 !important;
    background: rgba(212, 167, 57, 0.12) !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    animation: bestsellerPulse 3s ease-in-out infinite;
}

@keyframes bestsellerPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 167, 57, 0);
    }

    50% {
        box-shadow: 0 0 12px 2px rgba(212, 167, 57, 0.25);
    }
}

/* Product Intro */
.product-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 14px;
    font-weight: 300;
    border-left: 3px solid rgba(255, 255, 255, 0.12);
    padding-left: 16px;
}

/* Pouch Spec */
.pouch-spec {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

/* Contents List */
.contents-list {
    background: rgba(0, 0, 0, 0.4);
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid var(--mwg-green);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contents-list.highlight-list {
    border-left-color: var(--mwg-blue);
}

.contents-list h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-main-light);
    letter-spacing: 0.5px;
}

.contents-list ul {
    list-style: none;
}

.contents-list li {
    font-size: 0.88rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.contents-list li:last-child {
    border-bottom: none;
}

.contents-list li em {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

/* MARCH Labels */
.contents-list li.march-label {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mwg-green);
    border-bottom: none;
    padding: 10px 0 2px 0;
    background: none;
}

.contents-list li.march-label::before {
    content: attr(data-march);
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    background: var(--mwg-green);
    color: #000;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
}

.contents-list li.march-label:first-child {
    padding-top: 0;
}

/* Module Labels (T.E.A.M.S.) */
.module-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--mwg-blue);
    padding: 10px 0 3px 0;
    border-bottom: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.module-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--mwg-blue);
    border-radius: 2px;
    flex-shrink: 0;
}

.contents-list li.module-label:first-child {
    padding-top: 0;
}

.highlight-list li.march-label {
    color: var(--mwg-blue);
}

.highlight-list li.march-label::before {
    background: var(--mwg-blue);
}

/* Product Note */
.product-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
}

.product-note svg {
    color: var(--mwg-blue);
    flex-shrink: 0;
}

/* Variant Callout */
.variant-callout {
    background: rgba(59, 139, 196, 0.08);
    border: 1px solid rgba(59, 139, 196, 0.25);
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.variant-callout svg {
    color: var(--mwg-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.variant-callout strong {
    color: var(--mwg-blue);
    font-weight: 600;
}

/* Procurement Formats */
.procurement-formats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.format-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 12px;
    text-align: center;
    transition: border-color 0.3s, background 0.3s;
}

.format-card:hover {
    border-color: var(--mwg-green);
    background: rgba(42, 166, 65, 0.06);
}

.format-card .format-icon {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.format-card .format-title {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-main-light);
    margin-bottom: 4px;
}

.format-card .format-desc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
    background: #0e0e0e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 40px 30px;
}

.footer-inner {
    max-width: var(--section-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    line-height: 1.5;
}

.footer-contact h4,
.footer-certs h4 {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--mwg-green);
    margin-bottom: 14px;
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--mwg-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: #5aaede;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cert-badges span {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
}

.footer-legal {
    max-width: var(--section-max);
    margin: 20px auto 0;
    text-align: center;
}

.footer-legal p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
    margin-bottom: 6px;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials-bar {
        flex-direction: column;
    }

    .credential-divider {
        width: 100%;
        height: 1px;
    }

    .product-image {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .top-banner {
        padding: 8px 0;
        height: auto;
    }

    .banner-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 0 15px;
    }

    .banner-center {
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-right {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-trust-badges .bullet {
        display: none;
    }

    .about-section {
        padding: 60px 20px 50px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .product-toc {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .toc-inner {
        padding: 0 15px;
    }

    .toc-link {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .products-inner {
        padding: 0 20px;
    }

    .product-card {
        padding: 50px 0;
    }

    .product-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .product-image {
        flex: none;
        width: 100%;
        position: static;
    }

    .product-image img {
        max-height: 35vh;
        margin: 0 auto;
        display: block;
    }

    .product-header h2 {
        font-size: 2rem;
    }

    .procurement-formats {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}