/* ========================================
   TRAPLAST — Premium CSS Design System
   ======================================== */

/* --- Design Tokens --- */
:root {
    --primary: #0974c2;
    --primary-dark: #07548c;
    --primary-light: #e6f1fb;
    --accent: #d96b1f;
    --accent-light: #f08a45;
    --accent-glow: rgba(217, 107, 31, 0.24);
    --text: #101b2a;
    --text-light: #4b596d;
    --text-muted: #7a8799;
    --bg: #f2f7ff;
    --bg-white: #ffffff;
    --bg-dark: #0b2a4a;
    --bg-darker: #071a2e;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 2px 8px rgba(10, 94, 184, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 94, 184, 0.1);
    --shadow-lg: 0 20px 60px rgba(10, 94, 184, 0.15);
    --shadow-glow: 0 0 40px rgba(10, 94, 184, 0.2);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color-scheme: light;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid var(--glass-border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.loader-text {
    color: var(--bg-white);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 6px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-light), #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Common --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.14;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.4px;
    text-wrap: balance;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(10, 94, 184, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 245, 255, 0.96));
    border: 1px solid rgba(11, 79, 138, 0.16);
    box-shadow: 0 8px 22px rgba(8, 62, 120, 0.14);
    transition: var(--transition);
}

.logo picture {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    filter: saturate(1.2) contrast(1.08) drop-shadow(0 4px 8px rgba(11, 79, 138, 0.22));
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(8, 62, 120, 0.2);
}

.navbar.scrolled .logo {
    padding: 5px 12px;
    border-radius: 12px;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

/* Punch up slide 2 on homepage */
.page-home .hero-slider .hero-slide:nth-child(2) {
    background-position: center 42% !important;
    filter: saturate(1.32) contrast(1.3) brightness(1.04) hue-rotate(4deg) !important;
}

.page-home .hero-slider .hero-slide:nth-child(2) .hero-slide-overlay {
    background:
        linear-gradient(104deg, rgba(4, 16, 30, 0.4) 0%, rgba(8, 36, 62, 0.22) 48%, rgba(22, 52, 82, 0.12) 100%),
        radial-gradient(circle at 82% 18%, rgba(120, 182, 255, 0.12), transparent 36%) !important;
}

/* Slide 5 (square visual): better fit in hero frame */
.page-home .hero-slider .hero-slide:nth-child(5) {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    transform: scale(1.03) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) !important;
}

.page-home .hero-slider .hero-slide:nth-child(5).active {
    transform: scale(1.06) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) !important;
}

/* Home hero: images more visible and premium */
.page-home .hero-slide {
    filter: saturate(1.52) contrast(1.18) brightness(1.12) !important;
}

.page-home .hero-slide-overlay {
    background:
        linear-gradient(102deg, rgba(3, 18, 38, 0.42) 0%, rgba(5, 31, 59, 0.22) 42%, rgba(154, 100, 26, 0.12) 100%),
        radial-gradient(circle at 86% 14%, rgba(255, 206, 126, 0.24), transparent 38%) !important;
}

.page-home .hero-slider::before {
    opacity: 0.74 !important;
}

.page-home .hero-slide-content {
    background: linear-gradient(120deg, rgba(7, 26, 48, 0.54), rgba(7, 26, 48, 0.14)) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    box-shadow: 0 14px 34px rgba(6, 22, 40, 0.34) !important;
}

/* ========================================
   GLOBAL SECTION BACKGROUNDS (LOGO PALETTE)
   ======================================== */
section {
    background: var(--bg) !important;
}

section:nth-of-type(even) {
    background: var(--primary-light) !important;
}

section {
    color: var(--text);
}

section p,
section li,
section .section-desc {
    color: var(--text-light);
}

.hero .hero-kicker,
.hero h1,
.hero .hero-subline,
.hero .hero-meta {
    color: var(--text) !important;
}

.hero .hero-slide-cta,
.hero .hero-slide-cta * {
    color: #ffffff !important;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, #1785ec, var(--accent)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #07111c 0%, #0a243f 38%, var(--primary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    background:
        linear-gradient(rgba(6, 18, 34, 0.68), rgba(6, 18, 34, 0.72)),
        image-set(
            url('../images/traplast_logistics.png') type('image/png') 1x,
            url('../images/traplast_logistics.png') type('image/png') 1x
        ) center center / cover no-repeat,
        url('../images/impact-hero-bg-grid.svg') center center / cover no-repeat;
    opacity: 0.66;
    animation: heroBackdropDrift 14s ease-in-out infinite alternate;
}

.hero::after {
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.16), transparent 38%),
        radial-gradient(circle at 82% 30%, rgba(232, 93, 4, 0.2), transparent 35%);
    opacity: 0.9;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 93, 4, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(10, 94, 184, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.94);
    animation: heroFadeIn 1.2s ease-out 0.2s both;
}

.hero-badge i {
    color: var(--accent-light);
    font-size: 1rem;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: heroFadeIn 1.2s ease-out 0.3s both;
    text-wrap: balance;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 1.24rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.62;
    animation: heroFadeIn 1.2s ease-out 0.4s both;
    text-wrap: pretty;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: heroFadeIn 1.2s ease-out 0.5s both;
}

.hero-micro-proof {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    margin: -34px 0 34px;
    letter-spacing: 0.2px;
    animation: heroFadeIn 1.2s ease-out 0.55s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.96rem;
    min-height: 52px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font);
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    box-shadow: 0 8px 25px var(--accent-glow);
    letter-spacing: 0.2px;
    animation: ctaPulse 2.8s ease-in-out infinite;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 93, 4, 0.4);
    animation-play-state: paused;
}

@keyframes ctaPulse {
    0%,
    100% {
        box-shadow: 0 8px 25px var(--accent-glow);
    }

    50% {
        box-shadow: 0 14px 34px rgba(232, 93, 4, 0.42);
    }
}

.btn-outline-hero {
    background: var(--glass);
    color: white;
    border: 1.5px solid var(--glass-border);
    backdrop-filter: blur(10px);
    letter-spacing: 0.2px;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    animation: heroFadeIn 1.2s ease-out 0.7s both;
}

@keyframes heroBackdropDrift {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-14px) scale(1.02);
    }
}

.hero-visual {
    margin: 36px auto 0;
    max-width: 760px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    animation: heroFadeIn 1.2s ease-out 0.8s both;
}

.hero-visual img {
    width: 100%;
    display: block;
}

.hero-pulse-tags {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    animation: heroFadeIn 1.2s ease-out 0.9s both;
}

.pulse-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    backdrop-filter: blur(8px);
    animation: pulseTagGlow 2.6s ease-in-out infinite;
}

.pulse-tag:nth-child(2) {
    animation-delay: 0.3s;
}

.pulse-tag:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulseTagGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 6px 24px rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
    }
}

/* Visibility Strip */
.visibility-strip {
    background: linear-gradient(160deg, #f2f7ff 0%, #e7f1ff 100%);
    border-top: 1px solid rgba(10, 94, 184, 0.1);
    border-bottom: 1px solid rgba(10, 94, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.visibility-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bg-section-wave.svg') center / cover no-repeat;
    opacity: 0.65;
    pointer-events: none;
}

.visibility-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 22px 0;
}

.visibility-item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(11, 79, 138, 0.14);
    border-radius: var(--radius-md);
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.visibility-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.visibility-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.visibility-item strong {
    display: block;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.3;
}

.visibility-item span {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: inline;
}

.hero-stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
}

.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
    font-weight: 400;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounceScroll 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounceScroll {

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

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    background: var(--bg-white);
}

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

.about-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary-light);
    transform: translateX(8px);
}

.value-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.value-item h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1rem;
}

.value-item>div:last-child p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Visual */
.about-visual {
    position: sticky;
    top: 120px;
}

.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 22px;
    box-shadow: var(--shadow-md);
}

.about-media img {
    width: 100%;
    display: block;
}

.page-home .about-media {
    height: clamp(220px, 30vw, 340px);
}

.page-home .about-media img {
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.about-card-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.about-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-card i {
    font-size: 2rem;
    margin-bottom: 12px;
}

.about-card h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.about-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-card-1 {
    border-top-color: var(--primary);
}

.about-card-1 i {
    color: var(--primary);
}

.about-card-2 {
    border-top-color: var(--accent);
}

.about-card-2 i {
    color: var(--accent);
}

.about-card-3 {
    border-top-color: #25d366;
}

.about-card-3 i {
    color: #25d366;
}

/* Counters */
.about-counter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.counter-box {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.counter-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.counter-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
}

.counter-box span:not(.counter-number) {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.counter-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 220px;
    background: url('../images/bg-section-wave.svg') center bottom / cover no-repeat;
    opacity: 0.45;
    pointer-events: none;
}

.product-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border: 2px solid #dde3ed;
    background: var(--bg-white);
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

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

@media (min-width: 1025px) {
    .products-grid .product-card:nth-child(2),
    .products-grid .product-card:nth-child(5) {
        margin-top: 20px;
    }
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(11, 79, 138, 0.08);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
    transition: left 0.7s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 94, 184, 0.12);
}

.product-card:hover::after {
    left: 140%;
}

.product-card.hidden {
    display: none;
}

/* Card Visual with CSS Gradients */
.card-visual {
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual,
.about-media,
.sector-media,
.testimonials-media,
.cta-media,
.contact-form-media,
.card-visual {
    position: relative;
    isolation: isolate;
}

.hero-visual picture,
.about-media picture,
.sector-media picture,
.testimonials-media picture,
.cta-media picture,
.contact-form-media picture,
.card-visual picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-visual::before,
.about-media::before,
.sector-media::before,
.testimonials-media::before,
.cta-media::before,
.contact-form-media::before,
.card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/noise-texture.svg') center / 220px 220px repeat;
    mix-blend-mode: multiply;
    opacity: 0.16;
    z-index: 1;
    pointer-events: none;
}

.hero-visual::after,
.about-media::after,
.sector-media::after,
.testimonials-media::after,
.cta-media::after,
.contact-form-media::after,
.card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, transparent 35%, rgba(8, 18, 30, 0.28) 100%);
    z-index: 1;
    pointer-events: none;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
    filter: contrast(1.08) saturate(1.08) brightness(0.96);
}

.product-card:hover .card-img {
    transform: scale(1.04);
}

.products-grid .product-card:nth-child(1) .card-img {
    object-position: 50% 60%;
}

.products-grid .product-card:nth-child(2) .card-img {
    object-position: 52% 40%;
}

.products-grid .product-card:nth-child(3) .card-img {
    object-position: 50% 46%;
}

.products-grid .product-card:nth-child(4) .card-img {
    object-position: 50% 42%;
}

.products-grid .product-card:nth-child(5) .card-img {
    object-position: 48% 38%;
}

.products-grid .product-card:nth-child(6) .card-img {
    object-position: 50% 52%;
}

.card-icon-bg {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

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

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

.pvc-drainage-visual {
    background: linear-gradient(135deg, #285a85, #52769a);
}

.pehd-visual {
    background: linear-gradient(135deg, #0f395e, #2d6c9f);
}

.pvc-pression-visual {
    background: linear-gradient(135deg, #2b3e50, #5f7387);
}

.pvc-forage-visual {
    background: linear-gradient(135deg, #a95a2a, #d88a52);
}

.gaine-visual {
    background: linear-gradient(135deg, #2a6e92, #1b4c69);
}

.pehd-gaz-visual {
    background: linear-gradient(135deg, #b36b38, #d1844d);
}

.ppr-visual {
    background: linear-gradient(135deg, #2f7d3f, #66a647);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-content>p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.card-specs {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-specs li i {
    color: var(--primary);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-text i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* ========================================
   FEATURES BANNER
   ======================================== */
.features-banner {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    color: white;
    padding: 32px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px var(--accent-glow);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ========================================
   SECTORS SECTION
   ======================================== */
.sectors-section {
    background: var(--bg-white);
}

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

.sector-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 18px 24px 30px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    transition: height 0.4s ease;
}

.sector-card:hover {
    border-color: rgba(11, 79, 138, 0.16);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.sector-card:hover::before {
    height: 100%;
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: -30px 0 16px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.sector-media {
    height: 170px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0;
}

.sector-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.sectors-grid .sector-card:nth-child(1) .sector-media img {
    object-position: 50% 50%;
}

.sectors-grid .sector-card:nth-child(2) .sector-media img {
    object-position: 50% 52%;
}

.sectors-grid .sector-card:nth-child(3) .sector-media img {
    object-position: 50% 46%;
}

.sectors-grid .sector-card:nth-child(4) .sector-media img {
    object-position: 54% 42%;
}

.sectors-grid .sector-card:nth-child(5) .sector-media img {
    object-position: 54% 52%;
}

.sectors-grid .sector-card:nth-child(6) .sector-media img {
    object-position: 56% 44%;
}

.sector-card:hover .sector-media img {
    transform: scale(1.05);
}

.sector-card:hover .sector-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.sector-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.sector-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bg-section-wave.svg') center / cover no-repeat;
    opacity: 0.3;
    pointer-events: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-media {
    max-width: 920px;
    margin: 0 auto 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonials-media img {
    width: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
}

.page-home .testimonials-media {
    max-width: 1060px;
    height: clamp(480px, 54vw, 720px);
}

.page-home .testimonials-media img {
    height: 100%;
    object-fit: cover;
    object-position: center -12%;
    transform: scale(1.12);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 79, 138, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 900;
    color: rgba(10, 94, 184, 0.08);
    pointer-events: none;
}

.testimonial-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-card>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #dde3ed;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
    font-size: 0.9rem;
}

.slider-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

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

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dde3ed;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0c2d5e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 93, 4, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.cta-media {
    flex: 0 1 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    border: 1px solid var(--glass-border);
}

.cta-media img {
    width: 100%;
    object-fit: cover;
    object-position: center 46%;
    display: block;
    transform: scale(1.08);
}

.cta-text {
    color: white;
    flex: 1 1 420px;
    max-width: 560px;
}

.cta-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-text p {
    opacity: 0.8;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.page-home .cta-section {
    padding: 56px 0;
}

.page-home .cta-text h2 {
    font-size: 1.95rem;
}

.page-home .cta-text p {
    font-size: 0.98rem;
}

.page-home .cta-media {
    flex-basis: 300px;
}


/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/bg-contact-mesh.svg') center / cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(7, 29, 53, 0.14);
}

.contact-info-panel {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-panel h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-panel>p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-detail p a {
    color: #ffffff;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
    transition: var(--transition-fast);
}

.contact-detail p a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.95);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-socials a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    padding: 48px;
    background: var(--bg-white);
}

.contact-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-proof-strip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f8ff;
    border: 1px solid #d9e7fb;
    color: #24538a;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.contact-proof-strip i {
    color: #0a8f4f;
}

.contact-form-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #e5eaf2;
}

.contact-form-media img {
    width: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.page-home .contact-form-media {
    height: clamp(200px, 28vw, 320px);
}

.page-home .contact-form-media img {
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-visual,
.about-media,
.sector-media,
.testimonials-media,
.cta-media,
.contact-form-media,
.card-visual {
    transition: transform 0.32s ease, box-shadow 0.32s ease;
    will-change: transform;
}

.hero-visual img,
.about-media img,
.testimonials-media img {
    animation: mediaFloat 14s ease-in-out infinite alternate;
}

@keyframes mediaFloat {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.03) translateY(-6px);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #eaedf3;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.96rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(11, 79, 138, 0.12);
}

.form-group select {
    cursor: pointer;
    appearance: auto;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 17px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 93, 4, 0.35);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

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

.footer-brand {
    padding-right: 24px;
}

.footer-brand picture {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 0;
    filter: saturate(1.1) contrast(1.03) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.6);
}

.footer-socials a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a,
.footer-col ul li {
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 0.85rem;
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* ========================================
   SCROLL TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 9000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 9000;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

/* ========================================
   TRUST SECTION + FORM COMPLIANCE
   ======================================== */
.trust-section {
    background: linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    background: #fff;
    border: 1px solid rgba(11, 79, 138, 0.14);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.trust-card h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 10px;
}

.trust-card p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.trust-card ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.trust-card li i {
    color: var(--primary);
    font-size: 0.82rem;
}

/* Process Section */
.process-section {
    background: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    background: var(--bg);
    border: 1px solid rgba(11, 79, 138, 0.12);
    border-radius: var(--radius-md);
    padding: 22px;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 79, 138, 0.22);
}

.process-step {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-card h3 {
    font-size: 1.06rem;
    color: var(--text);
    margin-bottom: 8px;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(11, 79, 138, 0.14);
    border-radius: var(--radius-md);
    padding: 0 16px;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--text);
    padding: 16px 0;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--primary);
    font-weight: 800;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 0 0 16px;
}

.consent-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 4px 0 14px;
}

.consent-check input {
    margin-top: 3px;
}

.consent-check label {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-status {
    min-height: 20px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 10px;
}

.form-status.error {
    color: #b42318;
}

.form-status.success {
    color: #067647;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* --- Ultra-wide Desktop (1920px+) --- */
@media (min-width: 1920px) {
    .container {
        max-width: 1440px;
    }

    .hero h1 {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 800px;
    }

    .section-header h2 {
        font-size: 3.2rem;
    }

    .section-desc {
        font-size: 1.2rem;
        max-width: 720px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }

    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }

    .features-grid {
        gap: 40px;
    }

    .about-grid {
        gap: 80px;
    }

    .about-card-stack {
        gap: 24px;
    }

    .footer-grid {
        gap: 60px;
    }
}

/* --- Large Desktop (1440px+) --- */
@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .section {
        padding: 120px 0;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .card-visual {
        height: 250px;
    }

    .about-grid {
        gap: 70px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.6fr;
    }

}

/* --- Standard Desktop (1200px–1440px) is default --- */

/* --- Tablet / Small Desktop (max 1024px) --- */
@media (max-width: 1024px) {
    .logo {
        padding: 5px 12px;
    }

    .logo-img {
    height: 52px;
}

    .navbar.scrolled .logo-img {
        height: 46px;
    }

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

    .products-grid .product-card:nth-child(2),
    .products-grid .product-card:nth-child(5) {
        margin-top: 0;
    }

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

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

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

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

    .faq-list {
        grid-template-columns: 1fr;
    }

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

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

    .about-visual {
        position: relative;
        top: 0;
    }

    .about-card-stack {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

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

.form-assurance {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.45;
}

.mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 14px;
    background: rgba(12, 27, 51, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 8px;
    display: none;
    gap: 8px;
    z-index: 9100;
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.mobile-cta-bar.visible {
    transform: translateY(0);
}

.mobile-cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.mobile-cta-whatsapp {
    background: #25d366;
}

@media (max-width: 768px) {
    .logo {
        padding: 4px 10px;
        border-radius: 10px;
    }

    .logo-img {
        height: 44px;
    }

    .navbar.scrolled .logo-img {
        height: 42px;
    }

    .footer-logo-img {
        height: 52px;
    }

    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        gap: 8px;
        z-index: 9999;
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

    /* Hero */
    .hero {
        padding-top: 94px;
        min-height: auto;
        padding-bottom: 44px;
    }

    .hero h1 {
        font-size: 2.22rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1.03rem;
        line-height: 1.52;
        margin-bottom: 26px;
    }

    .hero-micro-proof {
        font-size: 0.82rem;
        margin: -18px 0 22px;
    }

    .hero-visual {
        margin-top: 18px;
        border-radius: 16px;
    }

    .hero-pulse-tags {
        gap: 8px;
    }

    .pulse-tag {
        font-size: 0.72rem;
        padding: 7px 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 14px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-scroll {
        display: none;
    }

    /* Sections */
    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 1.72rem;
        line-height: 1.2;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .card-visual {
        height: 220px;
    }

    .product-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

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

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

    .faq-list {
        grid-template-columns: 1fr;
    }

    /* Sectors */
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .visibility-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 0;
    }

    .sector-media {
        height: 160px;
    }

    .sector-icon {
        margin-top: -24px;
    }

    /* CTA */
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: min(100%, 340px);
        justify-content: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        padding: 36px 28px;
    }

    .contact-form {
        padding: 36px 28px;
    }

    .contact-proof-strip span {
        font-size: 0.72rem;
    }

    .contact-form-media {
        margin-bottom: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        min-height: 54px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 28px;
    }

    .testimonial-card>p {
        font-size: 1rem;
    }

    .testimonials-media {
        margin-bottom: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        padding-right: 0;
    }

    /* About */
    .about-card-stack {
        grid-template-columns: 1fr;
    }

    .about-counter-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-cta-bar {
        display: flex;
        bottom: max(10px, env(safe-area-inset-bottom));
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        bottom: 88px;
    }

    .scroll-top {
        bottom: 162px;
    }

    body {
        padding-bottom: 86px;
    }
}

/* ========================================
   AGGRESSIVE COMMERCIAL MODE
   ======================================== */
:root {
    --sales-red: #e63b2e;
    --sales-red-deep: #bf2419;
    --sales-yellow: #ffd166;
    --sales-shadow: 0 18px 40px rgba(191, 36, 25, 0.35);
}

.hero-slide-content h1,
.company-hero-copy h1 {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 900;
}

.hero-kicker,
.section-tag {
    border-radius: 999px;
    font-weight: 800;
}

.hero-kicker {
    color: #fff;
    background: linear-gradient(135deg, var(--sales-red), #ff6a3d);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--sales-shadow);
}

.section-tag {
    background: linear-gradient(135deg, #fff7df, var(--sales-yellow));
    border: 1px solid rgba(230, 59, 46, 0.35);
}

.btn-primary-hero,
.hero-slide-cta,
.btn-submit,
.mobile-cta-primary {
    background: linear-gradient(135deg, var(--sales-red-deep), var(--sales-red), #ff7b44) !important;
    box-shadow: var(--sales-shadow) !important;
    transform-origin: center;
    animation: salesPulse 1.9s ease-in-out infinite;
}

.btn-outline-hero,
.filter-btn {
    border: 2px solid rgba(230, 59, 46, 0.45);
}

.btn-primary-hero:hover,
.hero-slide-cta:hover,
.btn-submit:hover,
.mobile-cta-primary:hover {
    transform: translateY(-3px) scale(1.03);
    filter: saturate(1.2);
}

.hero-slide-overlay {
    background: linear-gradient(112deg, rgba(2, 11, 22, 0.82), rgba(120, 30, 22, 0.54), rgba(230, 59, 46, 0.34));
}

.hero-arrow {
    background: linear-gradient(135deg, rgba(230, 59, 46, 0.86), rgba(255, 123, 68, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 24px rgba(191, 36, 25, 0.34);
}

.hero-dot.active {
    background: var(--sales-red);
    box-shadow: 0 0 0 5px rgba(230, 59, 46, 0.22), 0 0 26px rgba(255, 123, 68, 0.9);
}

.product-card:hover,
.sector-card:hover,
.trust-card:hover,
.process-card:hover,
.testimonial-card:hover {
    border-color: rgba(230, 59, 46, 0.42) !important;
    box-shadow: 0 30px 64px rgba(191, 36, 25, 0.22);
}

.card-badge {
    background: linear-gradient(135deg, var(--sales-red-deep), var(--sales-red)) !important;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.36);
}

.cta-section,
.contact-section {
    position: relative;
}

.cta-section::after,
.contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(560px 180px at 70% 10%, rgba(230, 59, 46, 0.16), transparent 70%);
}

.footer-socials a:hover {
    background: linear-gradient(135deg, var(--sales-red), #ff7b44) !important;
    color: #fff !important;
}

@keyframes salesPulse {
    0%,
    100% {
        box-shadow: 0 14px 28px rgba(191, 36, 25, 0.28);
    }
    50% {
        box-shadow: 0 20px 44px rgba(191, 36, 25, 0.46);
    }
}

@media (max-width: 768px) {
    .btn-primary-hero,
    .hero-slide-cta,
    .btn-submit,
    .mobile-cta-primary {
        animation-duration: 2.3s;
    }
}

/* Footer Africa map background */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(980px 460px at 82% 24%, rgba(255, 209, 102, 0.3), transparent 76%),
        radial-gradient(760px 360px at 88% 66%, rgba(30, 168, 255, 0.2), transparent 78%),
        url('../images/africa-map-footer.svg') right -2% center / min(70vw, 860px) no-repeat;
    opacity: 0.78;
    pointer-events: none;
    z-index: 0;
}

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

@media (max-width: 900px) {
    .footer::before {
        background:
            radial-gradient(700px 320px at 78% 20%, rgba(255, 209, 102, 0.26), transparent 76%),
            radial-gradient(520px 260px at 84% 72%, rgba(30, 168, 255, 0.16), transparent 78%),
            url('../images/africa-map-footer.svg') right -30px bottom 10px / min(84vw, 560px) no-repeat;
        opacity: 0.62;
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-primary-hero {
        animation: none;
    }

    .hero-visual img,
    .about-media img,
    .testimonials-media img {
        animation: none;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 3px 8px;
    }

    .logo-img {
        height: 38px;
    }

    .navbar.scrolled .logo-img {
        height: 36px;
    }

    .hero h1 {
        font-size: 1.92rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero::before {
        opacity: 0.5;
    }

    .about-counter-grid {
        grid-template-columns: 1fr;
    }

    .card-content {
        padding: 22px 18px;
    }

    .card-content h3 {
        font-size: 1.08rem;
    }

    .mobile-cta-btn {
        font-size: 0.84rem;
        padding: 10px 8px;
    }

    .contact-info-panel,
    .contact-form {
        padding: 28px 20px;
    }
}

/* ========================================
   INTERPLAST-STYLE HOME OVERRIDE
   ======================================== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e9edf5;
    box-shadow: none;
    padding: 0;
    height: 116px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 0;
    height: 102px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.logo-img {
    height: 92px;
    filter: none;
}

.navbar.scrolled .logo-img {
    height: 74px;
}

.nav-links {
    gap: 22px;
    margin-left: auto;
}

.nav-link {
    background: transparent;
    color: #0c36ad;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ff2f2f;
    background: transparent;
}

.hero.hero-interplast {
    background: #ffffff;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 0;
    display: block;
    text-align: left;
}

.hero.hero-interplast::before,
.hero.hero-interplast::after {
    display: none;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 116px);
    min-height: 560px;
    max-height: 780px;
    overflow: hidden;
}

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

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(96deg, rgba(7, 24, 67, 0.62) 0%, rgba(7, 24, 67, 0.38) 38%, rgba(7, 24, 67, 0.18) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 53%;
    left: 6%;
    transform: translateY(-50%);
    max-width: 840px;
    color: #f7f9fc;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    padding: 30px 34px;
    border-radius: 12px;
    background: rgba(6, 22, 60, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(2px);
}

.hero-slide--right .hero-slide-content {
    left: 6%;
    right: auto;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.84rem;
    letter-spacing: 1.6px;
    font-weight: 700;
}

.hero-slide-content h1 {
    font-size: clamp(2.7rem, 6.3vw, 6.8rem);
    line-height: 1.02;
    font-weight: 800;
    margin: 0 0 16px;
    text-wrap: balance;
}

.hero-subline {
    font-size: clamp(1.05rem, 1.6vw, 1.7rem);
    line-height: 1.35;
    font-weight: 500;
    opacity: 0.96;
    margin: 0 0 13px;
}

.hero-meta {
    font-size: clamp(1rem, 1.4vw, 1.95rem);
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #ffffff;
    margin: 0;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 2.9rem;
    cursor: pointer;
    z-index: 3;
    opacity: 0.9;
}

.hero-prev {
    left: 10px;
}

.hero-next {
    right: 10px;
}

.hero-arrow:hover {
    opacity: 1;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.26);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.hero-dot.active {
    width: 30px;
    background: #ffffff;
    border-color: #ffffff;
}

.hero-dot:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .logo-img {
        height: 72px;
    }

    .navbar.scrolled .logo-img {
        height: 66px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.86rem;
        padding: 8px 0;
    }

    .hero.hero-interplast {
        padding-top: 108px;
    }

    .hero-slider {
        min-height: 500px;
        height: calc(100vh - 108px);
    }

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

    .hero-slide-content h1 {
        line-height: 1.06;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 88px;
    }

    .navbar.scrolled {
        height: 82px;
    }

    .logo-img {
        height: 58px;
    }

    .navbar.scrolled .logo-img {
    height: 52px;
}

    .nav-links {
        background: #ffffff;
        gap: 6px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 12px 8px;
    }

    .hero.hero-interplast {
        padding-top: 88px;
    }

    .hero-slider {
        min-height: 420px;
        height: calc(100vh - 88px);
        max-height: 640px;
    }

    .hero-slide-content {
        left: 6%;
        right: 14%;
        max-width: none;
        padding: 18px 18px;
    }

    .hero-slide--right .hero-slide-content {
        left: 6%;
        right: auto;
    }

    .hero-arrow {
        width: 46px;
        height: 46px;
        font-size: 2rem;
    }

    .hero-dots {
        bottom: 10px;
        gap: 8px;
    }

    .hero-dot {
        width: 9px;
        height: 9px;
    }

    .hero-dot.active {
        width: 24px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slide-content h1 {
        line-height: 1.1;
    }

    .hero-slide-content {
        left: 4%;
        right: 10%;
        padding: 14px 14px;
    }

    .hero-slide--right .hero-slide-content {
        left: 4%;
        right: auto;
    }

    .hero-kicker {
        margin-bottom: 8px;
        font-size: 0.72rem;
    }

    .hero-subline,
    .hero-meta {
        font-size: 0.92rem;
    }
}

/* ========================================
   INTERPLAST-STYLE FOOTER OVERRIDE
   ======================================== */
.footer {
    background: #ffffff;
    color: #36507f;
    padding-top: 56px;
    border-top: 1px solid #e9edf5;
}

.footer-grid {
    gap: 36px;
    padding-bottom: 34px;
    border-bottom: 1px solid #e6ecf7;
}

.footer-brand picture {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 74px;
    filter: none;
}

.footer-brand p {
    color: #5a6b87;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: #f2f5fb;
    border: 1px solid #dbe5f4;
    border-radius: 6px;
    color: #0c36ad;
}

.footer-socials a:hover {
    background: #ff2f2f;
    border-color: #ff2f2f;
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-col h4 {
    color: #0c36ad;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.footer-col h4::after {
    width: 34px;
    height: 2px;
    background: #ff2f2f;
}

.footer-col ul a,
.footer-col ul li {
    color: #5a6b87;
}

.footer-col ul a:hover {
    color: #0c36ad;
    padding-left: 3px;
}

.footer-contact li i {
    color: #ff2f2f;
}

.footer-bottom {
    color: #5a6b87;
    padding: 18px 0 24px;
}

.footer-bottom a {
    color: #0c36ad;
}

.footer-bottom a:hover {
    color: #ff2f2f;
}

@media (max-width: 768px) {
    .footer {
        padding-top: 44px;
    }

    .footer-logo-img {
        height: 62px;
    }
}

/* ========================================
   HOME UNIFIED VISUAL OVERRIDE
   ======================================== */
body {
    background:
        radial-gradient(circle at 8% -8%, rgba(12, 54, 173, 0.08), transparent 28%),
        radial-gradient(circle at 92% 2%, rgba(255, 47, 47, 0.07), transparent 24%),
        #f6f8fc;
    color: #163158;
}

h1, h2, h3, h4,
.nav-link,
.hero-kicker,
.footer-col h4 {
    font-family: 'Montserrat', var(--font);
}

.section {
    padding: 94px 0;
}

.section-header h2 {
    color: #0b2f93;
    letter-spacing: -0.2px;
    text-wrap: balance;
}

.section-desc {
    color: #4e5f7d;
    max-width: 760px;
}

.section-tag {
    background: #edf2ff;
    color: #0c36ad;
    border: 1px solid #d7e2ff;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #0c36ad, #1f63ff 52%, #ff2f2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visibility-strip {
    background: linear-gradient(180deg, #eef3ff 0%, #f6f8fc 100%);
    border-top: 1px solid #dbe6fb;
    border-bottom: 1px solid #dbe6fb;
}

.visibility-item,
.about-card,
.counter-box,
.product-card,
.sector-card,
.feature-item,
.trust-card,
.process-card,
.faq-item,
.testimonial-card {
    border-radius: 16px;
    border: 1px solid #dce6f7;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 51, 124, 0.08);
}

.visibility-item:hover,
.about-card:hover,
.counter-box:hover,
.product-card:hover,
.sector-card:hover,
.feature-item:hover,
.trust-card:hover,
.process-card:hover,
.faq-item:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 51, 124, 0.14);
}

.card-visual,
.sector-media,
.about-media,
.testimonials-media,
.contact-form-media,
.hero-slide {
    border-radius: 14px;
    overflow: hidden;
}

.card-img,
.sector-media img,
.about-media img,
.testimonials-media img {
    transition: transform 0.6s ease;
}

.product-card:hover .card-img,
.sector-card:hover .sector-media img,
.about-visual:hover .about-media img {
    transform: scale(1.05);
}

.btn,
.filter-btn,
.btn-text {
    border-radius: 10px;
    font-weight: 700;
}

.btn-primary-hero,
.btn-submit,
.mobile-cta-primary {
    background: linear-gradient(135deg, #0c36ad 0%, #1e58df 55%, #ff2f2f 100%);
    box-shadow: 0 10px 26px rgba(12, 54, 173, 0.26);
}

.btn-primary-hero:hover,
.btn-submit:hover,
.mobile-cta-primary:hover {
    box-shadow: 0 16px 34px rgba(12, 54, 173, 0.34);
}

.btn-outline-hero {
    border-color: rgba(255, 255, 255, 0.54);
}

.btn-text {
    color: #0c36ad;
}

.btn-text:hover {
    color: #ff2f2f;
}

.filter-btn {
    background: #edf2ff;
    color: #0c36ad;
    border: 1px solid #d5e1fb;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0c36ad;
    color: #fff;
    border-color: #0c36ad;
}

.hero-slider {
    position: relative;
    border-bottom: 1px solid #d9e3f7;
}

.hero-slide {
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    --hero-enter-duration: 720ms;
    --hero-exit-duration: 640ms;
    --hero-hold-duration: 6000ms;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.015) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
    transition:
        opacity var(--hero-exit-duration) ease,
        transform 7s cubic-bezier(0.2, 0.65, 0.2, 1),
        filter var(--hero-exit-duration) ease;
    filter: saturate(1.16) contrast(1.1) brightness(0.9);
    will-change: transform, opacity;
}

.hero-slide.active {
    transform: scale(1.065) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0);
}

.hero-slide.is-exiting {
    opacity: 0;
    transform: scale(1.035) translate3d(calc(var(--hero-parallax-x) * 0.6), calc(var(--hero-parallax-y) * 0.6), 0);
    filter: saturate(1.05) contrast(1.04) brightness(0.84);
}

.hero-slide.is-entering .hero-slide-content {
    opacity: 0.65;
    transform: translateY(-50%) translateX(14px);
}

.hero-slide.is-entering.is-entering-active .hero-slide-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    transition:
        opacity var(--hero-enter-duration) ease,
        transform var(--hero-enter-duration) cubic-bezier(0.2, 0.65, 0.2, 1);
}

.hero-slide:nth-child(1) {
    --hero-enter-duration: 680ms;
    --hero-exit-duration: 620ms;
    --hero-hold-duration: 5600ms;
    background-position: center 62%;
}

.hero-slide:nth-child(2) {
    --hero-enter-duration: 760ms;
    --hero-exit-duration: 660ms;
    --hero-hold-duration: 6200ms;
    background-position: center 46%;
}

.hero-slide:nth-child(3) {
    --hero-enter-duration: 960ms;
    --hero-exit-duration: 760ms;
    --hero-hold-duration: 7400ms;
    background-position: center 30%;
}

.hero-slide-overlay {
    background:
        linear-gradient(96deg, rgba(4, 28, 94, 0.7) 0%, rgba(4, 28, 94, 0.5) 38%, rgba(4, 28, 94, 0.16) 68%, rgba(6, 16, 40, 0.2) 100%),
        radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.14), transparent 28%);
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(80% 65% at 50% 8%, rgba(255, 202, 119, 0.2), transparent 56%),
        radial-gradient(70% 70% at 50% 100%, rgba(6, 21, 43, 0.5), transparent 70%);
    mix-blend-mode: screen;
    animation: heroCinemaGlow 12s ease-in-out infinite alternate;
}

@keyframes heroCinemaGlow {
    0% {
        opacity: 0.34;
        transform: translateY(-1.5%);
    }
    100% {
        opacity: 0.56;
        transform: translateY(1.5%);
    }
}

.hero-slide-content {
    backdrop-filter: blur(4px);
    background: linear-gradient(135deg, rgba(5, 28, 88, 0.48), rgba(5, 28, 88, 0.3));
    border-left: 4px solid #4da3ff;
    box-shadow: 0 18px 44px rgba(3, 16, 53, 0.35);
}

.hero-slide-content > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.active .hero-slide-content > * {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-kicker {
    transition-delay: 0.08s;
}

.hero-slide.active .hero-slide-content h1 {
    transition-delay: 0.15s;
}

.hero-slide.active .hero-subline {
    transition-delay: 0.22s;
}

.hero-slide.active .hero-meta {
    transition-delay: 0.29s;
}

.hero-slide.active .hero-slide-cta {
    transition-delay: 0.36s;
}

.page-home .hero-slide-content {
    color: #ffffff;
    background: linear-gradient(120deg, rgba(7, 26, 48, 0.78), rgba(7, 26, 48, 0.32));
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(6, 22, 40, 0.35);
}

.page-home .hero-kicker,
.page-home .hero-slide-content h1,
.page-home .hero-subline,
.page-home .hero-meta {
    color: #ffffff !important;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.hero-kicker {
    color: #ffffff;
    letter-spacing: 1.4px;
    font-weight: 800;
}

.hero-slide-content h1 {
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    max-width: 18ch;
    font-weight: 900;
}

.hero-subline {
    color: rgba(245, 248, 255, 0.96);
    max-width: 62ch;
}

.hero-meta {
    color: #ffffff;
    font-weight: 700;
    opacity: 0.98;
    margin-bottom: 16px;
}

.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0c36ad 0%, #1f63ff 45%, #ff2f2f 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 24px rgba(10, 44, 130, 0.32);
}

.hero-slide-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(10, 44, 130, 0.42);
}

.contact-info-panel,
.contact-form {
    border-radius: 16px;
    border: 1px solid #d9e4f8;
    box-shadow: 0 14px 36px rgba(12, 54, 173, 0.1);
}

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

    .hero-slide-content {
        background: linear-gradient(135deg, rgba(5, 28, 88, 0.5), rgba(5, 28, 88, 0.34));
        border-left-width: 3px;
    }

    .hero-slide-cta {
        padding: 10px 16px;
        font-size: 0.78rem;
    }
}

/* ========================================
   FINAL TYPE SCALE TUNING
   ======================================== */
.nav-link {
    font-size: clamp(0.9rem, 0.75vw, 1.08rem);
}

.section-header h2 {
    font-size: clamp(2rem, 2.6vw, 3.1rem);
}

.section-desc {
    font-size: clamp(1rem, 1.05vw, 1.16rem);
}

.hero-kicker {
    font-size: clamp(0.72rem, 0.72vw, 0.9rem);
}

.hero-slide-content h1 {
    font-size: clamp(2.3rem, 5.2vw, 6rem);
}

.hero-subline {
    font-size: clamp(0.98rem, 1.35vw, 1.5rem);
}

.hero-meta {
    font-size: clamp(0.95rem, 1.15vw, 1.45rem);
}

.card-content h3,
.sector-content h3,
.process-card h3,
.faq-question h4,
.testimonial-author h4 {
    font-size: clamp(1.08rem, 1.15vw, 1.35rem);
    line-height: 1.25;
}

.card-content p,
.sector-content p,
.process-card p,
.faq-answer p,
.testimonial-card > p {
    font-size: clamp(0.93rem, 0.98vw, 1.05rem);
    line-height: 1.65;
}

.btn,
.filter-btn {
    font-size: clamp(0.88rem, 0.85vw, 0.98rem);
}

@media (max-width: 1024px) {
    .nav-link {
        font-size: 0.84rem;
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 3.8vw, 2.35rem);
    }

    .hero-slide-content h1 {
        font-size: clamp(2rem, 5.5vw, 3.2rem);
    }

    .hero-subline,
    .hero-meta {
        font-size: clamp(0.9rem, 1.8vw, 1.08rem);
    }
}

@media (max-width: 768px) {
    .nav-link {
        font-size: 0.92rem;
    }

    .section-header h2 {
        font-size: clamp(1.55rem, 5.4vw, 1.95rem);
    }

    .section-desc {
        font-size: 0.97rem;
    }

    .hero-kicker {
        font-size: 0.7rem;
    }

    .hero-slide-content h1 {
        font-size: clamp(1.55rem, 7.2vw, 2.25rem);
        line-height: 1.12;
    }

    .hero-subline {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .hero-meta {
        font-size: 0.9rem;
    }

    .card-content h3,
    .sector-content h3,
    .process-card h3,
    .faq-question h4,
    .testimonial-author h4 {
        font-size: 1.06rem;
    }
}

@media (max-width: 480px) {
    .hero-slide-content h1 {
        font-size: clamp(1.42rem, 8.2vw, 1.95rem);
    }

    .hero-subline,
    .hero-meta {
        font-size: 0.86rem;
    }

    .section-desc,
    .card-content p,
    .sector-content p,
    .process-card p,
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Hero Text Size Reduction (image-first) */
.hero-slide-content {
    padding: 20px 22px;
    max-width: 720px;
}

.hero-kicker {
    font-size: clamp(0.62rem, 0.58vw, 0.76rem);
}

.hero-slide-content h1 {
    font-size: clamp(1.55rem, 3.35vw, 3.7rem);
}

.hero-subline {
    font-size: clamp(0.82rem, 0.94vw, 1.02rem);
}

.hero-meta {
    font-size: clamp(0.76rem, 0.78vw, 0.9rem);
}

.hero-slide-cta {
    font-size: 0.74rem;
    padding: 9px 14px;
}

@media (max-width: 1024px) {
    .hero-slide-content h1 {
        font-size: clamp(1.38rem, 3.65vw, 2.2rem);
    }

    .hero-subline,
    .hero-meta {
        font-size: clamp(0.76rem, 1.05vw, 0.9rem);
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        padding: 14px 14px;
    }

    .hero-slide-content h1 {
        font-size: clamp(1.04rem, 4.35vw, 1.5rem);
    }

    .hero-subline,
    .hero-meta {
        font-size: 0.7rem;
    }

    .hero-slide-cta {
        font-size: 0.66rem;
        padding: 8px 12px;
    }

    .hero-slide {
        transform: scale(1);
    }

    .hero-slide.active {
        transform: scale(1.02);
    }

    .hero-slide:nth-child(1) {
        background-position: center 62%;
    }

    .hero-slide:nth-child(2) {
        background-size: cover;
        background-position: center 48%;
    }

    .hero-slide:nth-child(3) {
        background-position: center 24%;
    }
}

/* ========================================
   LOGO REPOSITION + ATTRACTIVENESS TUNING
   ======================================== */
.navbar .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 20px;
}

.logo {
    margin-right: 42px;
}

.logo-img {
    height: 124px;
    transform-origin: left center;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.logo:hover .logo-img {
    transform: scale(1.07);
    filter: saturate(1.08) drop-shadow(0 12px 20px rgba(12, 54, 173, 0.28));
}

.navbar.scrolled .logo-img {
    height: 96px;
}

@media (max-width: 1024px) {
    .navbar .container {
        padding-left: 8px;
        padding-right: 18px;
    }

    .logo-img {
        height: 104px;
    }

    .navbar.scrolled .logo-img {
        height: 84px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo {
        margin-right: 12px;
    }

    .logo-img {
        height: 58px;
    }

    .navbar.scrolled .logo-img {
    height: 52px;
}
}




/* ========================================
   ENTREPRISE PAGE
   ======================================== */
.company-hero {
    position: relative;
    padding: 180px 0 90px;
    background:
        linear-gradient(150deg, rgba(6, 20, 38, 0.9), rgba(11, 79, 138, 0.82)),
        url('../images/traplast_logistics.png') center/cover no-repeat;
    color: #fff;
}

.company-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 34px;
    align-items: center;
}

.company-hero-copy h1 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 14px;
    text-wrap: balance;
}

.company-hero-copy p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
}

.company-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.company-hero-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.company-intro {
    background: linear-gradient(180deg, #f6f9ff 0%, #edf4ff 100%);
}

.company-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.company-stat-card {
    background: #fff;
    border: 1px solid rgba(11, 79, 138, 0.13);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 22px;
}

.company-stat-card h3 {
    color: var(--primary);
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    line-height: 1.2;
    margin-bottom: 8px;
}

.company-stat-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.company-pillars {
    background: var(--bg-white);
}

.company-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.company-pillar-card {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    border: 1px solid rgba(11, 79, 138, 0.12);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.company-pillar-card h3 {
    margin: 12px 0 10px;
    color: var(--text);
}

.company-pillar-card p {
    color: var(--text-light);
}

.company-capabilities {
    background: #f1f6fd;
}

.company-capabilities-grid {
    display: grid;
    grid-template-columns: 1.06fr 1fr;
    align-items: center;
    gap: 24px;
}

.company-capabilities-copy h2 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    line-height: 1.15;
    margin: 14px 0;
}

.company-capabilities-copy p {
    color: var(--text-light);
}

.company-checklist {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.company-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
}

.company-checklist i {
    color: var(--accent);
    margin-top: 4px;
}

.company-capabilities-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(11, 79, 138, 0.18);
    box-shadow: var(--shadow-md);
}

.company-cta {
    background: linear-gradient(150deg, #07203a 0%, #0b4f8a 100%);
    color: #fff;
}

.company-cta-wrap {
    text-align: center;
}

.company-cta-wrap h2 {
    font-size: clamp(1.8rem, 2.9vw, 3.1rem);
    margin-bottom: 12px;
}

.company-cta-wrap p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.company-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .company-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .company-hero {
        padding-top: 132px;
    }

    .company-hero-grid,
    .company-capabilities-grid {
        grid-template-columns: 1fr;
    }
}

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

    .company-hero-copy h1 {
        font-size: 1.72rem;
    }
}
.company-profile {
    background: #ffffff;
}

.company-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.company-profile-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(11, 79, 138, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.company-profile-card h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.company-profile-card p {
    color: var(--text-light);
}

.company-sectors {
    background: linear-gradient(180deg, #fbfdff 0%, #eef4fb 100%);
}

.company-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.company-sector-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(11, 79, 138, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--text);
}

.company-sector-item i {
    color: var(--accent);
}

.company-contact-band {
    background: linear-gradient(160deg, #071c33 0%, #0b4f8a 100%);
    color: #fff;
}

.company-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.company-contact-grid article {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 24px;
}

.company-contact-grid h3 {
    margin-bottom: 8px;
}

.company-contact-grid p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.company-contact-grid .btn {
    margin-top: 10px;
}

.company-contact-media {
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    min-height: 100%;
}

.company-contact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1024px) {
    .company-profile-grid,
    .company-sector-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .company-contact-grid {
        grid-template-columns: 1fr;
    }

    .company-contact-media {
        max-width: 680px;
        margin: 0 auto;
        min-height: auto;
    }

    .company-contact-media img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 700px) {
    .company-profile-grid,
    .company-sector-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   HEADER BOOST + LEFT EDGE LOGO
   ======================================== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid rgba(11, 79, 138, 0.16);
    box-shadow: 0 10px 28px rgba(8, 62, 120, 0.08);
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, rgba(11, 79, 138, 0.55), rgba(232, 93, 4, 0.45), rgba(11, 79, 138, 0.2));
    pointer-events: none;
}

.navbar.scrolled {
    box-shadow: 0 16px 34px rgba(8, 62, 120, 0.16);
    border-bottom-color: rgba(11, 79, 138, 0.24);
}

.navbar .container {
    max-width: 100%;
    justify-content: flex-start !important;
    padding-left: 10px !important;
    padding-right: 20px;
    gap: 12px;
}

.logo {
    margin-left: 6px;
    margin-right: 22px;
    padding: 4px 10px 4px 0;
    border-radius: 0 14px 14px 0;
    border-left: 0;
    box-shadow: 0 8px 18px rgba(8, 62, 120, 0.16);
}

.logo-img {
    height: 78px;
    width: auto;
    transform-origin: left center;
}

.navbar.scrolled .logo-img {
    height: 66px;
}

.nav-links {
    margin-left: auto;
}

.nav-link {
    font-weight: 600;
    color: #e85d04;
}

.nav-link:hover,
.nav-link.active {
    color: #e85d04;
    background: rgba(232, 93, 4, 0.08);
    box-shadow: inset 0 0 0 1px rgba(232, 93, 4, 0.2);
}

@media (max-width: 1024px) {
    .navbar .container {
        padding-left: 10px !important;
        padding-right: 14px;
    }

    .logo {
        margin-right: 12px;
        padding: 3px 8px 3px 0;
    }

    .logo-img {
        height: 62px;
    }

    .navbar.scrolled .logo-img {
        height: 56px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding-left: 10px !important;
        padding-right: 10px;
    }

    .logo {
        margin-right: 6px;
        padding: 2px 6px 2px 0;
        border-radius: 0 10px 10px 0;
    }

    .logo-img {
        height: 46px;
    }

    .navbar.scrolled .logo-img {
        height: 42px;
    }
}





/* ========================================
   LENOVO-LIKE LOGO POSITION TWEAK
   ======================================== */
.navbar .container {
    padding-left: 18px !important;
    padding-right: 18px;
    align-items: center;
}

.logo {
    margin-left: 0px;
    margin-right: 18px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.logo-img {
    height: 52px;
    transform: translateX(-140px);
}

.navbar.scrolled .logo-img {
    height: 48px;
}

@media (max-width: 1024px) {
    .navbar .container {
        padding-left: 14px !important;
        padding-right: 14px;
    }

    .logo-img {
        height: 46px;
        transform: translateX(-140px);
    }

    .navbar.scrolled .logo-img {
        height: 42px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding-left: 10px !important;
        padding-right: 10px;
    }

    .logo {
        margin-right: 10px;
    }

    .logo-img {
        height: 40px;
        transform: translateX(-140px);
    }

    .navbar.scrolled .logo-img {
        height: 36px;
    }
}












/* ========================================
   PIPE IMAGE WATERMARK (TRAPLAST)
   ======================================== */
.product-card .card-visual,
.about-media,
.company-capabilities-media {
    position: relative;
    overflow: hidden;
}

.product-card .card-visual::after,
.about-media::after,
.company-capabilities-media::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: clamp(90px, 18%, 160px);
    aspect-ratio: 3 / 1;
    background: url('../images/logo-traplast-clean.png') center / contain no-repeat;
    opacity: 0.22;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(4, 34, 72, 0.35));
}

@media (max-width: 768px) {
    .product-card .card-visual::after,
    .about-media::after,
    .company-capabilities-media::after {
        width: 92px;
        right: 8px;
        bottom: 8px;
        opacity: 0.26;
    }
}
/* ========================================
   IMAGE FIT NORMALIZATION
   ======================================== */
.company-hero-media img,
.company-capabilities-media img,
.about-media img,
.contact-form-media img,
.testimonials-media img,
.cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* ========================================
   FINAL VISUAL POLISH (PAGE-BY-PAGE)
   ======================================== */
.page-home .hero {
    min-height: 92vh;
}

.page-entreprise .company-hero,
.page-produits .company-hero,
.page-contact .company-hero,
.page-brochure .company-hero {
    padding-top: 148px;
    padding-bottom: 72px;
}

.page-entreprise .company-hero-grid {
    grid-template-columns: 0.98fr 1.12fr;
    gap: 40px;
}

.page-entreprise .company-hero-media,
.page-produits .company-hero-media,
.page-contact .company-hero-media,
.page-brochure .company-hero-media {
    aspect-ratio: 16 / 9;
    min-height: 560px;
}


.page-entreprise .company-capabilities-media {
    aspect-ratio: 4 / 3;
    min-height: 280px;
}

.page-brochure .company-hero-media {
    background: transparent;
    padding: 0;
    max-width: 680px;
    margin-left: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-brochure .company-hero-media img {
    height: 420px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 16px 34px rgba(8, 40, 76, 0.24);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.page-brochure .company-hero-media img:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 36px rgba(8, 40, 76, 0.28);
}

.page-produits .products-grid {
    align-items: stretch;
}

.page-produits .company-hero-media {
    aspect-ratio: 16 / 10;
    min-height: 420px;
}

.page-contact .company-hero-media {
    aspect-ratio: 16 / 10;
    min-height: 380px;
}

.page-produits .product-hero-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    height: 100%;
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.page-produits .product-hero-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.page-produits .product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.page-produits .card-visual {
    aspect-ratio: 16 / 11;
}

.page-produits .card-content {
    flex: 1;
}

.page-contact .contact-grid {
    align-items: stretch;
}

.page-contact .contact-info-panel,
.page-contact .contact-form {
    height: 100%;
}

.page-brochure .company-hero-copy .btn-primary-hero {
    min-width: 260px;
    justify-content: center;
}

.footer .footer-grid {
    align-items: start;
}

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

@media (max-width: 1024px) {
    .page-entreprise .company-hero,
    .page-produits .company-hero,
    .page-contact .company-hero,
    .page-brochure .company-hero {
        padding-top: 128px;
        padding-bottom: 56px;
    }

    .page-entreprise .company-hero-media,
    .page-produits .company-hero-media,
    .page-contact .company-hero-media,
    .page-brochure .company-hero-media {
        min-height: 470px;
    }

    .page-produits .company-hero-media {
        min-height: 330px;
    }

    .page-contact .company-hero-media {
        min-height: 320px;
    }

    .page-produits .product-hero-gallery {
        gap: 8px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .page-home .hero {
        min-height: 84vh;
    }

    .page-entreprise .company-hero,
    .page-produits .company-hero,
    .page-contact .company-hero,
    .page-brochure .company-hero {
        padding-top: 108px;
        padding-bottom: 42px;
    }

    .page-entreprise .company-hero-media,
    .page-produits .company-hero-media,
    .page-contact .company-hero-media,
    .page-brochure .company-hero-media,
    .page-entreprise .company-capabilities-media {
        min-height: 380px;
    }

    .page-produits .company-hero-media {
        min-height: 280px;
    }

    .page-contact .company-hero-media {
        min-height: 260px;
    }

    .page-produits .product-hero-gallery {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 6px;
    }

    .page-produits .card-visual {
        aspect-ratio: 4 / 3;
    }

    .footer .footer-grid {
        gap: 24px;
    }
}

.page-entreprise .company-hero-media img {
    transform: scale(1.12);
    transform-origin: center center;
    object-position: center 42%;
    transition: transform 0.5s ease;
}

.page-entreprise .company-hero-media {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.page-entreprise .company-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 20, 37, 0.06) 0%, rgba(3, 20, 37, 0.26) 100%);
    pointer-events: none;
}

/* Entreprise hero: slightly smaller visual block */
.page-entreprise .company-hero-grid {
    grid-template-columns: 1.02fr 1.08fr;
    gap: 40px;
}

.page-entreprise .company-hero-media {
    min-height: 400px;
}

.page-entreprise .company-hero:hover .company-hero-media img {
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .page-entreprise .company-hero-media {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .page-entreprise .company-hero-media {
        min-height: 280px;
    }
}

/* ========================================
   SITE COHERENCE PASS
   ======================================== */
:root {
    --surface-soft: #f5f7fb;
    --surface-strong: #ffffff;
    --stroke-soft: rgba(10, 49, 92, 0.14);
    --shadow-unified: 0 20px 52px rgba(7, 31, 58, 0.14);
    --premium-gold: #c8963e;
    --premium-gold-light: #e0b56a;
    --premium-navy: #071d36;
    --font-display: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(1200px 480px at 10% -5%, rgba(7, 29, 54, 0.16), transparent 55%),
        radial-gradient(900px 420px at 100% 0%, rgba(200, 150, 62, 0.16), transparent 58%),
        var(--bg);
}

h1,
h2,
h3,
.nav-link,
.hero-kicker,
.section-tag,
.footer-col h4 {
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}

.section {
    position: relative;
    padding: clamp(76px, 8vw, 108px) 0;
}

.section:nth-of-type(odd) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 247, 253, 0.94));
}

.section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(234, 241, 250, 0.74), rgba(255, 255, 255, 0.95));
}

.section-header {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(36px, 5vw, 58px);
}

.section-header h2 {
    font-size: clamp(1.95rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.section-desc {
    max-width: 760px;
    font-size: clamp(1rem, 1.2vw, 1.14rem);
    line-height: 1.75;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #0a3967;
    border: 1px solid rgba(10, 57, 103, 0.16);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 238, 221, 0.82));
    box-shadow: 0 8px 20px rgba(8, 35, 66, 0.12);
}

.product-card,
.sector-card,
.trust-card,
.process-card,
.testimonial-card,
.company-stat-card,
.company-profile-card,
.company-pillar-card,
.contact-info-panel,
.contact-form {
    border: 1px solid var(--stroke-soft);
    box-shadow: var(--shadow-unified);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
    backdrop-filter: blur(2px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover,
.sector-card:hover,
.trust-card:hover,
.process-card:hover,
.testimonial-card:hover,
.company-stat-card:hover,
.company-profile-card:hover,
.company-pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 150, 62, 0.34);
    box-shadow: 0 28px 62px rgba(7, 31, 58, 0.2);
}

.card-content p,
.sector-card p,
.trust-card p,
.process-card p,
.testimonial-card > p,
.company-profile-card p,
.company-pillar-card p,
.company-stat-card p {
    color: var(--text-light);
}

.btn,
.filter-btn,
.btn-text,
.hero-slide-cta,
.btn-submit {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.btn-primary-hero,
.btn-submit,
.mobile-cta-primary,
.hero-slide-cta {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 14px 30px rgba(153, 108, 36, 0.32);
}

.btn-primary-hero:hover,
.btn-submit:hover,
.mobile-cta-primary:hover,
.hero-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(153, 108, 36, 0.4);
}

.btn-outline-hero,
.filter-btn {
    border: 1px solid rgba(7, 29, 54, 0.24);
    background: rgba(255, 255, 255, 0.95);
    color: var(--premium-navy);
}

.company-hero {
    background:
        linear-gradient(112deg, rgba(4, 20, 38, 0.94), rgba(8, 39, 72, 0.9)),
        radial-gradient(900px 460px at 82% 10%, rgba(200, 150, 62, 0.28), transparent 62%);
    border-bottom: 1px solid rgba(200, 150, 62, 0.24);
}

.company-hero-media,
.company-capabilities-media,
.sector-media,
.card-visual {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-detail {
    border-bottom: 1px solid rgba(11, 79, 138, 0.08);
}

.contact-detail:last-child {
    border-bottom: 0;
}

.form-group input,
.form-group textarea {
    border-radius: 12px;
    border: 1px solid rgba(11, 79, 138, 0.2);
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(11, 79, 138, 0.5);
    box-shadow: 0 0 0 4px rgba(11, 79, 138, 0.12);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(165deg, #041226 0%, #082540 62%, #0b3f6d 130%);
}

.footer-socials a {
    border: 1px solid rgba(200, 150, 62, 0.4);
}

.footer-socials a:hover {
    background: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-light));
    color: #07213d;
}

.footer-col h4::after {
    background: linear-gradient(90deg, var(--premium-gold), var(--premium-gold-light));
}

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

    .section-header h2 {
        font-size: 1.95rem;
    }

    .btn,
    .filter-btn,
    .hero-slide-cta,
    .btn-submit {
        min-height: 46px;
    }
}

/* ========================================
   PREMIUM DYNAMIQUE BOOST
   ======================================== */
:root {
    --premium-ink: #031326;
    --premium-cyan: #1ea8ff;
    --premium-gold-deep: #a57324;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(640px 260px at 8% 12%, rgba(30, 168, 255, 0.12), transparent 68%),
        radial-gradient(760px 320px at 90% 8%, rgba(224, 181, 106, 0.16), transparent 70%);
    animation: premiumAmbientShift 12s ease-in-out infinite alternate;
}

.navbar,
.hero,
.section,
.footer {
    position: relative;
    z-index: 1;
}

.section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 168, 255, 0.35), rgba(224, 181, 106, 0.55), transparent);
}

.section-tag {
    color: #072744;
    border: 1px solid rgba(200, 150, 62, 0.45);
    box-shadow:
        0 10px 24px rgba(8, 35, 66, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-slide-overlay {
    background:
        linear-gradient(106deg, rgba(3, 18, 38, 0.82) 0%, rgba(5, 31, 59, 0.58) 42%, rgba(154, 100, 26, 0.34) 100%),
        radial-gradient(circle at 88% 16%, rgba(255, 196, 106, 0.2), transparent 34%);
}

.product-card,
.sector-card,
.trust-card,
.process-card,
.testimonial-card,
.company-stat-card,
.company-profile-card,
.company-pillar-card,
.contact-info-panel,
.contact-form {
    position: relative;
    overflow: hidden;
}

.product-card::before,
.sector-card::before,
.trust-card::before,
.process-card::before,
.testimonial-card::before,
.company-stat-card::before,
.company-profile-card::before,
.company-pillar-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(224, 181, 106, 0.18) 44%, transparent 62%);
    transform: translateX(-130%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.product-card:hover::before,
.sector-card:hover::before,
.trust-card:hover::before,
.process-card:hover::before,
.testimonial-card:hover::before,
.company-stat-card:hover::before,
.company-profile-card:hover::before,
.company-pillar-card:hover::before {
    transform: translateX(130%);
}

.product-card:hover,
.sector-card:hover,
.trust-card:hover,
.process-card:hover,
.testimonial-card:hover,
.company-stat-card:hover,
.company-profile-card:hover,
.company-pillar-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.btn-primary-hero,
.btn-submit,
.mobile-cta-primary,
.hero-slide-cta {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, var(--premium-gold-deep), var(--premium-gold), var(--premium-gold-light));
}

.btn-primary-hero::before,
.btn-submit::before,
.mobile-cta-primary::before,
.hero-slide-cta::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 40%;
    height: 320%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transform: rotate(22deg);
    animation: premiumSheen 3.8s ease-in-out infinite;
}

.hero-slide-cta:hover,
.btn-primary-hero:hover,
.btn-submit:hover {
    filter: saturate(1.1) brightness(1.04);
}

.hero-dot.active {
    box-shadow: 0 0 0 4px rgba(30, 168, 255, 0.2), 0 0 22px rgba(224, 181, 106, 0.8);
}

.company-hero {
    box-shadow: inset 0 -80px 120px rgba(3, 19, 38, 0.35);
}

.footer {
    box-shadow: inset 0 1px 0 rgba(224, 181, 106, 0.24);
}

@keyframes premiumSheen {
    0% {
        left: -35%;
        opacity: 0;
    }
    14% {
        opacity: 0.9;
    }
    38% {
        left: 125%;
        opacity: 0;
    }
    100% {
        left: 125%;
        opacity: 0;
    }
}

@keyframes premiumAmbientShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(0, -10px, 0) scale(1.03);
    }
}

@media (max-width: 768px) {
    body::before {
        animation-duration: 16s;
    }

    .product-card:hover,
    .sector-card:hover,
    .trust-card:hover,
    .process-card:hover,
    .testimonial-card:hover,
    .company-stat-card:hover,
    .company-profile-card:hover,
    .company-pillar-card:hover {
        transform: translateY(-4px);
    }
}

/* ========================================
   LIGHT VISIBILITY OVERRIDES
   ======================================== */
#preloader {
    background: #f5f8fd;
}

.loader-text {
    color: #163158;
}

.cta-section {
    background: linear-gradient(135deg, #f2f7ff 0%, #e8f1ff 100%);
    border-top: 1px solid #dce8f9;
    border-bottom: 1px solid #dce8f9;
}

.cta-text {
    color: #163158;
}

.cta-text p {
    opacity: 1;
    color: #4b596d;
}

.contact-info-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    color: #163158;
    border-right: 1px solid #dde7f5;
}

.contact-info-panel > p,
.contact-detail strong,
.contact-detail p {
    color: #4b596d;
    opacity: 1;
}

.contact-detail p a {
    color: #0b4f8a;
    border-bottom-color: rgba(11, 79, 138, 0.35);
}

.contact-detail-icon {
    background: #eaf2ff;
    color: #0b4f8a;
}

.contact-socials a {
    background: #eaf2ff;
    color: #0b4f8a;
    border: 1px solid #d3e1f5;
}

.contact-socials a:hover {
    color: #ffffff;
}

.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    color: #4f617f;
    border-top: 1px solid #dce6f6;
}

.footer::before {
    content: none !important;
    background: none !important;
}

.footer-grid {
    border-bottom: 1px solid #dce6f6;
}

.footer-brand p,
.footer-col ul a,
.footer-col ul li,
.footer-bottom,
.footer-bottom a {
    color: #4f617f;
}

.footer-col h4 {
    color: #163158;
}

.footer-socials a {
    background: #eaf2ff;
    color: #0b4f8a;
    border: 1px solid #d3e1f5;
}

.footer-socials a:hover {
    color: #ffffff;
}

.footer-network-hero {
    position: relative;
    width: min(1280px, calc(100% - 24px));
    margin: 0 auto 34px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #c8dbf4;
    box-shadow: 0 20px 44px rgba(8, 39, 74, 0.18);
}

.footer-network-hero img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 420px;
    object-fit: cover;
}

.footer-network-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 20, 38, 0.14) 0%, rgba(3, 20, 38, 0.76) 100%),
        linear-gradient(90deg, rgba(3, 20, 38, 0.72) 0%, rgba(3, 20, 38, 0.2) 55%, rgba(3, 20, 38, 0.65) 100%);
    pointer-events: none;
}

.footer-network-hero-caption {
    position: absolute;
    left: clamp(14px, 2vw, 28px);
    right: clamp(14px, 2vw, 28px);
    bottom: clamp(14px, 2.2vw, 28px);
    z-index: 1;
    color: #f8fcff;
    max-width: 760px;
}

.footer-network-kicker {
    display: inline-flex;
    align-items: center;
    background: rgba(30, 168, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.36);
    color: #e8f7ff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.footer-network-hero-caption h3 {
    color: #ffffff;
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    line-height: 1.2;
    margin-bottom: 8px;
}

.footer-network-hero-caption p {
    margin: 0;
    color: rgba(241, 248, 255, 0.94);
    font-size: clamp(0.9rem, 1.1vw, 1.04rem);
}

@media (max-width: 900px) {
    .footer-network-hero {
        width: calc(100% - 16px);
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .footer-network-hero img {
        min-height: 210px;
        max-height: 320px;
    }
}

/* ========================================
   HEADER + FOOTER UNIFIED FRAME
   ======================================== */
:root {
    --frame-max-width: 1240px;
    --frame-edge: 24px;
    --brand-logo-header: 56px;
    --brand-logo-footer: 56px;
}

.navbar {
    padding: 12px 0;
    background: linear-gradient(110deg, rgba(251, 253, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 55%, rgba(250, 252, 255, 0.98) 100%);
    border-bottom: 1px solid rgba(11, 79, 138, 0.14);
    box-shadow: 0 12px 30px rgba(8, 62, 120, 0.1);
}

.navbar.scrolled {
    padding: 9px 0;
    box-shadow: 0 14px 34px rgba(8, 62, 120, 0.14);
}

.navbar .container,
.footer .container {
    max-width: var(--frame-max-width);
    padding-left: var(--frame-edge) !important;
    padding-right: var(--frame-edge);
}

.logo {
    margin: 0 18px 0 0;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(11, 79, 138, 0.16);
    background: linear-gradient(140deg, #ffffff, #edf5ff);
    box-shadow: 0 8px 20px rgba(8, 62, 120, 0.14);
}

.logo-img {
    height: var(--brand-logo-header);
    transform: none;
    filter: saturate(1.08) contrast(1.02);
}

.navbar.scrolled .logo-img {
    height: calc(var(--brand-logo-header) - 6px);
}

.footer {
    padding-top: 40px;
    padding-bottom: 12px;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(11, 79, 138, 0.2), rgba(232, 93, 4, 0.42), rgba(11, 79, 138, 0.18));
}

.footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 34px;
    padding-bottom: 32px;
}

.footer-logo-img {
    height: var(--brand-logo-footer);
    width: auto;
}

.footer-col ul a {
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-col ul a:hover {
    color: #0b4f8a;
    transform: translateX(3px);
}

.footer-socials a {
    box-shadow: 0 8px 18px rgba(11, 79, 138, 0.14);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(140deg, #0b4f8a, #1f76be);
}

@media (max-width: 1024px) {
    :root {
        --frame-edge: 16px;
        --brand-logo-header: 48px;
        --brand-logo-footer: 50px;
    }

    .footer {
        padding-top: 34px;
    }
}

@media (max-width: 768px) {
    :root {
        --frame-edge: 12px;
        --brand-logo-header: 42px;
        --brand-logo-footer: 46px;
    }

    .navbar {
        padding: 9px 0;
    }

    .navbar.scrolled {
        padding: 7px 0;
    }

    .logo {
        margin-right: 10px;
        padding: 4px 8px;
    }

    .footer {
        padding-top: 28px;
    }

    .footer-grid {
        gap: 24px;
    }
}

/* Footer compact + typography/image harmonization */
.footer {
    padding-top: 28px;
    padding-bottom: 8px;
}

.footer-grid {
    gap: 22px;
    padding-bottom: 18px;
}

.footer-brand p,
.footer-col ul li,
.footer-col ul a {
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-col ul {
    gap: 8px;
}

.footer-bottom {
    padding: 14px 0 4px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 0.84rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer {
        padding-top: 20px;
    }

    .footer-grid {
        gap: 18px;
        padding-bottom: 14px;
    }
}

/* Contact coordinates visual card */
.contact-network-card {
    margin: 18px auto 6px;
    width: min(100%, 430px);
    align-self: center;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #bfd5f2;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(8, 46, 86, 0.16);
    position: relative;
}

.contact-network-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.8;
    object-fit: cover;
    object-position: center center;
}

.contact-network-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 52%;
    background: linear-gradient(to top, rgba(4, 22, 42, 0.78), rgba(4, 22, 42, 0));
    pointer-events: none;
}

.contact-network-card figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 1;
    color: #f2f8ff;
    font-size: 0.78rem;
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.contact-network-card:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 22px 42px rgba(8, 46, 86, 0.24);
}

@media (max-width: 768px) {
    .contact-network-card {
        width: 100%;
        margin: 14px 0 4px;
        border-radius: 14px;
    }
}

/* ========================================
   GLOBAL SIZE NORMALIZATION + LESS EMPTY SPACE
   ======================================== */
:root {
    --site-max-width: 1240px;
    --site-gutter: 22px;
    --space-section-y: clamp(54px, 6vw, 78px);
    --space-section-head: clamp(24px, 3vw, 40px);
    --space-grid: clamp(16px, 2.2vw, 28px);
}

.container {
    max-width: var(--site-max-width);
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
}

.section {
    padding-top: var(--space-section-y) !important;
    padding-bottom: var(--space-section-y) !important;
}

.section-header {
    margin-bottom: var(--space-section-head) !important;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.55rem);
    line-height: 1.18;
    margin-bottom: 10px;
}

.section-desc {
    max-width: 760px;
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.62;
}

.about-grid,
.products-grid,
.sectors-grid,
.trust-grid,
.process-grid,
.testimonials-grid,
.contact-grid {
    gap: var(--space-grid) !important;
}

.hero.hero-interplast {
    padding-top: clamp(90px, 10vw, 112px);
}

.cta-section {
    padding-top: clamp(42px, 5vw, 64px);
    padding-bottom: clamp(42px, 5vw, 64px);
}

.footer {
    padding-top: clamp(18px, 3vw, 26px);
}

@media (max-width: 1024px) {
    :root {
        --site-gutter: 16px;
        --space-section-y: clamp(46px, 6vw, 64px);
    }
}

@media (max-width: 768px) {
    :root {
        --site-gutter: 12px;
        --space-section-y: clamp(38px, 7vw, 54px);
        --space-section-head: 22px;
    }

    .section-header h2 {
        font-size: clamp(1.45rem, 6vw, 2rem);
    }
}

/* Ultra-compact spacing pass */
:root {
    --space-section-y: clamp(48px, 5.4vw, 70px);
    --space-section-head: clamp(20px, 2.6vw, 34px);
    --space-grid: clamp(14px, 2vw, 24px);
}

.hero.hero-interplast {
    padding-top: 0;
}

.cta-section {
    padding-top: clamp(36px, 4.4vw, 56px);
    padding-bottom: clamp(36px, 4.4vw, 56px);
}

.footer {
    padding-top: clamp(14px, 2.4vw, 22px);
}

@media (max-width: 1024px) {
    :root {
        --space-section-y: clamp(40px, 5.6vw, 58px);
    }
}

@media (max-width: 768px) {
    :root {
        --space-section-y: clamp(34px, 6.2vw, 48px);
        --space-section-head: 18px;
        --space-grid: 14px;
    }
}

/* Hero slider unified image sizing + no empty edges */
.hero.hero-interplast {
    padding-bottom: 0 !important;
}

.hero-slider {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 205, 132, 0.28) !important;
    box-shadow: 0 8px 18px rgba(2, 14, 30, 0.26) !important;
    overflow: hidden !important;
    height: clamp(660px, 92vh, 1080px) !important;
    min-height: 660px !important;
    max-height: 1080px !important;
}

.hero-slide {
    border-radius: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.035) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) !important;
    filter: saturate(1.2) contrast(1.12) brightness(0.92) !important;
}

.hero-slide.active {
    transform: scale(1.085) translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0) !important;
}

/* Override per-slide offsets to keep all slides visually consistent */
.hero-slide:nth-child(1),
.hero-slide:nth-child(2),
.hero-slide:nth-child(3) {
    background-position: center center !important;
}

.page-home .hero-slider .hero-slide:nth-child(3) {
    background-size: 112% !important;
    background-position: 62% 36% !important;
    filter: saturate(1.18) contrast(1.12) brightness(1.03) !important;
}

.page-home .hero-slider .hero-slide:nth-child(3)::after {
    content: "";
    position: absolute;
    right: clamp(22px, 4vw, 56px);
    bottom: clamp(24px, 5vh, 54px);
    width: clamp(140px, 16vw, 240px);
    aspect-ratio: 1.9 / 1;
    background:
        linear-gradient(135deg, rgba(7, 25, 48, 0.16), rgba(7, 25, 48, 0.04)),
        url('../images/logo-traplast-clean.png') center / contain no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(2, 10, 24, 0.28);
    backdrop-filter: blur(8px);
    opacity: 0.96;
    z-index: 2;
    pointer-events: none;
}

.page-home .hero-slider .hero-slide:nth-child(3) .hero-slide-overlay {
    background:
        linear-gradient(96deg, rgba(4, 20, 54, 0.58) 0%, rgba(4, 22, 64, 0.34) 40%, rgba(6, 18, 44, 0.14) 72%, rgba(6, 16, 40, 0.12) 100%),
        radial-gradient(circle at 72% 42%, rgba(94, 182, 255, 0.14), transparent 34%) !important;
}

@media (max-width: 1024px) {
    .page-home .hero-slider .hero-slide:nth-child(3) {
        background-size: cover !important;
        background-position: 58% 32% !important;
    }

    .page-home .hero-slider .hero-slide:nth-child(3)::after {
        right: 18px;
        bottom: 18px;
        width: clamp(116px, 28vw, 168px);
        border-radius: 14px;
    }
}

@media (max-width: 1024px) {
    .hero-slider {
        height: clamp(580px, 84vh, 900px) !important;
        min-height: 580px !important;
        max-height: 900px !important;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: clamp(500px, 76vh, 760px) !important;
        min-height: 500px !important;
        max-height: 760px !important;
    }

    .hero-slide {
        transform: scale(1.02) translate3d(0, 0, 0) !important;
    }

    .hero-slide.active {
        transform: scale(1.045) translate3d(0, 0, 0) !important;
    }

    .hero-slide-content {
        left: 4% !important;
        right: 4% !important;
        max-width: none !important;
        padding: 18px 16px !important;
    }
}

/* Header unified: centered nav, logo pinned to left edge */
.navbar,
.navbar.scrolled {
    padding: 4px 0 !important;
    background: #ffffff !important;
    border-top: 16px solid #0974c2 !important;
    border-bottom: 1px solid rgba(11, 79, 138, 0.12) !important;
    box-shadow: 0 8px 18px rgba(10, 24, 40, 0.1) !important;
    backdrop-filter: blur(6px) saturate(1.05);
    -webkit-backdrop-filter: blur(6px) saturate(1.05);
}

.navbar.scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(11, 79, 138, 0.16) !important;
    box-shadow: 0 10px 22px rgba(10, 24, 40, 0.14) !important;
}

.navbar::after {
    display: none !important;
}

.navbar .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: calc(var(--frame-edge) + 26px) !important;
    padding-right: var(--frame-edge) !important;
}

.nav-link {
    color: #0974c2 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 10px 18px !important;
}

.nav-link:hover,
.nav-link.active {
    color: #d96b1f !important;
    background: rgba(217, 107, 31, 0.12) !important;
    box-shadow: inset 0 0 0 1px rgba(217, 107, 31, 0.32);
}

.bar {
    background: #d96b1f !important;
}

@media (min-width: 1025px) {
    .logo {
        position: absolute;
        left: calc(var(--frame-edge) * -10);
        top: 50%;
        margin: 0 !important;
        padding: 1px 3px !important;
        transform: translateY(-50%);
    }

    .logo:hover {
        transform: translateY(-50%);
    }

    .logo-img,
    .navbar.scrolled .logo-img {
        height: 48px !important;
    }

    .nav-links {
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .navbar .container {
        justify-content: space-between;
    }

    .logo {
        position: absolute;
        left: calc(var(--frame-edge) * -10);
        top: 50%;
        margin: 0 !important;
        padding: 1px 3px !important;
        transform: translateY(-50%);
    }

    .logo:hover {
        transform: translateY(-50%);
    }

    .logo-img,
    .navbar.scrolled .logo-img {
        height: 40px !important;
    }

    .nav-link {
        font-size: 1.05rem !important;
        padding: 11px 16px !important;
    }
}

/* Global nav search + search modal */
.nav-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(217, 107, 31, 0.3);
    border-radius: 10px;
    background: #ffffff;
    color: #d96b1f;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-search:hover {
    background: rgba(217, 107, 31, 0.1);
    color: #b95514;
    transform: translateY(-1px);
}

.site-search-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 92px 14px 20px;
    background: rgba(6, 21, 45, 0.56);
    backdrop-filter: blur(4px);
    z-index: 12000;
}

.site-search-modal.is-open {
    display: flex;
}

.site-search-panel {
    width: min(980px, 100%);
    max-height: min(78vh, 760px);
    overflow: auto;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 138, 0.2);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 24px 52px rgba(6, 32, 66, 0.24);
}

.site-search-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.site-search-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a2f54;
}

.site-search-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(11, 79, 138, 0.24);
    border-radius: 8px;
    background: #ffffff;
    color: #0b4f8a;
    cursor: pointer;
}

.site-search-input {
    width: 100%;
    height: 46px;
    border: 1px solid rgba(11, 79, 138, 0.25);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 0.98rem;
    outline: none;
}

.site-search-input:focus {
    border-color: #0b4f8a;
    box-shadow: 0 0 0 3px rgba(11, 79, 138, 0.13);
}

.site-search-status {
    margin: 10px 0 12px;
    font-size: 0.9rem;
    color: #29496a;
}

.site-search-results {
    display: grid;
    gap: 10px;
}

.site-search-result {
    display: grid;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid rgba(11, 79, 138, 0.16);
    border-radius: 10px;
    color: #10263f;
    background: linear-gradient(135deg, rgba(248, 252, 255, 0.96), #ffffff);
}

.site-search-result:hover {
    border-color: rgba(11, 79, 138, 0.45);
    background: #f2f8ff;
}

.site-search-result-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.site-search-result-top strong {
    font-size: 0.95rem;
    line-height: 1.3;
}

.site-search-result-top em {
    font-style: normal;
    font-size: 0.76rem;
    color: #0b4f8a;
    background: rgba(11, 79, 138, 0.08);
    border-radius: 999px;
    padding: 3px 8px;
}

.site-search-result-text {
    font-size: 0.86rem;
    line-height: 1.45;
    color: #40546e;
}

@media (max-width: 768px) {
    .site-search-modal {
        padding-top: 74px;
    }

    .site-search-panel {
        padding: 12px;
        border-radius: 12px;
    }
}

/* ========================================
   ENTREPRISE BOOST
   ======================================== */
.page-entreprise .company-hero-highlights {
    margin-top: 16px;
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-entreprise .company-hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(239, 248, 255, 0.95);
    font-weight: 500;
}

.page-entreprise .company-hero-highlights i {
    color: #ffd18a;
    margin-top: 4px;
}

.page-entreprise .company-hero-copy {
    position: relative;
    z-index: 1;
}

.page-entreprise .company-hero-copy p {
    max-width: 60ch;
}

.page-entreprise .company-hero-actions {
    margin-top: 20px;
}

.page-entreprise .company-hero .btn-outline-hero {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(6px);
}

.page-entreprise .company-proofstrip {
    background: var(--primary-light) !important;
    color: var(--text) !important;
    border-top: 1px solid rgba(9, 116, 194, 0.18);
    border-bottom: 1px solid rgba(9, 116, 194, 0.14);
}

.page-entreprise .company-proofstrip::after {
    display: none;
}

.page-entreprise .company-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.page-entreprise .company-proof-item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(9, 116, 194, 0.18);
    border-radius: 14px;
    padding: 18px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(8, 40, 76, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-entreprise .company-proof-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #d96b1f 0%, #0b74c2 100%);
}

.page-entreprise .company-proof-item strong {
    display: block;
    font-size: 1.22rem;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--primary);
}

.page-entreprise .company-proof-item span {
    color: var(--text-light);
    font-size: 0.94rem;
}

.page-entreprise .company-proof-item:hover {
    transform: translateY(-3px);
    border-color: rgba(9, 116, 194, 0.26);
    box-shadow: 0 18px 34px rgba(8, 40, 76, 0.14);
}

.page-entreprise .company-differentiators {
    background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.page-entreprise .company-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.page-entreprise .company-diff-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
    border: 1px solid rgba(11, 79, 138, 0.14);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(8, 40, 76, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-entreprise .company-diff-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.page-entreprise .company-diff-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 24, 43, 0.05) 0%, rgba(4, 24, 43, 0.24) 100%);
    pointer-events: none;
}

.page-entreprise .company-diff-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 0.45s ease;
}

.page-entreprise .company-diff-card h3,
.page-entreprise .company-diff-card p {
    padding-left: 18px;
    padding-right: 18px;
}

.page-entreprise .company-diff-card h3 {
    margin-top: 16px;
    margin-bottom: 8px;
    color: #0b3d6b;
}

.page-entreprise .company-diff-card p {
    margin-bottom: 18px;
    color: #3f5370;
}

.page-entreprise .company-diff-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 79, 138, 0.22);
    box-shadow: 0 24px 44px rgba(8, 40, 76, 0.18);
}

.page-entreprise .company-diff-card:hover .company-diff-media img {
    transform: scale(1.06);
}

.page-entreprise .company-diff-card:nth-child(1) .company-diff-media img {
    object-position: 50% 54%;
}

.page-entreprise .company-diff-card:nth-child(2) .company-diff-media img {
    object-position: 50% 46%;
}

.page-entreprise .company-diff-card:nth-child(3) .company-diff-media img {
    object-position: 50% 52%;
}

.page-entreprise .company-gallery {
    background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
}

.page-entreprise .company-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.page-entreprise .company-gallery-item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(11, 79, 138, 0.16);
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 40, 76, 0.11);
}

.page-entreprise .company-gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.page-entreprise .company-gallery-item figcaption {
    padding: 10px 12px 12px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #17395f;
}

.page-entreprise .company-contact-band .btn {
    margin-top: 12px;
}

.page-entreprise .company-contact-band h3 {
    color: #0b4f8a !important;
}

.page-entreprise .company-contact-band p {
    color: #0b4f8a !important;
}

.page-entreprise .company-contact-band i {
    color: #0b4f8a !important;
}

.page-entreprise .company-sector-grid {
    gap: 14px;
}

.page-entreprise .company-sector-item {
    display: block;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(11, 79, 138, 0.12);
    background: #fff;
    box-shadow: 0 18px 36px rgba(10, 46, 82, 0.12);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.page-entreprise .company-sector-media {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 220px;
    overflow: hidden;
}

.page-entreprise .company-sector-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 24, 43, 0.04) 0%, rgba(4, 24, 43, 0.3) 100%);
    pointer-events: none;
}

.page-entreprise .company-sector-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.4s ease;
    display: block;
}

.page-entreprise .company-sector-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    font-weight: 700;
    color: #153b63;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.96));
}

.page-entreprise .company-sector-title i {
    color: #d96b1f;
}

.page-entreprise .company-sector-item:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 79, 138, 0.22);
    box-shadow: 0 24px 44px rgba(10, 46, 82, 0.18);
}

.page-entreprise .company-sector-item:hover .company-sector-media img {
    transform: scale(1.06);
}

.page-entreprise .company-sector-item:nth-child(1) .company-sector-media img {
    object-position: 50% 52%;
}

.page-entreprise .company-sector-item:nth-child(2) .company-sector-media img {
    object-position: 50% 50%;
}

.page-entreprise .company-sector-item:nth-child(3) .company-sector-media img {
    object-position: 50% 58%;
}

.page-entreprise .company-sector-item:nth-child(4) .company-sector-media img {
    object-position: 50% 46%;
}

.page-entreprise .company-sector-item:nth-child(5) .company-sector-media img {
    object-position: 50% 44%;
}

.page-entreprise .company-sector-item:nth-child(6) .company-sector-media img {
    object-position: 50% 42%;
}

.page-entreprise .company-timeline {
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.page-entreprise .company-timeline-list {
    position: relative;
    display: grid;
    gap: 14px;
}

.page-entreprise .company-timeline-list::before {
    content: "";
    position: absolute;
    left: 86px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(11, 79, 138, 0.2), rgba(217, 107, 31, 0.32));
}

.page-entreprise .company-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: start;
}

.page-entreprise .company-timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    font-weight: 800;
    color: #0b3f6f;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 255, 0.94));
    border: 1px solid rgba(11, 79, 138, 0.28);
    position: relative;
    z-index: 1;
}

.page-entreprise .company-timeline-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
    border: 1px solid rgba(11, 79, 138, 0.14);
    border-radius: 14px;
    padding: 16px 16px;
    box-shadow: 0 10px 24px rgba(8, 40, 76, 0.1);
}

.page-entreprise .company-timeline-content h3 {
    margin: 0 0 6px;
    color: #123c67;
    font-size: 1.02rem;
}

.page-entreprise .company-timeline-content p {
    margin: 0;
    color: #425770;
}

@media (max-width: 1024px) {
    .page-entreprise .company-proof-grid,
    .page-entreprise .company-diff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-entreprise .company-proof-grid,
    .page-entreprise .company-diff-grid,
    .page-entreprise .company-gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-entreprise .company-proof-item strong {
        font-size: 1.04rem;
    }

    .page-entreprise .company-timeline-list::before {
        left: 68px;
    }

    .page-entreprise .company-timeline-item {
        grid-template-columns: 56px 1fr;
        gap: 12px;
    }

    .page-entreprise .company-timeline-year {
        min-height: 34px;
        font-size: 0.88rem;
    }
}

/* ========================================
   READABILITY BOOST
   ======================================== */
:root {
    --text-light: #2f445d;
    --text-muted: #52657d;
}

.section-desc,
.card-content p,
.sector-card p,
.trust-card p,
.process-card p,
.company-profile-card p,
.company-pillar-card p,
.company-stat-card p,
.company-diff-card p,
.site-search-result-text {
    color: #2f445d !important;
}

.about-content p,
.contact-detail p,
.faq-item p,
.form-group label,
.form-group input,
.form-group textarea,
.form-group select,
.form-status {
    color: #2f445d !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5e728a !important;
}

.hero-subline,
.hero-meta,
.hero-slide-content p {
    color: #f3f8ff !important;
}

.footer-brand p,
.footer-col ul a,
.footer-contact li,
.footer-bottom p,
.footer-bottom a {
    color: #234766 !important;
}

.footer-col h4 {
    color: #0b4f8a !important;
}

/* ========================================
   PAGE BY PAGE READABILITY
   ======================================== */
.page-home .section-desc,
.page-home .about-lead,
.page-home .visibility-item span,
.page-home .trust-card p,
.page-home .process-card p,
.page-home .testimonial-card > p,
.page-home .faq-item p {
    color: #2d445d !important;
}

.page-entreprise .section-desc,
.page-entreprise .company-checklist li,
.page-entreprise .company-timeline-content p,
.page-entreprise .company-profile-card p,
.page-entreprise .company-pillar-card p,
.page-entreprise .company-stat-card p {
    color: #2d445d !important;
}

.page-produits .section-desc,
.page-produits .card-content p,
.page-produits .filter-btn {
    color: #2d445d !important;
}

.page-contact .section-desc,
.page-contact .contact-info-panel > p,
.page-contact .contact-detail strong,
.page-contact .contact-detail p,
.page-contact .consent-check label,
.page-contact .form-status {
    color: #2d445d !important;
}

.page-brochure .section-desc,
.page-brochure .company-intro p {
    color: #2d445d !important;
}

/* ========================================
   LOGO CLEAN: REMOVE BACKGROUND + UNIFORM
   ======================================== */
.logo {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.navbar.scrolled .logo {
    padding: 0 !important;
    border-radius: 0 !important;
}

.logo-img {
    filter: none !important;
    height: 58px;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

/* ========================================
   HOME PRODUCTS: IMAGE CROPPING ALIGNMENT
   ======================================== */
.page-home .products-grid .product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.page-home .products-grid .card-visual {
    height: clamp(228px, 21vw, 276px) !important;
    background: linear-gradient(180deg, #f3f6fa 0%, #dde6ee 100%) !important;
}

.page-home .products-grid .card-content {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
}

.page-home .products-grid .btn-text {
    margin-top: auto !important;
}

.page-home .products-grid .card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform-origin: center !important;
}

.page-home .products-grid .pvc-drainage-visual .card-img {
    object-position: 50% 50% !important;
}

.page-home .products-grid .pehd-visual .card-img {
    object-position: 50% 48% !important;
}

.page-home .products-grid .pvc-pression-visual .card-img {
    object-position: 50% 54% !important;
}

.page-home .products-grid .pvc-forage-visual .card-img {
    object-position: 50% 42% !important;
}

.page-home .products-grid .gaine-visual .card-img {
    object-position: 50% 48% !important;
}

.page-home .products-grid .pehd-gaz-visual .card-img {
    object-position: 50% 48% !important;
}

.page-home .products-grid .ppr-visual .card-img {
    object-position: 56% 44% !important;
}

@media (max-width: 768px) {
    .page-home .products-grid .card-visual {
        height: 220px !important;
    }
}

/* ========================================
   PRODUCTS PAGE: IMAGE CROPPING ALIGNMENT
   ======================================== */
.page-produits .products-grid .product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.page-produits .products-grid .card-visual {
    height: clamp(228px, 21vw, 276px) !important;
    background: linear-gradient(180deg, #f3f6fa 0%, #dde6ee 100%) !important;
}

.page-produits .products-grid .card-content {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
}

.page-produits .products-grid .btn-text {
    margin-top: auto !important;
}

.page-produits .products-grid .card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform-origin: center !important;
}

.page-produits .products-grid .pehd-visual .card-img {
    object-position: 50% 48% !important;
}

.page-produits .products-grid .pvc-pression-visual .card-img {
    object-position: 50% 54% !important;
}

.page-produits .products-grid .pvc-forage-visual .card-img {
    object-position: 50% 42% !important;
}

.page-produits .products-grid .pvc-drainage-visual .card-img {
    object-position: 50% 50% !important;
}

.page-produits .products-grid .gaine-visual .card-img {
    object-position: 50% 48% !important;
}

.page-produits .products-grid .ppr-visual .card-img {
    object-position: 56% 44% !important;
}

@media (max-width: 768px) {
    .page-produits .products-grid .card-visual {
        height: 220px !important;
    }
}
