/* ═══════════════════════════════════════════════════════════════
   TSS – The Safety Store  |  style.css  (Optimised & Structured)

   SECTIONS
   ─────────
    0. CSS VARIABLES
    1. RESET & BASE
    2. CUSTOM CURSOR
    3. LOADER
    4. CONTAINER
    5. NAVBAR & LANGUAGE SWITCHER
    6. MOBILE MENU & BACKDROP
    7. BUTTONS
    8. SECTION COMMON
    9. HERO
   10. MARQUEE
   11. ABOUT
   12. PRODUCTS
   13. INDUSTRIES
   14. CTA SECTION
   15. CONTACT
   16. WHATSAPP FLOAT
   17. FOOTER
   18. SCROLL PROGRESS
   19. REVEAL / GSAP INIT STATES
   20. SCROLLBAR & SELECTION
   21. REDUCED MOTION
   22. MOBILE TAP EFFECTS
   ═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────
   0. CSS VARIABLES
   ───────────────────────────────────────────────────────────── */

:root {
    --red: #E30613;
    --red-dark: #a0040e;
    --red-light: #ffeaea;
    --red-glow: rgba(227, 6, 19, 0.15);

    --bg: #F7F6F4;
    --bg-alt: #FFFFFF;
    --bg-card: #FFFFFF;
    --surface: #F0EFEC;
    --border: #E3E0DC;
    --border-md: #CCCAC6;

    --text: #0D0C0E;
    --text-2: #3D3A42;
    --text-3: #8C8896;
    --text-inv: #FFFFFF;

    --font-display: 'Built Titling', sans-serif;
    --font: 'Barlow', sans-serif;

    --nav-h: 72px;
    --radius-sm: 4px;
    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 26px;

    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06), 0 2px 12px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .09), 0 8px 40px rgba(0, 0, 0, .05);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12), 0 24px 64px rgba(0, 0, 0, .07);
    --shadow-red: 0 4px 20px rgba(227, 6, 19, .28), 0 8px 40px rgba(227, 6, 19, .14);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

@font-face {
    font-family: 'Built Titling';
    src: url('fonts/built-titling-bd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Force every usage to the bold variant — no fallback to regular */
* {
    font-family: inherit;
}

[class*="font-display"],
.section-label,
.section-title,
.hero-badge,
.hero-title,
.stat-num,
.stat-label,
.nav-link,
.nav-cta,
.btn,
.mobile-link,
.mmf-tagline,
.card-title,
.card-tag,
.card-num,
.industry-card h3,
.about-card-tag,
.year-num,
.year-txt,
.badge-inner-text,
.footer-wordmark,
.footer-tagline-red,
.footer-col h4,
.contact-info-label,
.contact-info-val,
.contact-cta-label,
.contact-cta-heading,
.contact-cta-btn,
.cta-badge,
.cta-title,
.loader-wordmark,
.pillar strong,
.hero-ppe-item span,
.mmf-sub,
.lang-btn {
    font-family: 'Built Titling', sans-serif;
    font-weight: 700;
}


/* ─────────────────────────────────────────────────────────────
   1. RESET & BASE
   ───────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--bg);
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    transform: none;
}

body.loading,
body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

em {
    font-style: normal;
}

main {
    contain: layout style;
}

::selection {
    background: rgba(227, 6, 19, 0.25);
    color: var(--text);
}


/* ─────────────────────────────────────────────────────────────
   2. CUSTOM CURSOR
   ───────────────────────────────────────────────────────────── */

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }

    #cCursor {
        position: fixed;
        width: 34px;
        height: 34px;
        border: 1.5px solid var(--red);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
            border-color 0.3s, background 0.3s;
    }

    #cCursor.expanded {
        width: 40px;
        height: 40px;
        border-color: var(--red);
        background: rgba(227, 6, 19, 0.06);
    }

    #cDot {
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--red);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.15s;
    }
}

body.badge-hover #cDot {
    background-color: #000;
}

body.badge-hover #cCursor {
    border-color: #000;
}


/* ─────────────────────────────────────────────────────────────
   3. LOADER
   ───────────────────────────────────────────────────────────── */

.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
    transform: translateY(0);
    will-change: transform;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo-img {
    width: clamp(180px, 30vw, 280px);
    height: auto;
    object-fit: contain;
}

.loader-wordmark {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(10px, 2vw, 13px);
    letter-spacing: 4px;
    color: var(--text-3);
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
    max-width: 90vw;
    word-break: break-word;
    line-height: 1.6;
}

@media (max-width: 380px) {
    .loader-wordmark {
        letter-spacing: 2px;
        font-size: 10px;
    }
}

.loader-bar-wrap {
    width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--red), #ff4d5a);
    border-radius: 2px;
    transition: width 0.1s linear;
}


/* ─────────────────────────────────────────────────────────────
   4. CONTAINER
   ───────────────────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }
}


/* ─────────────────────────────────────────────────────────────
   5. NAVBAR & LANGUAGE SWITCHER
   ───────────────────────────────────────────────────────────── */

.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    background: transparent;
    z-index: 900;
    transition: all 0.4s ease;
}

.navbar[style*="transform"],
.navbar[style*="matrix"] {
    transform: none !important;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.menu-open .navbar {
    filter: none !important;
    transform: none !important;
}

.navbar.menu-open .nav-logo img {
    filter: blur(3px);
    transition: filter 0.4s ease;
}

.navbar .nav-logo img {
    transition: filter 0.4s ease;
    filter: blur(0px);
}

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

@media (min-width: 768px) {
    .nav-container {
        padding: 0 40px;
    }
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    z-index: 990;
}

.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.nav-link {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-2);
    position: relative;
    transition: color 0.25s;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--text);
}

.nav-cta {
    display: none;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 22px;
    background: var(--red);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-red);
    transition: background 0.22s, transform 0.25s var(--ease-out), box-shadow 0.25s;
    flex-shrink: 0;
    text-decoration: none;
    text-transform: uppercase;
    will-change: transform;
}

.nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(227, 6, 19, .38);
}

@media (min-width: 900px) {
    .nav-cta {
        display: flex;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

@media (min-width: 900px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s, width 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--border);
    transform: scale(0.9);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    transition: 0.3s;
}

.lang-btn.active {
    background: var(--red-light);
    color: var(--red);
}

.lang-btn .lang-flag {
    width: 24px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

@media (max-width: 380px) {
    .lang-btn .lang-code {
        display: none;
    }

    .lang-switcher {
        padding: 3px 4px;
    }
}

@media (max-width: 899px) {
    .lang-btn .lang-flag {
        font-size: 13px;
    }

    .lang-btn {
        padding: 4px 8px;
    }
}

[data-i18n] {
    transition: opacity 0.25s ease;
}

body.lang-switching [data-i18n] {
    opacity: 0;
    transition: opacity 0s; /* snap-hide on switch; fade-in restored when class is removed */
}


/* ─────────────────────────────────────────────────────────────
   6. MOBILE MENU & BACKDROP
   ───────────────────────────────────────────────────────────── */

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 68vw;
    max-width: 340px;
    z-index: 999;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.18);
    border-radius: 24px 0 0 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu.open {
    transform: translateX(0);
    pointer-events: all;
}

body.menu-open main {
    filter: blur(2px);
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    transition: background 0.25s, color 0.25s, transform 0.3s;
    cursor: pointer;
    z-index: 2;
}

.mobile-close-btn:hover {
    background: var(--red);
    color: #fff;
    transform: rotate(90deg);
}

.mobile-menu-inner {
    padding: 70px 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.mobile-menu-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.mobile-menu-logo {
    display: none;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: clamp(22px, 5.5vw, 30px);
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(30px);
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s, letter-spacing 0.25s;
    -webkit-tap-highlight-color: transparent;
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link-num {
    display: none !important;
}

@media (hover: hover) {
    .mobile-link:hover {
        color: var(--red);
        padding-left: 10px;
        letter-spacing: 3px;
    }
}

@media (hover: none) {
    .mobile-link:active {
        color: var(--red);
    }
}

.mobile-menu.open .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.open .mobile-link:nth-child(1) {
    transition-delay: 0.10s;
}

.mobile-menu.open .mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.open .mobile-link:nth-child(3) {
    transition-delay: 0.20s;
}

.mobile-menu.open .mobile-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.open .mobile-link:nth-child(5) {
    transition-delay: 0.30s;
}

.mobile-menu-footer {
    padding: 0 28px 28px;
    opacity: 0;
    transform: translateY(20px);
}

.mmf-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin-bottom: 12px;
}

.mmf-tagline {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text);
    text-transform: uppercase;
}

.mmf-sub {
    font-size: 10px;
    color: var(--text-3);
    letter-spacing: 1.5px;
    margin-top: 4px;
    text-transform: uppercase;
}

.mobile-menu-cta {
    display: none !important;
}


/* ─────────────────────────────────────────────────────────────
   7. BUTTONS
   ───────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
        background 0.22s, color 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    will-change: transform;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary::before,
.btn-white-solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.btn-primary:hover::before,
.btn-white-solid:hover::before {
    opacity: 1;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 6px 24px rgba(160, 4, 14, .35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border-md);
}

.btn-outline:hover {
    border-color: var(--text);
    background: var(--surface);
}

.btn-white-solid {
    background: #fff;
    color: var(--red);
    box-shadow: 0 4px 20px rgba(255, 255, 255, .3);
    font-weight: 800;
}

.btn-white-solid:hover {
    background: #fff0f0;
    box-shadow: 0 8px 40px rgba(255, 255, 255, .5);
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-white-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

@media (hover: none) {
    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .nav-cta:hover {
        transform: none;
    }
}

@media (max-width: 640px) {

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn,
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}


/* ─────────────────────────────────────────────────────────────
   8. SECTION COMMON
   ───────────────────────────────────────────────────────────── */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.4;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-2);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.015em;
    max-width: 520px;
    margin-top: 18px;
}

.section-header {
    margin-bottom: clamp(40px, 6vw, 68px);
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-label {
    justify-content: center;
}

.section-header.centered .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.section-header>.section-label {
    margin-bottom: 10px;
}

.section-header>.section-title {
    margin-top: 0;
    margin-bottom: 0;
}

.section-header>.section-sub {
    margin-top: 20px;
}

.text-red {
    color: var(--red);
    font-style: normal;
}

@media (max-width: 767px) {
    .section-title {
        letter-spacing: -0.3px;
    }
}


/* ─────────────────────────────────────────────────────────────
   9. HERO
   ───────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 60px) 24px 100px;
    overflow: hidden;
    background: var(--bg-alt);
}

@media (min-width: 768px) {
    .hero {
        padding: calc(var(--nav-h) + 80px) 60px 120px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}


.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-orb--1 {
    width: clamp(400px, 60vw, 800px);
    height: clamp(400px, 60vw, 800px);
    top: -10%;
    right: -10%;
    background: radial-gradient(ellipse, rgba(227, 6, 19, .07) 0%, transparent 70%);
}

.hero-orb--2 {
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    bottom: 5%;
    left: -5%;
    background: radial-gradient(ellipse, rgba(227, 6, 19, .05) 0%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
}

/* Align PPE grid top edge with the badge */
@media (min-width: 960px) {
    .hero-visual {
        display: block;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-ppe-grid {
        margin-top: 0;
    }
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-2);
    margin-bottom: 28px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, .15);
    animation: pulseDot 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(227, 6, 19, .15);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(227, 6, 19, .06);
    }
}

/* Hero title */
.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(64px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 24px;
    overflow: visible;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(44px, 13vw, 76px);
        letter-spacing: 0.5px;
    }
}


/* ─────────────────────────────────────────────────────────────
   FRENCH LANGUAGE — EQUAL TYPOGRAPHY
   All [lang="fr"] rules keep font-size, letter-spacing, and
   width identical to English. French text is naturally longer
   so we only allow wrapping where needed, never shrinking.
   ───────────────────────────────────────────────────────────── */

/* Hero badge — allow wrap on very long French badge text */
[lang="fr"] .hero-badge {
    white-space: normal;
    letter-spacing: 2px;
    font-size: 11px;
}

/* Hero title — same size as English, allow natural line-wrap */
[lang="fr"] .hero-title {
    font-size: clamp(64px, 10vw, 140px);
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    [lang="fr"] .hero-title {
        font-size: clamp(44px, 13vw, 76px);
        letter-spacing: 0.5px;
    }
}

/* Hero sub — same size, allow natural wrap */
[lang="fr"] .hero-sub {
    font-size: clamp(14px, 1.5vw, 17px);
    letter-spacing: 0.015em;
}

/* Stat labels — same letter-spacing and size */
[lang="fr"] .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
}

/* Section labels — same size and spacing */
[lang="fr"] .section-label {
    font-size: 11px;
    letter-spacing: 5px;
}

/* Section titles — same size */
[lang="fr"] .section-title {
    font-size: clamp(42px, 6vw, 80px);
    letter-spacing: 0.5px;
}

/* Section sub — same size */
[lang="fr"] .section-sub {
    font-size: 15px;
    letter-spacing: 0.015em;
}

/* Nav links — same size */
[lang="fr"] .nav-link {
    font-size: 15px;
    letter-spacing: 1.5px;
}

/* Nav CTA button — same size */
[lang="fr"] .nav-cta {
    font-size: 14px;
    letter-spacing: 1px;
}

/* Mobile links — same size */
[lang="fr"] .mobile-link {
    font-size: clamp(22px, 5.5vw, 30px);
    letter-spacing: 2px;
}

/* Mobile footer tagline — same */
[lang="fr"] .mmf-tagline {
    font-size: 11px;
    letter-spacing: 2px;
}

[lang="fr"] .mmf-sub {
    font-size: 10px;
    letter-spacing: 1.5px;
}

/* Buttons — same */
[lang="fr"] .btn {
    font-size: 15px;
    letter-spacing: 1px;
}

@media (max-width: 640px) {
    [lang="fr"] .btn {
        font-size: 14px;
    }
}

/* Card titles and tags — same */
[lang="fr"] .card-title {
    font-size: 16px;
    letter-spacing: 0.5px;
}

[lang="fr"] .card-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
}

/* Industry card headings — same */
[lang="fr"] .industry-card h3 {
    letter-spacing: 0.5px;
}

/* Pillar labels — same */
[lang="fr"] .pillar strong {
    letter-spacing: 0.5px;
}

/* CTA badge and title — same */
[lang="fr"] .cta-badge {
    font-size: 11px;
    letter-spacing: 3px;
}

[lang="fr"] .cta-title {
    font-size: clamp(36px, 5vw, 72px);
    letter-spacing: 0.5px;
}

/* Contact info — same */
[lang="fr"] .contact-info-label {
    font-size: 11px;
    letter-spacing: 3px;
}

[lang="fr"] .contact-info-val {
    letter-spacing: 0.5px;
}

/* Contact CTA card — same */
[lang="fr"] .contact-cta-label {
    font-size: 11px;
    letter-spacing: 3px;
}

[lang="fr"] .contact-cta-heading {
    letter-spacing: 0.5px;
}

[lang="fr"] .contact-cta-btn {
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Loader wordmark — same */
[lang="fr"] .loader-wordmark {
    font-size: clamp(10px, 2vw, 13px);
    letter-spacing: 4px;
}

/* Footer wordmark — same */
[lang="fr"] .footer-wordmark {
    font-size: 18px;
    letter-spacing: 2.5px;
}

/* Footer tagline — same */
[lang="fr"] .footer-tagline-red {
    font-size: 11px;
    letter-spacing: 4px;
}

/* Footer col headings — same */
[lang="fr"] .footer-col h4 {
    font-size: 13px;
    letter-spacing: 3.5px;
}

/* Footer links — same */
[lang="fr"] .footer-col ul li a,
[lang="fr"] .footer-desc {
    font-size: 14px;
    letter-spacing: 0.015em;
}

/* Footer bottom — same */
[lang="fr"] .footer-bottom p {
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Marquee — same */
[lang="fr"] .marquee-content span {
    font-size: 13px;
    letter-spacing: 3px;
}

/* Hero PPE item labels — same */
[lang="fr"] .hero-ppe-item span {
    font-size: 13px;
    letter-spacing: 0.6px;
}

/* WA tooltip — same */
[lang="fr"] .whatsapp-float-tooltip {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.hero-line {
    display: block;
    overflow: visible;
}

.hero-word {
    display: inline-block;
}

.hero-word--accent {
    color: var(--red);
}

.hero-sub {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--text-2);
    line-height: 1.8;
    letter-spacing: 0.015em;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.35s, transform 0.35s;
}

.hero-stats:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-3);
    text-transform: uppercase;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-md);
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        background: none;
        border: none;
        width: 100%;
    }

    .hero-stats:hover {
        transform: none;
        box-shadow: none;
    }

    .hero-stat {
        background: var(--surface);
        border: 1px solid var(--border);
        padding: 16px 18px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .hero-stat:nth-child(1) {
        border-radius: var(--radius) 0 0 0;
    }

    .hero-stat:nth-child(3) {
        border-radius: 0 var(--radius) 0 0;
    }

    .hero-stat:nth-child(5) {
        border-radius: 0 0 0 var(--radius);
    }

    .hero-stat:nth-child(7) {
        border-radius: 0 0 var(--radius) 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-num {
        font-size: 26px;
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}

/* Hero right — PPE category icon grid */
.hero-visual {
    display: none;
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-top: 52px;
    margin-left: auto;
}

@media (min-width: 960px) {
    .hero-visual {
        display: block;
        padding-top: 0;
    }
}

.hero-ppe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.hero-ppe-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 10px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.hero-ppe-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), #ff4d5a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

@media (hover: hover) {
    .hero-ppe-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: rgba(227, 6, 19, .2);
        animation-play-state: paused;
    }

    .hero-ppe-item:hover::after {
        transform: scaleX(1);
    }
}

.hero-ppe-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ppe-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-ppe-item span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: var(--text-2);
    text-transform: uppercase;
    line-height: 1.3;
}

.hero-ppe-item--4 .hero-ppe-icon,
.hero-ppe-item--6 .hero-ppe-icon {
    scale: 1.25;
}

.hero-ppe-item--10 .hero-ppe-icon {
    scale: 2;
}

.hero-ppe-item--9 .hero-ppe-icon,
.hero-ppe-item--10 .hero-ppe-icon,
.hero-ppe-item--11 .hero-ppe-icon,
.hero-ppe-item--12 .hero-ppe-icon {
    filter: brightness(90%) contrast(110%);
}

/* Staggered floating animation */
.hero-ppe-item--1 {
    animation: hppFloat 4.0s ease-in-out 0.0s infinite;
}

.hero-ppe-item--2 {
    animation: hppFloat 4.3s ease-in-out 0.3s infinite;
}

.hero-ppe-item--3 {
    animation: hppFloat 3.8s ease-in-out 0.6s infinite;
}

.hero-ppe-item--4 {
    animation: hppFloat 4.5s ease-in-out 0.9s infinite;
}

.hero-ppe-item--5 {
    animation: hppFloat 4.1s ease-in-out 1.2s infinite;
}

.hero-ppe-item--6 {
    animation: hppFloat 4.4s ease-in-out 1.5s infinite;
}

.hero-ppe-item--7 {
    animation: hppFloat 3.9s ease-in-out 1.8s infinite;
}

.hero-ppe-item--8 {
    animation: hppFloat 4.2s ease-in-out 2.1s infinite;
}

.hero-ppe-item--9 {
    animation: hppFloat 4.5s ease-in-out 2.4s infinite;
}

.hero-ppe-item--10 {
    animation: hppFloat 4.1s ease-in-out 2.7s infinite;
}

.hero-ppe-item--11 {
    animation: hppFloat 4.4s ease-in-out 3.0s infinite;
}

.hero-ppe-item--12 {
    animation: hppFloat 3.9s ease-in-out 3.3s infinite;
}

@keyframes hppFloat {

    0%,
    100% {
        transform: translateY(0);
    }

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


/* ─────────────────────────────────────────────────────────────
   10. MARQUEE
   ───────────────────────────────────────────────────────────── */

.marquee-section {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--red);
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 16px;
}

.marquee-content .sep {
    color: rgba(255, 255, 255, .4);
    padding: 0 4px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ─────────────────────────────────────────────────────────────
   11. ABOUT
   ───────────────────────────────────────────────────────────── */

.about {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg);
}

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

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 80px;
    }
}

.about-visual {
    position: relative;
}

.about-card-main {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.about-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ff4d5a);
}

.about-shield--certified {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certified-shield-svg {
    width: 90px;
    height: 102px;
    filter: drop-shadow(0 6px 20px rgba(34, 197, 94, 0.45));
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        filter: drop-shadow(0 6px 20px rgba(134, 239, 172, 0.35));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 10px 32px rgba(134, 239, 172, 0.55));
        transform: scale(1.04);
    }
}

.about-card-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-card-tag {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-3);
    text-transform: uppercase;
}

.about-card-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.year-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: -2px;
}

.year-txt {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-3);
    text-transform: uppercase;
}

/* Certified floating badge — green theme */
.about-floating-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 50%;
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
}

.badge-circle-svg {
    position: absolute;
    inset: 0;
    animation: rotateBadge 18s linear infinite;
}

.badge-inner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 1;
}

.badge-check-icon {
    flex-shrink: 0;
}

.badge-inner-text {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #16a34a;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
}

@keyframes rotateBadge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-content .section-label {
    margin-bottom: 10px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-desc {
    color: var(--text-2);
    line-height: 1.8;
    letter-spacing: 0.015em;
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: 15px;
}

.about-desc strong {
    color: var(--text);
    font-weight: 700;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 32px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 10px;
    border-radius: var(--radius);
    transition: background 0.18s, transform 0.18s;
    -webkit-tap-highlight-color: transparent;
    transform-origin: left center;
    will-change: opacity, transform;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--red-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}

@media (hover: hover) {
    .pillar:hover .pillar-icon {
        background: var(--red);
        color: #fff;
    }
}

.pillar-icon svg {
    width: 22px;
    height: 22px;
}

.pillar div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pillar strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.pillar span {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.6;
    letter-spacing: 0.015em;
}

.about-cta {
    margin-top: 4px;
}


/* ─────────────────────────────────────────────────────────────
   12. PRODUCTS
   ───────────────────────────────────────────────────────────── */

.products {
    padding: clamp(72px, 12vw, 130px) 0;
    background: var(--bg-alt);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    grid-auto-rows: 1fr;
    /* equal height rows */
}

@media (min-width: 768px) {
    .product-grid {
        gap: 20px;
    }
}

@media (min-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1100px) {
    .product-grid {
        gap: 24px;
    }
}

/* Card */
.product-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    cursor: default;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), #ff4d5a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desktop hover only */
@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 56px rgba(0, 0, 0, .13), 0 0 0 1px rgba(227, 6, 19, .14), 0 4px 12px rgba(227, 6, 19, .08);
        border-color: rgba(227, 6, 19, .18);
    }

    .product-card:hover::after {
        transform: scaleX(1);
    }

    .product-card:hover .card-icon-wrap {
        transform: scale(1.1) rotate(-4deg);
    }

    .product-card:hover .card-tag {
        background: var(--red);
        color: #fff;
        border-color: var(--red);
    }
}

/* Centered icon area at top */
.card-icon-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 20px 12px;
    background: rgba(227, 6, 19, 0.025);
    border-bottom: 1px solid rgba(0, 0, 0, 0.045);
}

.card-icon-wrap {
    width: 90px;
    height: 90px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon-wrap img {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: contain;
    object-position: center;
    scale: 1.5;
}

.icon-boots,
.icon-body {
    scale: 1.25;
}

.icon-fire {
    scale: 1.8;
}

.icon-fall-protection,
.icon-fire,
.icon-overhead,
.icon-traffic {
    filter: brightness(90%) contrast(110%);
}


/* Card body below icon */
.card-body {
    padding: 14px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;

}


.card-title {
    font-family: var(--font-display);
    font-size: clamp(13px, 1.8vw, 17px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.65;
    letter-spacing: 0.01em;
    flex: 1;
    margin-bottom: 14px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto;
}

.card-tag {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--red);
    text-transform: uppercase;
    background: rgba(227, 6, 19, .08);
    padding: 5px 10px;
    border-radius: 100px;
    border: 1px solid rgba(227, 6, 19, .18);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
    /* single line always */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: inline-block;
}

@media (max-width: 479px) {
    .card-icon-center {
        padding: 16px 14px 10px;
    }

    .card-icon-wrap {
        width: 68px;
        height: 68px;
    }

    .card-icon-wrap img {
        width: 68px;
        height: 68px;
    }

    .card-body {
        padding: 10px 12px 14px;
    }

    .card-title {
        font-size: 12px;
    }

    .card-desc {
        font-size: 11px;
    }

    .card-tag {
        display: none;
    }
}


/* ─────────────────────────────────────────────────────────────
   13. INDUSTRIES
   ───────────────────────────────────────────────────────────── */

.industries {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg);
}

/* Strictly equal columns — no width mismatch between cards */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1100px) {
    .industry-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }
}

.industry-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    cursor: default;
    will-change: opacity, transform;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

/* Desktop hover only — no click effects on mobile */
@media (hover: hover) {
    .industry-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: rgba(227, 6, 19, .2);
    }

    .industry-card:hover .industry-icon {
        background: var(--red);
        border-color: var(--red);
        box-shadow: 0 8px 24px rgba(227, 6, 19, .35);
    }

    .industry-card:hover .industry-icon img {
        filter: brightness(0) invert(1);
    }

    .industry-card:hover .industry-icon svg {
        color: #fff;
    }
}

.industry-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--red-light);
    border: 2px solid rgba(227, 6, 19, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.industry-icon img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: filter 0.3s;
}

.industry-icon svg {
    width: 30px;
    height: 30px;
    color: var(--red);
    transition: color 0.3s;
}

.industry-card h3 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.industry-card p {
    font-size: 12px;
    color: var(--text-3);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

@media (max-width: 639px) {
    .industry-grid {
        gap: 12px;
    }

    .industry-card {
        padding: 20px 12px;
        gap: 10px;
        border-radius: var(--radius);
    }

    .industry-icon {
        width: 56px;
        height: 56px;
    }

    .industry-icon img {
        width: 30px;
        height: 30px;
    }

    .industry-card h3 {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .industry-card p {
        font-size: 11px;
    }
}


/* ─────────────────────────────────────────────────────────────
   14. CTA SECTION
   ───────────────────────────────────────────────────────────── */

.cta-section {
    padding: 0 0 clamp(60px, 10vw, 100px);
    background: transparent;
    overflow: visible;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-bg {
    display: none;
}

.cta-inner {
    background: var(--red);
    border-radius: clamp(20px, 4vw, 40px);
    padding: clamp(56px, 8vw, 96px) clamp(28px, 6vw, 80px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(227, 6, 19, .28), 0 8px 24px rgba(0, 0, 0, .12);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: inherit;
}

.cta-inner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 100px;
    padding: 8px 18px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.5px;
    color: #fff;
    text-transform: uppercase;
}

.cta-title em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, .4);
    text-underline-offset: 5px;
}

.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    letter-spacing: 0.015em;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}


/* ─────────────────────────────────────────────────────────────
   15. CONTACT
   ───────────────────────────────────────────────────────────── */

.contact {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--bg);
}

.contact-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-hero {
        grid-template-columns: 1.2fr 1fr;
        gap: 64px;
    }
}

.contact-hero-left .section-title {
    margin-bottom: 14px;
}

.contact-hero-left .section-sub {
    margin-top: 8px;
    margin-bottom: 0;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Fix mobile cut-off: full container width */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    /* kept compact to prevent overflow on mobile */
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.25s, padding-left 0.25s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    min-width: 0;
    overflow: hidden;
    will-change: opacity, transform;
    box-sizing: border-box;
}

.contact-info-item:last-child {
    border-bottom: none;
}

@media (hover: hover) {
    .contact-info-item:hover {
        background: var(--surface);
        padding-left: 26px;
    }

    .contact-info-item:hover .contact-info-icon {
        background: var(--red);
        color: #fff;
    }

    .contact-info-item:hover .contact-info-arrow {
        background: var(--red);
        color: #fff;
        transform: rotate(-45deg);
    }
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-info-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-3);
    text-transform: uppercase;
}

.contact-info-val {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.contact-info-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

/* Mobile — tighter padding prevents right-edge cut-off */
@media (max-width: 479px) {
    .contact-info-item {
        padding: 14px 12px;
        gap: 10px;
    }

    .contact-info-icon {
        width: 36px;
        height: 36px;
    }

    .contact-info-val {
        font-size: 12px;
    }

    .contact-info-arrow {
        width: 24px;
        height: 24px;
    }

    .contact-info-arrow svg {
        width: 12px;
        height: 12px;
    }
}

/* CTA card */
.contact-cta-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    will-change: opacity, transform;
}

.contact-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), #ff4d5a);
}

.contact-cta-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
}

.contact-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.contact-cta-phone-icon {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta-phone-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(6, 227, 57, .15);
    animation: phoneRingPulse 2.5s ease-out infinite;
}

.contact-cta-phone-ring--1 {
    width: 90px;
    height: 90px;
    animation-delay: 0s;
}

.contact-cta-phone-ring--2 {
    width: 110px;
    height: 110px;
    animation-delay: 0.5s;
}

@keyframes phoneRingPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.contact-cta-phone-core {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .42), 0 2px 8px rgba(0, 0, 0, .18);
    animation: phoneCorePulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes phoneCorePulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(6, 227, 69, .35);
    }

    50% {
        box-shadow: 0 12px 40px rgba(6, 227, 61, .55);
    }
}

.contact-cta-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(37, 211, 102, .42);
    opacity: 0.35;
}

.contact-cta-dot--1 {
    width: 8px;
    height: 8px;
    top: 4px;
    right: 12px;
    animation: dotFloat 3s ease-in-out infinite;
}

.contact-cta-dot--2 {
    width: 6px;
    height: 6px;
    bottom: 8px;
    left: 10px;
    animation: dotFloat 2.5s ease-in-out 0.5s infinite;
}

.contact-cta-dot--3 {
    width: 10px;
    height: 10px;
    top: 16px;
    left: 4px;
    animation: dotFloat 3.5s ease-in-out 1s infinite;
}

@keyframes dotFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.35;
    }

    50% {
        transform: translateY(-8px);
        opacity: 0.6;
    }
}

.contact-cta-divider {
    width: 60%;
    height: 1px;
    background: var(--border);
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 100px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .42), 0 2px 8px rgba(0, 0, 0, .18);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, .55);
}


/* ─────────────────────────────────────────────────────────────
   16. WHATSAPP FLOAT
   ───────────────────────────────────────────────────────────── */

.whatsapp-float {
    position: fixed !important;
    bottom: 28px !important;
    right: 24px !important;
    top: auto !important;
    left: auto !important;
    z-index: 950;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .42), 0 2px 8px rgba(0, 0, 0, .18);
    text-decoration: none;
    transform: translate3d(0, 0, 0) !important;
    will-change: contents;
    isolation: isolate;
    transition: bottom 0.3s ease, box-shadow 0.3s;
}

/* Push WA button above footer-bottom bar on all devices */
.whatsapp-float.above-footer {
    bottom: 90px !important;
}

@media (max-width: 768px) {
    .whatsapp-float.above-footer {
        bottom: 130px !important;
    }
}

/* Hover & scale — desktop pointer only */
@media (hover: hover) and (pointer: fine) {
    .whatsapp-float:hover {
        box-shadow: 0 12px 40px rgba(37, 211, 102, .55);
    }

    @supports (scale: 1) {
        .whatsapp-float:hover { scale: 1.1; }
    }

    @supports not (scale: 1) {
        .whatsapp-float:hover {
            transform: translate3d(0, 0, 0) scale(1.1) !important;
        }
    }
}

/* Active press feedback — all devices */
@supports (scale: 1) {
    .whatsapp-float:active { scale: 0.94; }
}
@supports not (scale: 1) {
    .whatsapp-float:active {
        transform: translate3d(0, 0, 0) scale(0.94) !important;
    }
}

.whatsapp-float-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .35);
    animation: waRing 2s ease-out infinite;
}

@keyframes waRing {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-float-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: var(--text);
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .whatsapp-float:hover .whatsapp-float-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text);
}


/* ─────────────────────────────────────────────────────────────
   17. FOOTER
   ───────────────────────────────────────────────────────────── */

.footer {
    background: #0D0C0E;
    color: #8C8896;
    padding-top: 80px;
    font-family: var(--font);
}

.footer-top {
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-brand p {
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-wordmark {
    color: #FFFFFF;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.footer-tagline-red {
    color: var(--red);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.015em;
    max-width: 340px;
    color: #6C6872;
}

.footer-col h4 {
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #8C8896;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--red);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-link:hover {
  color: var(--red);
}
.footer-contact-link .f-icon {
  flex-shrink: 0;
}

.f-icon {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex-shrink: 0;
}

.footer-bottom {
    background: #09080A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 12px;
    color: #8C8896;
    letter-spacing: 0.5px;
    margin: 0;
}

body.js-ready .footer-bottom {
    opacity: 1 !important;
}

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

    .footer-col:nth-child(3) {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}

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

    .footer-brand {
        grid-column: span 1;
    }
}


/* ─────────────────────────────────────────────────────────────
   18. SCROLL PROGRESS
   ───────────────────────────────────────────────────────────── */

#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), #ff4d5a);
    z-index: 10001;
    pointer-events: none;
    width: 0%;
    transition: width 0.1s linear;
}


/* ─────────────────────────────────────────────────────────────
   19. REVEAL / GSAP INIT STATES
   ───────────────────────────────────────────────────────────── */

.hero-badge,
.hero-line .hero-word,
.hero-sub,
.hero-actions .btn,
.hero-stats,
.hero-stat,
.about-card-main,
.about-floating-badge,
.about .section-label,
.about .section-title,
.about-desc,
.pillar,
.about-cta,
.products .section-label,
.products .section-title,
.products .section-sub,
.product-card,
.industries .section-label,
.industries .section-title,
.industry-card,
.cta-badge,
.cta-title,
.cta-sub,
.cta-actions .btn,
.contact .section-label,
.contact .section-title,
.contact .section-sub,
.contact-info-item,
.contact-cta-card,
.footer-brand,
.footer-links-col,
.footer-bottom,
.marquee-section {
    will-change: transform, opacity;
}

body.js-ready .hero-badge,
body.js-ready .hero-line .hero-word,
body.js-ready .hero-sub,
body.js-ready .hero-actions .btn,
body.js-ready .hero-stats,
body.js-ready .hero-stat {
    opacity: 0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
}


/* ─────────────────────────────────────────────────────────────
   20. SCROLLBAR & SELECTION
   ───────────────────────────────────────────────────────────── */

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-dark);
}


/* ─────────────────────────────────────────────────────────────
   21. REDUCED MOTION
   ───────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}


/* ─────────────────────────────────────────────────────────────
   22. MOBILE TAP EFFECTS  (touch devices only)
   ───────────────────────────────────────────────────────────── */

@media (hover: none) {

    /* Product cards — completely disable click/tap effects on mobile */
    .product-card,
    .product-card:hover,
    .product-card:active {
        transform: none !important;
        box-shadow: none !important;
        border-color: rgba(0, 0, 0, .08) !important;
    }

    .product-card::after,
    .product-card:hover::after,
    .product-card:active::after {
        transform: scaleX(0) !important;
    }

    .product-card .card-icon-wrap,
    .product-card:hover .card-icon-wrap,
    .product-card:active .card-icon-wrap {
        transform: none !important;
    }

    .product-card .card-tag,
    .product-card:hover .card-tag,
    .product-card:active .card-tag {
        background: rgba(227, 6, 19, .08) !important;
        color: var(--red) !important;
        border-color: rgba(227, 6, 19, .18) !important;
    }

    /* Industry cards — completely disable click/tap effects on mobile */
    .industry-card,
    .industry-card:hover,
    .industry-card:active {
        transform: none !important;
        box-shadow: none !important;
        border-color: var(--border) !important;
    }

    .industry-card .industry-icon,
    .industry-card:hover .industry-icon,
    .industry-card:active .industry-icon {
        background: var(--red-light) !important;
        border-color: rgba(227, 6, 19, .15) !important;
        box-shadow: none !important;
    }

    .industry-card .industry-icon img,
    .industry-card:hover .industry-icon img,
    .industry-card:active .industry-icon img {
        filter: none !important;
    }

    /* Pillars — gentle active feedback only */
    .pillar:active {
        background: var(--red-light);
    }

    .pillar:active .pillar-icon {
        background: var(--red);
        color: #fff;
    }

    /* Contact info items */
    .contact-info-item:hover {
        background: var(--bg-alt);
        padding-left: 18px;
    }

    .contact-info-item:active {
        background: var(--surface);
    }

    .contact-info-item:active .contact-info-icon {
        background: var(--red);
        color: #fff;
    }

    .contact-info-item:active .contact-info-arrow {
        background: var(--red);
        color: #fff;
        transform: rotate(-45deg);
    }

    /* Hero PPE items — disable float animation on touch */
    .hero-ppe-item {
        animation: none !important;
    }

    .hero-ppe-item:hover,
    .hero-ppe-item:active {
        transform: none !important;
        box-shadow: none !important;
    }
}