/* =========================================================
   MeatWise SA Website - Shared Polish CSS
   Safe shared styles only.
   Keep page-specific body, hero, section and layout CSS
   inside each page for now.
   ========================================================= */
    :root {
        --mw-text: #f5f7fa;
        --mw-muted: #aeb8c2;
        --mw-soft: #d6dde4;
        --mw-blue: #0b69b2;
        --mw-blue-dark: #063b78;
        --mw-blue-light: #2c8ee8;
        --mw-border: rgba(255,255,255,0.12);
        --mw-shadow: 0 24px 70px rgba(0,0,0,0.38);
        --mw-max: 1180px;
    }
    
    * {
            box-sizing: border-box;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

   .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(18px);
            background: rgba(15, 20, 24, 0.82);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav-wrap {
            width: min(var(--mw-max), calc(100% - 36px));
            margin: 0 auto;
            height: 86px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand-logo {
            width: 160px;
            height: auto;
            opacity: 0.95;
            filter: brightness(1.15) contrast(1.1);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 22px;
            font-size: 14px;
            color: var(--mw-soft);
            white-space: nowrap;
        }

        .nav-links a { opacity: 0.88; }
        .nav-links a:hover, .nav-links a.active { opacity: 1; color: #fff; }

        .nav-cta {
            padding: 10px 16px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--mw-blue-light), var(--mw-blue-dark));
            color: #fff !important;
            box-shadow: 0 12px 28px rgba(11, 105, 178, 0.28);
        }

        .panel,
        .contact-card,
        .hero-card,
        .showcase-card,
        .module-card,
        .feature-card,
        .quote-card,
        .cta-band {
            border-radius: 28px;
        }

        .panel,
        .showcase-card,
        .quote-card,
        .cta-band {
            overflow: hidden;
        }

        .screenshot-placeholder {
            overflow: hidden;
            border-radius: 28px;
            min-height: 420px;
            display: grid;
            place-items: center;
            padding: 28px;
            background: linear-gradient(135deg, rgba(11, 105, 178, 0.2), transparent 35%), linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 8px 12px;
            border: 1px solid var(--mw-border);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--mw-soft);
            font-size: 13px;
            margin-bottom: 22px;
        }
        
        .eyebrow-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #40b37a;
            box-shadow: 0 0 0 6px rgba(64, 179, 122, 0.14);
        }

/* ---------- Shared image / screenshot polish ---------- */
.real-shot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform 0.2s ease;
}

.real-shot:hover {
    transform: scale(1.01);
}

.screenshot-placeholder {
    overflow: hidden;
}

/* ---------- Shared button polish ---------- */
.btn,
.nav-cta {
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-1px);
}

/* ---------- Shared icon alignment ---------- */
.quick-icon,
.method-icon,
.feature-icon,
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ---------- Shared card polish ---------- */
.panel,
.contact-card,
.hero-card,
.showcase-card,
.module-card,
.feature-card,
.quote-card {
    border-color: rgba(255,255,255,0.13);
}

/* ---------- Shared testimonial/client logo polish ---------- */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.author-text strong {
    display: block;
    color: #fff;
}

.author-text span {
    color: var(--mw-muted);
    font-size: 14px;
}

.client-logo {
    max-height: 48px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    filter: brightness(0) invert(1);
}

/* ---------- Shared text wrapping polish ---------- */
h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

/* ---------- Shared responsive safety ---------- */
img,
iframe {
    max-width: 100%;
}

@media (max-width: 620px) {
    .testimonial-author {
        align-items: flex-start;
        flex-direction: column;
    }

    .client-logo {
        max-height: 44px;
    }
}
