/* ==========================================================================
   QUALYPROT — Global PPE Distribution Platform
   Design system inspired by brand folheto: geometric, modern, industrial
   ========================================================================== */

:root {
    /* Brand colors - from logo & folheto */
    --green-lime: #8BC53F;
    --green-lime-dark: #7AB82F;
    --green-primary: #4CA340;
    --green-deep: #2E7D32;
    --green-gradient: linear-gradient(135deg, #8BC53F 0%, #4CA340 100%);

    /* Neutrals */
    --dark: #1F2A33;
    --dark-soft: #2C3E50;
    --charcoal: #37474F;
    --gray-900: #212121;
    --gray-700: #455A64;
    --gray-500: #78909C;
    --gray-300: #CFD8DC;
    --gray-100: #ECEFF1;
    --gray-50:  #F5F7F9;
    --white: #FFFFFF;
    --off-white: #FAFBFC;

    /* Accent */
    --accent-yellow: #CDDC39;

    /* Typography */
    --font-sans: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --container: 1280px;
    --gutter: 1.5rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(31, 42, 51, 0.06);
    --shadow-md: 0 4px 16px rgba(31, 42, 51, 0.08);
    --shadow-lg: 0 12px 40px rgba(31, 42, 51, 0.12);
    --shadow-green: 0 8px 24px rgba(76, 163, 64, 0.25);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-deep); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin: 0 0 0.6em;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { margin: 0 0 1em; color: var(--gray-700); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
    gap: 1.5rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.brand img { height: 64px; width: auto; }
.brand-text {
    display: none;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    color: var(--dark);
}
@media (min-width: 768px) { .brand-text { display: inline; } }

.primary-nav {
    display: none;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}
@media (min-width: 1024px) { .primary-nav { display: flex; } }

.primary-nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--green-gradient);
    transition: width .3s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }
.primary-nav a.active { color: var(--green-primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-btn-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
}
.nav-btn-group .nav-btn-row {
    display: flex;
    gap: 0.5rem;
}
.nav-btn-group > .btn-primary {
    text-align: center;
    font-size: 0.82rem !important;
    padding: 0.4rem 0.8rem !important;
}

/* Country/language selector */
.locale-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--gray-700);
    background: var(--white);
    transition: all .2s ease;
}
.locale-pill:hover { border-color: var(--green-primary); color: var(--green-primary); }
.locale-pill select {
    border: none;
    background: transparent;
    font: inherit;
    color: inherit;
    outline: none;
    cursor: pointer;
}

/* Mobile menu toggle */
.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: background .2s ease;
}
.menu-toggle:hover { background: var(--gray-100); }
.menu-toggle span {
    width: 22px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem var(--gutter) 2rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 0.75rem 0;
    color: var(--dark);
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all .2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-gradient);
    color: var(--white);
    box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 12px 32px rgba(76,163,64,.32); }
.btn-client {
    background: var(--dark);
    color: var(--white);
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
}
.btn-client:hover { transform: translateY(-2px); color: var(--white); background: var(--green-deep); }
.btn-secondary {
    background: var(--dark);
    color: var(--white);
}
.btn-secondary:hover { background: var(--dark-soft); color: var(--white); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--green-primary); color: var(--green-primary); }
.btn-ghost {
    background: transparent;
    color: var(--green-primary);
    padding: 0.65rem 1rem;
}
.btn-ghost:hover { color: var(--green-deep); gap: 0.8rem; }

/* ---------- Geometric background elements (folheto-inspired) ---------- */
.geo-hex {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
}
.geo-triangle {
    position: absolute;
    width: 0; height: 0;
    pointer-events: none;
}
.geo-dark {
    position: absolute;
    background: var(--dark-soft);
    pointer-events: none;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 3.5rem;
    background: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -80px;
    width: 520px; height: 520px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.12;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: 40%; left: -60px;
    width: 200px; height: 200px;
    background: var(--dark-soft);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.05;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
@media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 1rem;
    padding-left: 2.2rem;
    position: relative;
}
.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1.6rem; height: 2px;
    background: var(--green-gradient);
}
.hero h1 {
    margin-bottom: 1.25rem;
}
.hero h1 .accent {
    background: var(--green-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}
.hero-visual .visual-card {
    position: absolute;
    inset: 0;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 7rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}
.hero-visual .visual-dark {
    position: absolute;
    right: -30px; top: 20%;
    width: 60%; height: 70%;
    background: var(--dark-soft);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -1;
}
.hero-visual .tri {
    position: absolute;
    width: 0; height: 0;
}
.hero-visual .tri-1 { top: -15px; left: 30%; border-left: 26px solid transparent; border-right: 26px solid transparent; border-bottom: 45px solid var(--green-lime); }
.hero-visual .tri-2 { bottom: 0; right: 10%; border-left: 34px solid transparent; border-right: 34px solid transparent; border-top: 58px solid var(--accent-yellow); }

/* ---------- Stat strip ---------- */
.stat-strip {
    background: var(--dark-soft);
    padding: 3rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.stat-strip::before {
    content: '';
    position: absolute;
    top: -30px; right: 6%;
    width: 0; height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid var(--green-lime);
    transform: rotate(15deg);
}
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--green-lime);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- Sections ---------- */
section { padding: 5rem 0; position: relative; }
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-700); font-size: 1.1rem; }

.bg-alt { background: var(--gray-50); }
.bg-dark { background: var(--dark-soft); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.78); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 4px; width: 0;
    background: var(--green-gradient);
    transition: width .3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.card:hover::before { width: 100%; }
.card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: var(--green-gradient);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; font-weight: 800;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-green);
}
.card-hex-icon {
    width: 72px; height: 72px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem; font-weight: 800;
    margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.card p { font-size: 0.95rem; margin-bottom: 1rem; }

/* Industry card */
.industry-card {
    position: relative;
    background: var(--dark-soft);
    color: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    min-height: 240px;
    overflow: hidden;
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.18;
    transition: all .3s ease;
}
.industry-card:hover { transform: translateY(-6px); }
.industry-card:hover::before { opacity: 0.35; transform: scale(1.15) rotate(8deg); }
.industry-card h3 { color: white; margin-bottom: 0.25rem; }
.industry-card .industry-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-lime);
    margin-bottom: 0.5rem;
}
.industry-card p { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin: 0; }
.industry-card .num {
    position: absolute;
    top: 1.5rem; left: 1.75rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--green-lime);
    z-index: 2;
}
.industry-card .industry-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 197, 63, 0.12);
    border-radius: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}
.industry-card .industry-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green-lime);
}
.industry-card:hover .industry-icon {
    background: rgba(139, 197, 63, 0.25);
    transform: scale(1.1);
}

/* Product line card */
.pline {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all .25s ease;
    display: flex;
    flex-direction: column;
}
.pline:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}
.pline-header {
    background: var(--green-gradient);
    color: white;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.pline-header::before {
    content: '';
    position: absolute;
    right: -20px; top: -20px;
    width: 120px; height: 120px;
    background: rgba(255,255,255,0.1);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.pline-header h3 { color: white; margin: 0; position: relative; z-index: 2; }
.pline-header .pline-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    position: relative; z-index: 2;
}
.pline-body { padding: 1.75rem; flex: 1; }
.pline-body ul { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.pline-body li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
    color: var(--gray-700);
    font-size: 0.95rem;
}
.pline-body li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 8px solid var(--green-lime);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.pline-body .cert-tags {
    display: flex; gap: 0.35rem; flex-wrap: wrap;
    margin-bottom: 1rem;
}
.cert-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.55rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 4px;
    text-transform: uppercase;
}

/* Two-col split */
.split {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split-visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--green-gradient);
}
.split-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark-soft);
    clip-path: polygon(0 0, 55% 0, 100% 100%, 0 100%);
    opacity: 0.15;
}
.split-visual .visual-letters {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    opacity: 0.3;
}
.split-visual > img {
    position: absolute;
    inset: 0;
    margin: auto;
    display: block;
    z-index: 1;
    mix-blend-mode: multiply;
}
.split-visual .visual-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 2cm)) scale(0.6125);
    display: block;
    z-index: 2;
    mix-blend-mode: normal;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}
.split-visual .visual-hex {
    position: absolute;
    top: 20%; right: 10%;
    width: 140px; height: 140px;
    background: var(--white);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.2;
}

/* ---------- Certifications strip ---------- */
.cert-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) { .cert-strip { grid-template-columns: repeat(6, 1fr); } }
.cert-badge {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray-700);
    letter-spacing: 0.05em;
    transition: all .2s ease;
}
.cert-badge:hover { border-color: var(--green-primary); color: var(--green-primary); transform: translateY(-2px); }
.cert-badge small { display: block; font-weight: 500; font-size: 0.7rem; text-transform: uppercase; color: var(--gray-500); margin-top: 0.2rem; }

/* Country list */
.country-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
@media (min-width: 768px) { .country-row { grid-template-columns: repeat(6, 1fr); } }
.country-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.country-card .flag-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.country-card .country-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}
.country-card .country-sub {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

/* ---------- CTA section ---------- */
.cta-band {
    background: var(--green-gradient);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    left: -80px; top: 50%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    background: var(--dark-soft);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.15;
}
.cta-band::after {
    content: '';
    position: absolute;
    right: 5%; top: 20px;
    width: 0; height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 34px solid rgba(255,255,255,0.3);
    transform: rotate(20deg);
}
.cta-band h2 { color: white; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}
.cta-content .text { max-width: 620px; }
.cta-band .btn-primary {
    background: var(--white);
    color: var(--green-deep);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-band .btn-primary:hover { color: var(--green-deep); background: var(--off-white); }
.cta-band .btn-secondary {
    background: transparent;
    border: 2px solid white;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 30px; left: 8%;
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid var(--green-lime);
    opacity: 0.5;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 72px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 340px; }
.footer-col h4 {
    color: var(--green-lime);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-col a:hover { color: var(--green-lime); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0 1.75rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
    padding: 4rem 0 3rem;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -40px;
    width: 320px; height: 320px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    opacity: 0.12;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: 15%; top: 30%;
    width: 0; height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid var(--green-lime);
    opacity: 0.4;
    transform: rotate(10deg);
}
.page-hero-content {
    position: relative; z-index: 2;
    max-width: 780px;
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.breadcrumb a { color: var(--green-primary); }

/* Forms */
.form {
    display: grid;
    gap: 1rem;
    max-width: 560px;
}
.form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.form input, .form select, .form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--gray-200, var(--gray-100));
    border-radius: var(--radius-md);
    font: inherit;
    color: var(--dark);
    background: var(--white);
    transition: border-color .2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(76,163,64,0.1);
}
.form textarea { min-height: 140px; resize: vertical; }

/* Content prose (plan sections) */
.prose p { font-size: 1.05rem; line-height: 1.7; color: var(--gray-700); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.5rem; color: var(--gray-700); }

/* Contact card */
.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all .25s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.contact-card .flag { font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-card h4 { margin-bottom: 0.25rem; }
.contact-card .role { color: var(--green-primary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card p { margin: 0.5rem 0 0; font-size: 0.9rem; }

/* News card */
.news-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .25s ease;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.news-thumb {
    aspect-ratio: 16/10;
    background: var(--green-gradient);
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.news-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark-soft);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    opacity: 0.25;
}
.news-thumb .label {
    position: relative; z-index: 2;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(0,0,0,0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}
.news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.news-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.news-body p { font-size: 0.9rem; flex: 1; }

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================================================
   EXTENDED COMPONENTS — product catalog, team, timeline, categories
   ========================================================================== */

/* Mega nav dropdown for Products */
.has-dropdown { position: relative; display: inline-flex; align-items: center; }
.primary-nav .has-dropdown > a::before { content: ''; }
.primary-nav .has-dropdown > a { position: relative; }
.primary-nav .has-dropdown::after {
    content: '▾';
    font-size: 0.65rem;
    margin-left: 0.35rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: color 0.15s ease, transform 0.2s ease;
}
.primary-nav .has-dropdown:hover::after,
.primary-nav .has-dropdown:focus-within::after {
    color: var(--green-primary);
    transform: rotate(180deg);
}
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 780px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 100;
    border-top: 3px solid var(--green-primary);
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem 2rem;
}
.dropdown-col h5 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.dropdown-panel a {
    display: block;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--gray-700) !important;
    border-bottom: none !important;
}
.dropdown-panel a:hover {
    color: var(--green-primary) !important;
    padding-left: 0.25rem;
    transition: all 0.15s ease;
}
@media (max-width: 900px) { .dropdown-panel { display: none; } }

/* Category cards (body-part / hazard entry tiles) */
.category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 230px;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 90px; height: 90px;
    background: linear-gradient(135deg, rgba(139,197,63,0.08), rgba(76,163,64,0.04));
    clip-path: polygon(100% 0%, 100% 100%, 0% 0%);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-lime);
}
.category-card .cat-icon {
    width: 56px; height: 56px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.category-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--dark);
}
.category-card p {
    font-size: 0.88rem;
    color: var(--gray-700);
    flex: 1;
    margin-bottom: 1rem;
}
.category-card .cat-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.category-card:hover .cat-link { gap: 0.6rem; transition: gap 0.2s ease; }

/* Product cards (detailed product list) */
.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}
.product-thumb {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-50) 0%, #E8F5E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-thumb::before {
    content: '';
    position: absolute;
    width: 140%; height: 140%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139,197,63,0.15), transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(76,163,64,0.12), transparent 40%);
}
.product-thumb .sku-hex {
    position: relative;
    z-index: 2;
    width: 100px; height: 100px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.product-thumb .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 3;
    background: white;
    padding: 0.3rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-primary);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.product-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-body .sku-code {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.product-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    color: var(--dark);
    line-height: 1.3;
}
.product-body p {
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    flex: 1;
}
.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    color: var(--gray-700);
}
.product-specs div { padding: 0.25rem 0; border-top: 1px dashed var(--gray-100); }
.product-specs strong { color: var(--dark); display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Hazard pill */
.hazard-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(76,163,64,0.1);
    color: var(--green-deep);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0.2rem 0.2rem 0.2rem 0;
}
.hazard-pill.red { background: rgba(220,53,69,0.1); color: #B71C1C; }
.hazard-pill.orange { background: rgba(255,152,0,0.12); color: #BF5F00; }
.hazard-pill.blue { background: rgba(33,150,243,0.12); color: #0D47A1; }
.hazard-pill.yellow { background: rgba(255,193,7,0.15); color: #8B6700; }

/* Team cards */
.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    text-align: center;
    padding: 2rem 1.25rem;
    transition: all 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
    width: 110px; height: 110px;
    margin: 0 auto 1rem;
    background: var(--green-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.05em;
    position: relative;
}
.team-avatar::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--green-lime);
    opacity: 0.5;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card .team-role {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
}
.team-card p {
    font-size: 0.88rem;
    color: var(--gray-700);
}

/* Timeline (history) */
.timeline {
    position: relative;
    padding-left: 2.5rem;
    margin-top: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0.75rem;
    width: 2px;
    background: linear-gradient(180deg, var(--green-lime) 0%, var(--green-primary) 100%);
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 18px; height: 18px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    box-shadow: 0 0 0 4px white, 0 0 0 5px var(--green-lime);
}
.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.timeline-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}
.timeline-item p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Value cards (mission / vision / values) */
.value-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.value-card::before {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    background: linear-gradient(135deg, rgba(139,197,63,0.06), rgba(76,163,64,0.03));
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-lime);
}
.value-card .value-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green-lime);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}
.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    position: relative;
    z-index: 2;
}
.value-card p {
    color: var(--gray-700);
    position: relative;
    z-index: 2;
}

/* Sub-nav (product category page left rail) */
.page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    align-items: start;
}
.sub-nav {
    position: sticky;
    top: 90px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--gray-100);
}
.sub-nav h4 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.sub-nav a {
    display: block;
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    border-bottom: none !important;
}
.sub-nav a:hover { background: var(--gray-50); color: var(--green-primary); }
.sub-nav a.active {
    background: rgba(139,197,63,0.12);
    color: var(--green-deep);
    font-weight: 700;
    border-left: 3px solid var(--green-primary);
    padding-left: 0.6rem;
}
@media (max-width: 900px) {
    .page-layout { grid-template-columns: 1fr; }
    .sub-nav { position: static; }
}

/* Info strip (stats/features bar) */
.info-strip {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    padding: 1.5rem 0;
}
.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
@media (max-width: 768px) { .info-strip-grid { grid-template-columns: repeat(2, 1fr); } }
.info-strip-grid > div { padding: 0 0.5rem; }
.info-strip-grid strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 0.35rem;
}
.info-strip-grid span {
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* Spec table */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.spec-table th,
.spec-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}
.spec-table th {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--dark);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.spec-table tbody tr:hover { background: var(--gray-50); }
.spec-table tbody tr:last-child td { border-bottom: none; }

/* Section divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200, var(--gray-100));
}
.section-divider span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-primary);
}

/* Anchor feature block */
.feature-block {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-100);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.feature-block .fb-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--green-gradient);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}
.feature-block h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.feature-block p { font-size: 0.88rem; color: var(--gray-700); margin: 0; }

/* Certification entity logos inside country cards */
.cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}
.cert-logos img {
    height: 36px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.2s, transform 0.2s;
    filter: grayscale(20%);
}
.cert-logos img:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: grayscale(0%);
}
@media (max-width: 600px) {
    .cert-logos img { height: 30px; }
}

/* ── Brand partners section on products page ── */
.brand-partners-section {
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
    padding-top: 4rem;
    padding-bottom: 3rem;
}
.brand-group {
    margin-bottom: 2.2rem;
}
.brand-group:last-of-type {
    margin-bottom: 1.2rem;
}
.brand-group-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-700);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--green-primary);
    display: inline-block;
}
.brand-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.brand-logo-grid img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    padding: 6px 10px;
    background: white;
    opacity: 0.75;
    filter: grayscale(30%);
    transition: opacity 0.25s, transform 0.25s, filter 0.25s, box-shadow 0.25s;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    cursor: default;
}
.brand-logo-grid img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.brand-note {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--gray-200);
}
.brand-note a {
    color: var(--green-primary);
    font-weight: 600;
}
@media (max-width: 768px) {
    .brand-logo-grid img { height: 38px; }
    .brand-logo-grid { gap: 0.5rem; }
}
@media (max-width: 480px) {
    .brand-logo-grid img { height: 32px; }
}

/* ── Brand Marquee (homepage scrolling logos) ── */
.brand-marquee-section {
    background: #fff;
    border-top: 1px solid var(--gray-100);
    padding: 1.25rem 0 1.5rem;
    overflow: hidden;
    position: relative;
}
.brand-marquee-section::before,
.brand-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.brand-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.brand-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.brand-marquee-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 0.9rem;
}
.brand-marquee-track {
    overflow: hidden;
    width: 100%;
}
.brand-marquee-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}
.brand-marquee-inner img {
    height: 34px;
    max-width: 120px;
    object-fit: contain;
    filter: none;
    opacity: 0.85;
    transition: opacity 0.3s;
    flex-shrink: 0;
}
.brand-marquee-inner img:hover {
    opacity: 1;
}
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-marquee-section:hover .brand-marquee-inner {
    animation-play-state: paused;
}
@media (max-width: 768px) {
    .brand-marquee-inner { gap: 2rem; }
    .brand-marquee-inner img { height: 28px; max-width: 100px; }
    .brand-marquee-section::before,
    .brand-marquee-section::after { width: 40px; }
}

/* ── Form message feedback ── */
.form-msg {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    margin: 1rem 0;
}

