/* ==========================================================================
   Moz Source — Design System
   Palette derived from the official logotype (#751B23)
   ========================================================================== */

:root {
    --primary: #751b23;
    --primary-dark: #4a1117;
    --primary-darker: #2c0a0e;
    --primary-light: #9c2c36;
    --primary-tint: #fbeeef;
    --accent: #c9932f;
    --accent-light: #e4b660;

    --ink: #17110f;
    --ink-soft: #423634;
    --gray: #6f6360;
    --gray-light: #a9a09d;
    --border: #e8dfdd;

    --paper: #ffffff;
    --paper-alt: #faf6f5;
    --paper-deep: #f2e9e7;

    --font-display: 'Sora', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --shadow-sm: 0 2px 8px rgba(23, 17, 15, 0.06);
    --shadow-md: 0 12px 32px rgba(23, 17, 15, 0.10);
    --shadow-lg: 0 24px 60px rgba(23, 17, 15, 0.18);

    --container: 1220px;
}

@media (prefers-color-scheme: dark) {
    :root { color-scheme: light; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    margin: 0 0 0.5em;
    font-weight: 700;
    letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

section { padding: 96px 0; }

@media (max-width: 768px) {
    section { padding: 64px 0; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.section-head {
    max-width: 680px;
    margin-bottom: 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }

.section-head p { font-size: 17px; color: var(--gray); }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: rgba(23, 17, 15, 0.18);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
}

.btn-ghost-light:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
    padding: 10px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--primary-tint); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switcher { position: relative; }

.lang-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    background: var(--primary-tint);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.lang-switcher-toggle:hover { color: var(--primary); }

.lang-switcher-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--paper);
    border-radius: var(--radius-md, 12px);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    z-index: 110;
}

.lang-switcher.open .lang-switcher-menu { display: block; }

.lang-switcher-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.lang-switcher-menu a:hover { background: var(--primary-tint); color: var(--primary); }
.lang-switcher-menu a.is-active { color: var(--primary); background: var(--primary-tint); }

@media (max-width: 960px) {
    .lang-switcher-toggle { padding: 8px 12px; }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 960px) {
    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px, 82vw);
        height: 100vh;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.35s ease;
    }

    .main-nav.open { transform: translateX(0); }
    .main-nav a { padding: 14px 16px; font-size: 16px; }
    .nav-toggle { display: block; }
    .header-actions .btn-primary { display: none; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(23, 17, 15, 0.4);
        z-index: 90;
    }
    .nav-overlay.open { display: block; }
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--primary-darker) 0%, var(--primary-dark) 45%, var(--primary) 100%);
    color: #fff;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 15% 20%, rgba(201, 147, 47, 0.25), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08), transparent 50%),
        linear-gradient(160deg, rgba(42, 10, 14, 0.88) 0%, rgba(74, 17, 23, 0.82) 45%, rgba(117, 27, 35, 0.78) 100%);
}

/* ---------- Hero carousel ---------- */

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-carousel-nav {
    position: absolute;
    z-index: 3;
    bottom: 40px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
}

@media (max-width: 768px) {
    .hero-carousel-nav { right: 50%; transform: translateX(50%); bottom: 88px; }
}

.hero-dots { display: flex; gap: 8px; }

.hero-dot {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.hero-dot.is-active { background: var(--accent-light); }

.hero-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; }
.hero-arrow svg { width: 18px; height: 18px; }

.hero-slide-caption {
    position: absolute;
    z-index: 3;
    bottom: 40px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .hero-slide-caption { display: none; }
}

.hero-slide-caption .dash { width: 22px; height: 1px; background: var(--accent-light); }

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-content .eyebrow { color: var(--accent-light); }
.hero-content .eyebrow::before { background: var(--accent-light); }

.hero-content h1 {
    font-size: clamp(34px, 5.4vw, 64px);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    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: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-cue::after {
    content: '';
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: bottom; }
}

/* ---------- Stat strip ---------- */

.stat-strip {
    background: var(--ink);
    color: #fff;
    padding: 48px 0;
}

.stat-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item { text-align: center; border-left: 1px solid rgba(255,255,255,0.12); padding-left: 24px; }
.stat-item:first-child { border-left: none; }

.stat-item .value {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--accent-light);
}

.stat-item .label { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; }

@media (max-width: 768px) {
    .stat-strip .container { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
    .stat-item:nth-child(3) { border-left: none; }
}

/* ---------- Cards ---------- */

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Same look as .grid-3, but centres an incomplete last row (e.g. 5 cards). */
.grid-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.grid-center > * { flex: 0 1 calc((100% - 56px) / 3); }

@media (max-width: 960px) {
    .grid-center > * { flex-basis: calc((100% - 28px) / 2); }
}

@media (max-width: 640px) {
    .grid-center > * { flex-basis: 100%; }
}

.card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon { width: 22px; height: 22px; flex-shrink: 0; }

.card .icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card h3 { font-size: 19px; }
.card p { font-size: 15px; margin-bottom: 0; }

/* ---------- Product cards ---------- */

.product-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.product-media {
    aspect-ratio: 4 / 3;
    background: var(--paper-deep);
    overflow: hidden;
    position: relative;
}

.product-media img { width: 100%; height: 100%; object-fit: cover; }

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 18px; margin-bottom: 8px; }
.product-body p { font-size: 14.5px; flex: 1; }

.spec-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.spec-list li { font-size: 13px; color: var(--gray); }
.spec-list li strong { display: block; color: var(--ink); font-size: 13.5px; }

/* ---------- Timeline (industrial process) ---------- */

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    counter-reset: step;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    counter-increment: step;
}

.process-step .num {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(117, 27, 35, 0.3);
}

.process-step h4 { font-size: 14.5px; margin-bottom: 4px; }
.process-step p { font-size: 12.5px; color: var(--gray); }

@media (max-width: 860px) {
    .process-timeline { flex-direction: column; gap: 32px; }
    .process-timeline::before { display: none; }
}

/* ---------- Split sections ---------- */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split.reverse .split-media { order: 2; }

@media (max-width: 860px) {
    .split { grid-template-columns: 1fr; gap: 36px; }
    .split.reverse .split-media { order: 0; }
}

.split-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.split-media { position: relative; }

/* ---------- Product image gallery ---------- */

.product-gallery-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--paper-deep);
}

.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.product-gallery-thumb {
    width: 76px;
    height: 76px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: var(--paper-deep);
    cursor: pointer;
    transition: border-color 0.15s ease, opacity 0.15s ease;
    opacity: 0.7;
}

.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery-thumb:hover { opacity: 1; }
.product-gallery-thumb.is-active { border-color: var(--primary); opacity: 1; }

/* ---------- Empty states ---------- */

.state-empty {
    text-align: center;
    padding: 72px 24px;
    background: var(--paper-alt);
    border-radius: var(--radius-lg);
    border: 1.5px dashed var(--border);
}

.state-empty .icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.state-empty h3 { font-family: var(--font-display); font-size: 22px; margin: 0 0 10px; }
.state-empty p { color: var(--gray); max-width: 420px; margin: 0 auto; }

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
}

.floating-badge .value { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--primary); }
.floating-badge .label { font-size: 12px; color: var(--gray); }

@media (max-width: 640px) { .floating-badge { position: static; margin-top: -40px; margin-left: 20px; display: inline-block; } }

/* ---------- Section variants ---------- */

.section-dark {
    background: var(--ink);
    color: #fff;
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.68); }
.section-dark .eyebrow { color: var(--accent-light); }
.section-dark .eyebrow::before { background: var(--accent-light); }

.section-alt { background: var(--paper-alt); }

/* ---------- CTA banner ---------- */

.cta-banner {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 64px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

/* ---------- Value / impact icons ---------- */

.icon-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.icon-row .icon-badge { margin-bottom: 0; flex-shrink: 0; }

/* ---------- News ---------- */

.news-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-media { aspect-ratio: 16/10; overflow: hidden; }
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 24px; }
.news-meta { font-size: 12.5px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.news-body h3 { font-size: 18px; margin-bottom: 10px; }

.article-hero { background: var(--paper-deep); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 17px; color: var(--ink-soft); }

/* ---------- Forms ---------- */

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--paper);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-tint); }

textarea.form-control { resize: vertical; min-height: 140px; }

.form-error { color: var(--primary); font-size: 12.5px; margin-top: 6px; }
.form-control.is-invalid { border-color: var(--primary); }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 24px; }
.alert-success { background: #e9f6ee; color: #1e6b3a; border: 1px solid #bfe6cd; }

.contact-info-card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card .icon-row .icon-badge { background: rgba(255,255,255,0.1); color: var(--accent-light); }
.contact-info-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.contact-info-card p { color: #fff; margin-bottom: 0; font-size: 15px; }

.map-frame { border-radius: var(--radius-md); overflow: hidden; margin-top: 24px; aspect-ratio: 16/9; background: var(--paper-deep); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 13px; }

/* ---------- Breadcrumb / page hero ---------- */

.page-hero {
    --hero-bg: none;
    background:
        linear-gradient(150deg, rgba(42, 10, 14, 0.92) 0%, rgba(74, 17, 23, 0.88) 45%, rgba(117, 27, 35, 0.85) 100%),
        var(--hero-bg) center / cover no-repeat;
    color: #fff;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    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: 40px 40px;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--accent-light); }
.page-hero .eyebrow::before { background: var(--accent-light); }
.page-hero h1 { font-size: clamp(30px, 4.2vw, 48px); max-width: 720px; }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 620px; font-size: 17px; margin-bottom: 0; }

.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-top: 80px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

.footer-brand img { height: 34px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.55); max-width: 320px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); }
.footer-social .icon { width: 17px; height: 17px; }

.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.62); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.65); font-weight: 600; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- 404 ---------- */

.error-page { padding: 140px 0; text-align: center; }
.error-page .code { font-family: var(--font-display); font-size: 96px; font-weight: 800; color: var(--primary); }

/* ---------- Filters (products page) ---------- */

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: var(--paper);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }


/* =====================================================
   WHY BUY - HOME
===================================================== */

.feature-card{
    background:#fff;
    border-radius:18px;
    padding:32px 26px;
    border:1px solid rgba(15,23,42,.08);
    transition:.3s ease;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.feature-card h3{
    margin:18px 0 12px;
    font-size:1.1rem;
    color:var(--heading);
}

.feature-card p{
    margin:0;
    color:var(--text-light);
    line-height:1.7;
}

/* ---------- B2B / Partners ---------- */

.card-products {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--ink-soft);
}

.card-products strong { color: var(--ink); }

.location-pills { display: flex; flex-wrap: wrap; gap: 10px; }

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px 8px 12px;
    background: var(--paper-deep);
    color: var(--ink-soft);
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 999px;
}

.location-pill .icon { width: 15px; height: 15px; color: var(--primary); }