/* ===========================================
   JAGUAR DELIVERY — Design System (Enhanced)
   Navy: #000B3A | Orange: #f47920 | Gris clair: #f4f6fb
=========================================== */
:root {
    /* Brand Colors */
    --navy: #000B3A;
    --navy-light: #101c5c;
    --navy-bg: #0f1a4d;
    --navy-lighter: #1a2860;
    --orange: #f47920;
    --orange-dark: #d9650f;
    --orange-soft: #f9a65a;
    --orange-light: rgba(244, 121, 32, 0.1);

    /* Neutral Colors */
    --gray-bg: #f4f6fb;
    --gray-border: #e2e5f0;
    --white: #ffffff;
    --text-dark: #1b1f34;
    --text-muted: #6b7280;

    /* Spacing — more generous */
    --spacing-xs: 10px;
    --spacing-sm: 14px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 100px;
    --spacing-4xl: 130px;

    /* Design Tokens */
    --radius: 16px;
    --radius-md: 12px;
    --shadow: 0 10px 30px rgba(0, 11, 58, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 11, 58, 0.12);
    --shadow-sm: 0 4px 12px rgba(0, 11, 58, 0.05);

    /* Typography — bigger & airier */
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --line-height-tight: 1.2;
    --line-height-normal: 1.8;
    --line-height-relaxed: 2.0;
    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.02em;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    font-size: 16px;
    overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

::selection {
    background: var(--orange);
    color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

h1 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    font-weight: 700;
    font-size: 52px;
}

h2 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    font-weight: 700;
    font-size: 40px;
}

h3,
h4 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.3;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar .container,
.header-main .container,
.topbar .container,
.hero .container {
    max-width: 1280px;
}

.text-orange {
    color: var(--orange);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-gray {
    background: linear-gradient(180deg, var(--gray-bg) 0%, rgba(244, 246, 251, 0.5) 100%);
}

.eyebrow-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-soft));
    border-radius: 4px;
    margin: 20px 0 30px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(244, 121, 32, 0.25);
}

.btn-orange:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 32px rgba(244, 121, 32, 0.35);
    filter: brightness(1.08);
}

.btn-orange:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 11, 58, 0.2);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--gray-bg);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1).active {
    transition-delay: 0s;
}

.stagger-item:nth-child(2).active {
    transition-delay: 0.1s;
}

.stagger-item:nth-child(3).active {
    transition-delay: 0.2s;
}

.stagger-item:nth-child(4).active {
    transition-delay: 0.3s;
}

.stagger-item:nth-child(5).active {
    transition-delay: 0.4s;
}

.stagger-item:nth-child(6).active {
    transition-delay: 0.5s;
}

.stagger-item:nth-child(7).active {
    transition-delay: 0.6s;
}

.stagger-item:nth-child(8).active {
    transition-delay: 0.7s;
}

.stagger-item:nth-child(9).active {
    transition-delay: 0.8s;
}

@media (prefers-reduced-motion: reduce) {

    .reveal.active,
    .reveal-left.active,
    .reveal-right.active,
    .reveal-scale.active,
    .stagger-item.active {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============ KEYFRAME ANIMATIONS ============ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    50% {
        transform: translateX(6px);
    }

    75% {
        transform: translateX(-4px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-soft), var(--orange));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(244, 121, 32, 0.5);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(244, 121, 32, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 14px 32px rgba(244, 121, 32, 0.4);
}

/* ============ NAVBAR ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #000B3A;
    box-shadow: 0 2px 16px rgba(0, 11, 58, 0.3);
    transition: all var(--transition-smooth);
}

.topbar {
    background: #000B3A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    transition: all var(--transition-smooth);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 32px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #ffffff;
}

.topbar-item strong {
    display: block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
}

.topbar-item small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
}

.topbar-item small a {
    color: rgba(255, 255, 255, 0.75);
    transition: color .2s ease;
}

.topbar-item small a:hover {
    color: var(--orange);
}

.topbar-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 121, 32, 0.15);
    color: var(--orange);
    font-size: 11px;
    flex-shrink: 0;
}

.topbar-item--highlight {
    background: rgba(244, 121, 32, 0.08);
    border: 1px solid rgba(244, 121, 32, 0.2);
    border-radius: 999px;
    padding: 3px 10px;
}

.header-main {
    position: relative;
    background: #000B3A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.header-main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding-top: 2px;
    padding-bottom: 2px;
    gap: 20px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 180px;
    padding: 0;
    background: transparent;
}

.navbar-logo img {
    width: 215px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    background: transparent;
    transition: transform var(--transition-smooth);
}

.navbar-logo:hover img {
    transform: scale(1.03);
}

.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-weight: 600;
    font-size: 14.5px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.navbar-links a {
    color: #ffffff;
    position: relative;
    padding: 4px 0;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color var(--transition-base);
}

.navbar-links a:hover,
.navbar-links a.active {
    color: var(--orange);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-smooth);
    border-radius: 2px;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-nav-track {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-nav-track:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(244, 121, 32, 0.08);
    box-shadow: 0 0 20px rgba(244, 121, 32, 0.25);
    transform: translateY(-2px);
}

.header-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 22px rgba(244, 121, 32, 0.4);
}

.navbar-toggle {
    display: none;
    font-size: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
}

.navbar-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--orange);
}

@media (max-width: 1100px) {
    .navbar-links {
        gap: 20px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .header-main-inner {
        min-height: 52px;
    }

    .navbar-logo img {
        width: 165px;
    }

    .navbar-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: #000B3A;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        display: none;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
    }

    .navbar-links.open {
        display: flex;
    }

    .navbar-links a {
        padding: 14px 24px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    .navbar-links a:hover {
        background: rgba(244, 121, 32, 0.1);
        color: var(--orange);
        padding-left: 28px;
    }

    .navbar-toggle {
        display: inline-flex;
    }

    .header-cta {
        display: none;
    }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: #000B3A;
}

/* Full-cover background image (flipped horizontally so driver is clearly visible on right) */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top 0px;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scaleX(-1);
    animation: heroZoomFlipped 20s ease-in-out infinite alternate;
}

@keyframes heroZoomFlipped {
    0% {
        transform: scaleX(-1) scale(1);
    }

    100% {
        transform: scaleX(-1) scale(1.05);
    }
}

/* Dark navy blue gradient overlay matching Fiabilo */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 11, 58, 0.97) 0%,
            rgba(0, 11, 58, 0.93) 42%,
            rgba(0, 11, 58, 0.65) 70%,
            rgba(0, 11, 58, 0.25) 100%);
    z-index: 2;
}

/* Content layer */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 850px;
    padding: 75px 0 95px;
    margin: 0;
    align-items: center;
    text-align: center;
}

/* Eyebrow tag */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: heroEyebrowIn 0.8s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-eyebrow-tag {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.24em;
    color: #ff3b68;
    text-transform: uppercase;
}

@keyframes heroEyebrowIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main headline — exact reference mockup size & gradient */
.hero-title {
    font-family: var(--font-head);
    font-size: 78px;
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTitleIn 0.9s 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.gradient-text-pink-orange {
    background: linear-gradient(90deg, #ff2a6d 0%, #f47920 50%, #ffba00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Description */
.hero-desc {
    font-size: 17.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 34px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA buttons — Reference style */
.hero .hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.btn-gradient-pill {
    background: linear-gradient(90deg, #e60067 0%, #f47920 60%, #ff9e00 100%);
    color: #ffffff;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    border: none;
    box-shadow: 0 10px 30px rgba(230, 0, 103, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gradient-pill:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 38px rgba(230, 0, 103, 0.55);
    filter: brightness(1.08);
}

.btn-outline-pill {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-outline-pill:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.play-icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    padding-left: 2px;
}

/* Glassmorphism Feature Bar floating inside Hero */
.hero-glass-bar {
    margin-top: 50px;
    background: rgba(5, 14, 45, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 18px 28px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.glass-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.glass-icon-box {
    font-size: 22px;
    background: linear-gradient(135deg, #ff2a6d 0%, #f47920 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
}

.glass-text strong {
    display: block;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 750;
    line-height: 1.3;
}

.glass-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
}

/* Scroll Down Mouse Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@media (max-width: 900px) {
    .hero-glass-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .glass-divider {
        display: none;
    }
}

.btn-pill-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ---- Hero Responsive ---- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 72px;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 75vh;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-content {
        padding: 50px 0 50px 4%;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 40px;
        line-height: 1.05;
    }

    .hero-eyebrow {
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-pill-primary,
    .btn-pill-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* ============ INTERACTIVE CATALOG CAROUSEL (Fiabilo Style) ============ */
.feature-catalog-section {
    padding: 85px 0;
    background: #f8fafc;
}

.catalog-header {
    margin-bottom: 44px;
    text-align: center;
}

.catalog-eyebrow {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.eyebrow-line.center {
    margin: 14px auto 0;
    width: 60px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.catalog-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.catalog-carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.catalog-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 44px 32px 32px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 11, 58, 0.05);
    border: 1.5px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 11, 58, 0.12);
    border-color: rgba(244, 121, 32, 0.3);
}

.catalog-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(244, 121, 32, 0.1);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.catalog-icon-box.yellow {
    background: rgba(251, 191, 36, 0.16);
    color: #d97706;
}

.catalog-icon-box.blue {
    background: rgba(59, 130, 246, 0.14);
    color: #2563eb;
}

.catalog-icon-box.green {
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
}

.catalog-icon-box.purple {
    background: rgba(168, 85, 247, 0.14);
    color: #9333ea;
}

.catalog-card:hover .catalog-icon-box {
    transform: scale(1.12) rotate(4deg);
    box-shadow: 0 10px 25px rgba(0, 11, 58, 0.1);
}

.catalog-card h3 {
    font-size: 21px;
    font-weight: 750;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
}

.catalog-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 28px;
    flex: 1;
    font-weight: 400;
}

.catalog-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.catalog-dots .dot {
    width: 14px;
    height: 5px;
    border-radius: 3px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.catalog-dots .dot.active {
    width: 28px;
    background: var(--navy);
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--navy);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(244, 121, 32, 0.3);
}

@media (max-width: 1024px) {
    .catalog-carousel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .catalog-carousel-track {
        grid-template-columns: 1fr;
    }

    .carousel-arrow {
        display: none;
    }

    .catalog-card {
        padding: 32px 24px 24px;
    }
}

/* ============ STATS BAND ============ */
.stats-band {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1854 50%, var(--navy-bg) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    color: var(--white);
    padding: 80px 0 70px;
    margin-top: 60px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(244, 121, 32, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(244, 121, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-band .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 22px;
    transition: transform var(--transition-smooth);
    padding: 16px;
    border-radius: 16px;
}

.stat-item:hover {
    transform: translateY(-6px) scale(1.03);
    background: rgba(255, 255, 255, 0.05);
}

.stat-item i {
    transition: all var(--transition-smooth);
}

.stat-item:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(244, 121, 32, 0.5));
}

.stat-item .num {
    font-size: 48px;
    font-weight: 800;
    color: var(--orange);
    font-family: var(--font-head);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-item .label {
    font-size: 15px;
    color: #c7d0e8;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 900px) {
    .stats-band .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-band {
        padding: 60px 0 50px;
    }
}

/* ============ TWO-COL SECTION (services / partner CTA) ============ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-text {
    position: relative;
}

.split-img {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.split-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 11, 58, 0.08) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.split-img:hover::after {
    opacity: 1;
}

.split img {
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(0, 11, 58, 0.12);
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.split:hover img {
    transform: scale(1.04);
}

.split h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.split p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    transition: transform var(--transition-base);
}

.check-list li:hover {
    transform: translateX(8px);
}

.check-list li::before {
    content: "\2714";
    color: var(--orange);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split.reverse .split-img {
        order: -1;
    }

    .split h2 {
        font-size: 32px;
    }
}

/* ============ AGENCES ============ */
.map-list {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    border: 1px solid var(--gray-border);
}

.map-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 10px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-base);
    border-radius: 8px;
}

.map-list li:hover {
    background: var(--gray-bg);
    padding-left: 18px;
    border-color: transparent;
}

.map-list li:last-child {
    border-bottom: none;
}

.map-list li .pin {
    color: var(--orange);
    transition: transform var(--transition-base);
}

.map-list li:hover .pin {
    transform: scale(1.3) translateY(-2px);
}

/* ============ CARDS (services page, faq) ============ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 42px;
    box-shadow: var(--shadow);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-14px);
    box-shadow: 0 24px 60px rgba(0, 11, 58, 0.12);
    border-color: rgba(244, 121, 32, 0.15);
}

.card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--orange-light) 0%, rgba(244, 121, 32, 0.05) 100%);
    color: var(--orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 28px;
    transition: all var(--transition-smooth);
}

.card:hover .icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-soft) 100%);
    color: var(--white);
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 10px 30px rgba(244, 121, 32, 0.3);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        padding: 32px;
    }

    .card h3 {
        font-size: 20px;
    }
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--orange) 0%, #e86a10 50%, var(--orange-dark) 100%);
    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
    border-radius: 24px;
    color: var(--white);
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    box-shadow: 0 20px 50px rgba(244, 121, 32, 0.25);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(244, 121, 32, 0.3);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.cta-banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
    transition: all var(--transition-smooth);
    animation: pulse 3s ease-in-out infinite;
}

.cta-banner:hover .cta-banner-icon {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.15) rotate(10deg);
    animation: none;
}

.cta-banner-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    min-width: 260px;
}

/* ============ CONTACT INFO STRIP ============ */
.contact-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
    padding: 60px 0;
}

.contact-strip>div {
    transition: all var(--transition-smooth);
    padding: 28px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
}

.contact-strip>div:hover {
    transform: translateY(-8px);
    background: var(--gray-bg);
    border-color: var(--gray-border);
    box-shadow: var(--shadow);
}

.contact-strip .icon {
    font-size: 30px;
    color: var(--orange);
    margin-bottom: 16px;
    transition: all var(--transition-smooth);
}

.contact-strip>div:hover .icon {
    color: var(--navy);
    transform: scale(1.2) rotate(5deg);
}

.contact-strip strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-strip strong a {
    color: var(--navy);
    transition: color .2s ease;
}

.contact-strip strong a:hover {
    color: var(--orange);
}

.contact-strip span {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .contact-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .contact-strip {
        grid-template-columns: 1fr;
    }
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(180deg, #000B3A 0%, #000520 100%);
    color: #cfd4ec;
    padding: 80px 0 28px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-soft), var(--orange));
}

.footer .container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer h4 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
}

.footer li {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
}

.footer a {
    color: #c7d0e8;
    transition: all var(--transition-base);
    position: relative;
}

.footer a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-logo img {
    height: 110px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
    transition: transform var(--transition-smooth);
}

.footer-logo img:hover {
    transform: scale(1.08);
}

.footer p {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b8d4;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border: 1.5px solid #3a4270;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    color: #b0b8d4;
}

.social-icons a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(244, 121, 32, 0.3);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid #1a2254;
    margin-top: 50px;
    padding-top: 28px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    color: #8f97c0;
}

@media (max-width: 900px) {
    .footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer .container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ============ FORM (Devenir Partenaire / Contact) ============ */
.form-card {
    background: var(--white);
    box-shadow: 0 24px 60px rgba(0, 11, 58, 0.1);
    border-radius: 24px;
    padding: 56px;
    max-width: 820px;
    margin: 0 auto;
    border: 1px solid var(--gray-border);
    transition: box-shadow var(--transition-smooth);
}

.form-card:hover {
    box-shadow: 0 30px 70px rgba(0, 11, 58, 0.14);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--navy);
    letter-spacing: -0.01em;
    transition: color var(--transition-base);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: all var(--transition-smooth);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--orange-soft);
    box-shadow: 0 4px 12px rgba(244, 121, 32, 0.06);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(244, 121, 32, 0.1), 0 4px 16px rgba(244, 121, 32, 0.08);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
}

.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
    border-color: #dc2626;
    background-color: rgba(220, 38, 38, 0.02);
    animation: shake 0.4s ease;
}

.alert {
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideDown 0.4s ease;
}

.alert-success {
    background: #e5f8ef;
    color: #0d7a4b;
    border: 1px solid #b7ecd3;
}

.alert-error {
    background: #fdeaea;
    color: #b3261e;
    border: 1px solid #f6c6c4;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 30px;
    }
}

/* ============ FAQ ACCORDION ============ */
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--orange-soft);
    box-shadow: 0 8px 24px rgba(0, 11, 58, 0.06);
    transform: translateY(-2px);
}

.faq-question {
    padding: 26px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    font-size: 17px;
    user-select: none;
    transition: all var(--transition-base);
    line-height: 1.5;
}

.faq-question:hover {
    background: rgba(244, 121, 32, 0.03);
    padding-left: 32px;
}

.faq-question .arrow {
    transition: transform var(--transition-smooth);
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
}

.faq-item.open .faq-question {
    background: rgba(244, 121, 32, 0.05);
    border-bottom: 1px solid var(--orange-light);
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-base);
    padding: 0 28px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
}

.faq-item.open .faq-answer {
    padding: 0 28px 24px;
}

/* ============ PAGE HEADER (banner for inner pages) ============ */
.page-header {
    background: linear-gradient(135deg, #000B3A 0%, #0a1854 50%, var(--navy-bg) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(244, 121, 32, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--white);
    font-size: 50px;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Section heading helper */
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-muted);
    max-width: 620px;
    font-size: 17px;
    line-height: 1.9;
}

/* ============ ABOUT PAGE ============ */
.about-page-hero {
    background: linear-gradient(115deg, var(--navy) 0%, #0d1a51 62%, #14245f 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.about-page-hero::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    right: -120px;
    top: -180px;
    border: 1px solid rgba(244, 121, 32, .2);
    border-radius: 50%;
}

.about-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    align-items: center;
    gap: 70px;
    min-height: 560px;
    padding-top: 58px;
    padding-bottom: 58px;
}

.about-page-hero-content,
.about-page-hero-visual {
    position: relative;
    z-index: 1;
}

.about-page-hero .premium-kicker,
.about-page-cta .premium-kicker {
    color: var(--orange-soft);
}

.about-page-hero h1 {
    color: var(--white);
    font-size: clamp(42px, 5vw, 64px);
    margin-bottom: 22px;
}

.about-page-hero p {
    color: rgba(255, 255, 255, .75);
    max-width: 610px;
    font-size: 17px;
    line-height: 1.85;
}

.about-page-hero-lead {
    color: var(--white) !important;
    font-size: 22px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px;
}

.about-page-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 25px 0 32px;
}

.about-page-hero-points li {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 500;
}

.about-page-hero-points i {
    color: var(--orange);
    margin-right: 7px;
}

.about-page-hero-visual {
    padding: 12px 12px 12px 28px;
}

.about-page-hero-image-wrap {
    background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.about-page-hero-image-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
}

.about-page-hero-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    color: var(--navy);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-page-hero-badge>i {
    color: var(--orange);
    font-size: 24px;
}

.about-page-hero-badge span {
    display: grid;
    gap: 2px;
}

.about-page-hero-badge small {
    color: var(--text-muted);
}

.about-page-intro {
    background: var(--white);
}

.about-page-intro-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 58px;
}

.about-page-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-page-value {
    padding: 30px 26px;
    border: 1px solid #e4e8f2;
    border-top: 3px solid var(--orange);
    background: var(--white);
    border-radius: 4px 4px 14px 14px;
    box-shadow: 0 12px 30px rgba(0, 11, 58, .05);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-page-value:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(0, 11, 58, .1);
}

.about-page-value-icon {
    color: var(--orange);
    font-size: 24px;
    margin-bottom: 22px;
}

.about-page-value h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.about-page-value p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.about-page-cta {
    background: linear-gradient(110deg, var(--navy), #14245f);
    color: var(--white);
    padding: 78px 0;
    position: relative;
    overflow: hidden;
}

.about-page-cta::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -90px;
    border: 1px solid rgba(244, 121, 32, .3);
    border-radius: 50%;
}

.about-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.about-page-cta h2 {
    color: var(--white);
    font-size: 38px;
    margin-bottom: 10px;
}

.about-page-cta p {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
}

@media (max-width: 900px) {

    .about-page-hero-grid,
    .about-page-intro-heading {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-page-hero-grid {
        min-height: auto;
        padding-top: 80px;
    }

    .about-page-hero-visual {
        max-width: 620px;
        padding-left: 0;
    }

    .about-page-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .about-page-hero-grid {
        padding-top: 58px;
        padding-bottom: 70px;
    }

    .about-page-hero-lead {
        font-size: 19px !important;
    }

    .about-page-hero-visual {
        padding: 8px 8px 24px;
    }

    .about-page-hero-image-wrap img {
        height: 270px;
    }

    .about-page-hero-badge {
        left: -2px;
    }

    .about-page-values {
        grid-template-columns: 1fr;
    }

    .about-page-cta h2 {
        font-size: 30px;
    }

}

/* ============ COMMENT ÇA MARCHE (HOW IT WORKS) ============ */
.how-section {
    background: #000B3A;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.how-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.how-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 42, 109, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.how-brand {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.how-brand-logo {
    width: 140px;
    height: auto;
    opacity: 0.85;
    margin-bottom: 20px;
    display: inline-block;
    filter: brightness(1.2);
}

.how-section-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.how-section-line {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #ff2a6d 0%, #f47920 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.how-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.how-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease, box-shadow 0.4s ease;
}

.how-step:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 121, 32, 0.35);
    box-shadow: 0 20px 45px rgba(244, 121, 32, 0.08);
}

.how-num-wrap {
    margin-bottom: 16px;
}

.how-num {
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffba00 0%, #f47920 35%, #ff2a6d 70%, #ff2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    letter-spacing: -0.02em;
}

.how-title {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.how-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 220px;
    min-height: 42px;
}

.how-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
}

.how-main-icon {
    position: relative;
    font-size: 56px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-smooth), color var(--transition-base);
}

.how-step:hover .how-main-icon {
    transform: scale(1.12);
    color: var(--orange);
}

/* Badge Styling */
.how-badge {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 11px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Step 1 custom badge layouts */
.badge-cart {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #000B3A;
    background: transparent;
    box-shadow: none;
}

.how-step:hover .badge-cart {
    color: var(--orange);
}

.badge-check {
    bottom: -2px;
    right: -8px;
    background: linear-gradient(135deg, #2ae0ff 0%, #2bff9e 100%);
    color: #000B3A;
    font-size: 20px;
    box-shadow: none;
    width: auto;
    height: auto;
}

/* Step 2 animation & color */
.speed-truck {
    font-size: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-step:hover .speed-truck {
    background: linear-gradient(135deg, #ff914d 0%, #ff2a6d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Step 3 custom badges */
.badge-pin {
    top: -6px;
    right: -10px;
    background: linear-gradient(135deg, #ff2a6d 0%, #f47920 100%);
}

.badge-box {
    bottom: -6px;
    left: -10px;
    background: linear-gradient(135deg, #ffba00 0%, #f47920 100%);
}

/* Connectors CSS */
.how-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 26px;
    width: 40px;
    flex-shrink: 0;
}

.connector-arrow {
    animation: arrowFlow 2s infinite ease-in-out;
}

@keyframes arrowFlow {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.4;
        color: rgba(255, 255, 255, 0.15);
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
        color: var(--orange);
    }
}

/* ============ RESPONSIVE MEDIA QUERIES ============ */
@media (max-width: 900px) {
    .how-section {
        padding: 70px 0;
    }

    .how-section-title {
        font-size: 28px;
    }

    .how-num {
        font-size: 54px;
    }

    .how-step {
        padding: 30px 20px;
    }

    .how-desc {
        font-size: 13.5px;
    }
}

@media (max-width: 768px) {
    .how-grid {
        flex-direction: column;
        gap: 30px;
    }

    .how-connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .how-step {
        width: 100%;
        max-width: 360px;
    }
}

/* ============ PREMIUM CTA BANNER ============ */
.box-cta-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 11, 58, 0.15);
}

.box-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 11, 58, 0.82) 0%, rgba(2, 10, 48, 0.88) 100%);
    z-index: 1;
}

.box-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.box-cta-subtitle {
    font-size: 13.5px;
    font-weight: 750;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.box-cta-headline {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 850;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 32px;
    letter-spacing: -0.015em;
}

.box-cta-btn {
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 999px;
    background: #ff7900;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 121, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.box-cta-btn:hover {
    background: #e06a00;
    box-shadow: 0 8px 25px rgba(255, 121, 0, 0.5);
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .box-cta-banner {
        padding: 70px 24px;
    }

    .box-cta-headline {
        font-size: 28px;
        line-height: 1.35;
    }
}

/* ============ SHIPPER CONVERSION HOMEPAGE ============ */
.premium-kicker {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.4;
    margin-bottom: 18px;
}

.shipper-intro {
    padding: 112px 0 104px;
    background: #f7f8fb;
    position: relative;
    overflow: hidden;
}

.shipper-intro::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -150px;
    top: -170px;
    border: 1px solid rgba(244, 121, 32, .14);
    border-radius: 50%;
}

.shipper-intro-grid,
.operations-grid,
.network-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: center;
}

.shipper-intro-copy h2,
.section-heading-row h2,
.operations-copy h2,
.network-copy h2 {
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.08;
    margin-bottom: 25px;
}

.shipper-intro-copy h2 span,
.section-heading-row h2 span,
.operations-copy h2 span,
.network-copy h2 span {
    color: var(--orange);
}

.shipper-intro-copy>p,
.operations-copy>p,
.network-copy>p {
    max-width: 550px;
    color: #626b7f;
    font-size: 17px;
    line-height: 1.8;
}

.shipper-proof-row {
    display: flex;
    gap: 36px;
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid #dfe3ec;
}

.shipper-proof-row div {
    display: grid;
    gap: 4px;
}

.shipper-proof-row strong {
    color: var(--navy);
    font: 700 25px/1 var(--font-head);
}

.shipper-proof-row span {
    color: #7b8496;
    font-size: 12px;
}

.shipper-intro-panel {
    padding: 42px;
    color: #fff;
    background: var(--navy);
    border-radius: 4px;
    box-shadow: 22px 22px 0 var(--orange);
    position: relative;
    z-index: 1;
}

.panel-topline,
.dashboard-bar,
.performance-meta,
.panel-route,
.dashboard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-topline {
    color: #aeb8d0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #42db9d;
    box-shadow: 0 0 0 5px rgba(66, 219, 157, .12);
    margin-right: 9px;
}

.panel-live {
    color: #42db9d;
    margin-left: auto;
    font-size: 10px;
}

.performance-number {
    margin-top: 54px;
    color: var(--orange);
    font: 800 104px/.9 var(--font-head);
    letter-spacing: -.06em;
}

.performance-number span {
    font-size: 50px;
}

.shipper-intro-panel>p {
    margin: 15px 0 30px;
    color: #e4e8f2;
    font-size: 17px;
}

.performance-bar {
    height: 8px;
    background: #202b59;
    border-radius: 9px;
    overflow: hidden;
}

.performance-bar span {
    display: block;
    width: 98%;
    height: 100%;
    background: var(--orange);
    border-radius: inherit;
}

.performance-meta {
    margin-top: 12px;
    color: #8994b2;
    font-size: 12px;
}

.performance-meta strong {
    color: #fff;
}

.panel-route {
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid #293462;
    gap: 12px;
    color: #cbd2e5;
    font-size: 13px;
}

.panel-route i:first-child {
    color: var(--orange);
    font-size: 20px;
}

.panel-route i:last-child {
    color: #42db9d;
}

/* ============ ABOUT JAGUAR DELIVERY ============ */
.about-copy {
    max-width: 620px;
}

.about-copy p {
    margin-bottom: 14px;
    color: #626b7f;
    font-size: 16px;
    line-height: 1.7;
}

.about-copy p strong {
    color: var(--navy);
    font-weight: 600;
}

.about-statement {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 560px;
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 3px solid var(--orange);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
}

.about-statement i {
    padding-top: 3px;
    color: var(--orange);
    font-size: 18px;
}

.about-statement strong {
    font: 600 16px/1.5 var(--font-head);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    max-width: 620px;
    margin-top: 30px;
}

.about-pillar {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-pillar>i {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 13px;
}

.about-pillar span {
    display: grid;
    gap: 2px;
}

.about-pillar strong {
    color: var(--navy);
    font: 700 12px/1.4 var(--font-head);
    letter-spacing: .08em;
}

.about-pillar small {
    color: #737d90;
    font-size: 12px;
    line-height: 1.5;
}

.about-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
}

.about-actions .btn {
    padding: 14px 24px;
}

.about-link {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
}

.about-link i {
    margin-left: 7px;
    color: var(--orange);
    font-size: 12px;
}

.shipper-intro-panel {
    min-height: 600px;
    overflow: hidden;
}

.about-visual-lines,
.about-visual-map {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-visual-lines span {
    position: absolute;
    right: -15%;
    width: 125%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 121, 32, .5), transparent);
    transform: rotate(-27deg);
    animation: about-speed-line 5s ease-in-out infinite;
}

.about-visual-lines span:nth-child(1) {
    top: 27%;
}

.about-visual-lines span:nth-child(2) {
    top: 44%;
    animation-delay: 1.2s;
}

.about-visual-lines span:nth-child(3) {
    top: 61%;
    animation-delay: 2.4s;
}

@keyframes about-speed-line {

    0%,
    100% {
        opacity: .15;
        transform: translateX(0) rotate(-27deg);
    }

    50% {
        opacity: .75;
        transform: translateX(-30px) rotate(-27deg);
    }
}

.about-visual-map {
    opacity: .13;
    background: url('../images/carte-tunisie.png') center 55% / 70% auto no-repeat;
    filter: grayscale(1) brightness(2);
}

.about-visual-map i {
    position: absolute;
    color: var(--orange);
    font-size: 11px;
}

.about-visual-map i:nth-child(1) {
    top: 24%;
    left: 53%;
}

.about-visual-map i:nth-child(2) {
    top: 50%;
    left: 58%;
}

.about-visual-map i:nth-child(3) {
    top: 73%;
    left: 47%;
}

.about-visual-image {
    position: relative;
    z-index: 1;
    height: 330px;
    margin: 30px -42px 0;
    overflow: hidden;
    background: var(--orange);
}

.about-visual-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 11, 58, .65));
}

.about-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    mix-blend-mode: multiply;
    opacity: .9;
}

.about-visual-caption,
.about-stats {
    position: relative;
    z-index: 2;
}

.about-visual-caption {
    display: grid;
    gap: 8px;
    margin-top: -74px;
    padding: 0 4px 28px;
}

.about-visual-caption strong {
    max-width: 330px;
    color: var(--white);
    font: 600 21px/1.3 var(--font-head);
}

.about-visual-caption span {
    color: #cbd2e5;
    font-size: 12px;
}

.about-visual-caption i {
    margin-right: 7px;
    color: var(--orange);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid #293462;
}

.about-stats div {
    display: grid;
    gap: 4px;
}

.about-stats strong {
    color: var(--orange);
    font: 700 16px/1.2 var(--font-head);
}

.about-stats span {
    color: #aeb8d0;
    font-size: 11px;
}

/* ============ MODERN ABOUT SECTION ============ */

.about-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--navy);
    background-image:
        linear-gradient(135deg, rgba(16, 28, 92, 0.95), rgba(0, 11, 58, 0.98)),
        repeating-linear-gradient(135deg, transparent 0 44px, rgba(244, 121, 32, 0.06) 44px 45px);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(720px, 80vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 121, 32, 0.8), transparent);
    transform: translateX(-50%);
}

.about-section::after {
    content: '';
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(244, 121, 32, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 26px rgba(244, 121, 32, 0.04), 0 0 0 52px rgba(244, 121, 32, 0.025);
}

.about-bg-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: none;
}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 11, 58, 0.92) 0%,
            rgba(0, 11, 58, 0.85) 50%,
            rgba(0, 11, 58, 0.78) 100%);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-header {
    margin-bottom: 60px;
    text-align: center;
}

.about-kicker {
    display: inline-block;
    padding: 8px 16px;
    margin-bottom: 24px;
    background: rgba(244, 121, 32, 0.15);
    border: 1px solid var(--orange);
    border-radius: 20px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-title {
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(244, 121, 32, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.about-description p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.about-description p strong {
    color: var(--orange);
    font-weight: 700;
}

.about-strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin: 80px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.strength-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(244, 121, 32, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all var(--transition-base);
    transform: translateY(0);
}

.strength-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(244, 121, 32, 0.15);
}

.strength-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.strength-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    border-radius: 12px;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(244, 121, 32, 0.3);
}

.strength-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.strength-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.about-actions .btn {
    font-weight: 600;
    padding: 14px 32px;
    transition: all var(--transition-base);
}

.about-actions .btn-gradient-pill {
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    color: var(--white);
}

.about-actions .btn-gradient-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(244, 121, 32, 0.4);
}

.about-actions .btn-outline-pill {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: transparent;
}

.about-actions .btn-outline-pill:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-description {
        margin: 40px auto;
        padding: 30px 24px;
    }

    .about-description p {
        font-size: 15px;
    }

    .about-strengths {
        gap: 20px;
        margin: 60px 0;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .strength-card {
        padding: 30px 20px;
    }

    .strength-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .about-actions {
        gap: 16px;
        margin-top: 60px;
        flex-direction: column;
    }

    .about-actions .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 14px;
    }

    .about-description {
        padding: 24px 16px;
        margin: 30px auto;
    }

    .strength-card {
        padding: 24px 16px;
    }

    .strength-card h3 {
        font-size: 18px;
    }

    .strength-card p {
        font-size: 13px;
    }
}

.solutions-section {
    padding: 124px 0;
    background: #fff;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 58px;
}

.section-heading-row h2 {
    margin-bottom: 0;
}

.section-heading-row>p {
    max-width: 370px;
    color: #697388;
    line-height: 1.8;
    margin-bottom: 5px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card {
    min-height: 330px;
    padding: 36px 32px;
    border: 1px solid #e5e8ef;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(0, 11, 58, .09);
}

.solution-card-feature {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.solution-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 121, 32, .12);
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 38px;
}

.solution-index {
    position: absolute;
    top: 40px;
    right: 32px;
    color: #aab3c7;
    font: 600 12px var(--font-head);
}

.solution-card-feature .solution-index {
    color: #6c789d;
}

.solution-card h3 {
    max-width: 230px;
    font-size: 22px;
    margin-bottom: 16px;
}

.solution-card-feature h3 {
    color: #fff;
}

.solution-card p {
    color: #6d7688;
    line-height: 1.7;
    font-size: 14px;
}

.solution-card-feature p {
    color: #b8c1d7;
}

.solution-card a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 27px;
    position: relative;
    z-index: 2;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .25s ease;
}

.solution-card a:hover {
    opacity: .85;
    text-decoration: underline;
}

.solution-card a i {
    transition: transform .25s ease;
}

.solution-card a:hover i {
    transform: translateX(4px);
}

.operations-section {
    padding: 125px 0;
    background: #f7f8fb;
}

.operations-grid {
    grid-template-columns: .95fr 1.05fr;
}

.operations-visual {
    position: relative;
    padding: 18px 22px 36px 0;
}

.dashboard-window {
    padding: 27px;
    background: #fff;
    border: 1px solid #e4e7ee;
    box-shadow: 0 24px 50px rgba(0, 11, 58, .11);
}

.dashboard-bar {
    padding-bottom: 24px;
    border-bottom: 1px solid #eef0f5;
}

.dashboard-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
}

.dashboard-title i {
    color: var(--orange);
    margin-right: 8px;
}

.dashboard-period {
    color: #929aaa;
    font-size: 11px;
}

.dashboard-total {
    display: flex;
    gap: 14px;
    align-items: baseline;
    padding: 28px 0 12px;
}

.dashboard-total span {
    color: #8b94a6;
    font-size: 13px;
}

.dashboard-total strong {
    color: var(--navy);
    font: 700 34px var(--font-head);
}

.dashboard-total em {
    color: #24aa76;
    font-size: 11px;
    font-style: normal;
}

.chart {
    height: 180px;
    position: relative;
    margin-top: 10px;
}

.chart svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.chart-gridline {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px dashed #e7eaf0;
}

.line-one {
    top: 35%;
}

.line-two {
    top: 70%;
}

.chart-label {
    position: absolute;
    left: -4px;
    color: #a5adbb;
    font-size: 9px;
    z-index: 1;
}

.label-one {
    top: 25%;
}

.label-two {
    top: 60%;
}

.dashboard-foot {
    border-top: 1px solid #eef0f5;
    padding-top: 18px;
    color: #8a93a3;
    font-size: 11px;
}

.dashboard-foot i {
    color: var(--orange);
    font-size: 7px;
    margin-right: 5px;
}

.dashboard-foot strong {
    color: var(--navy);
}

.floating-delivery-card {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 14px 26px rgba(0, 11, 58, .22);
}

.floating-delivery-card>i {
    color: #42db9d;
    font-size: 23px;
}

.floating-delivery-card div {
    display: grid;
    gap: 3px;
}

.floating-delivery-card strong {
    font-size: 12px;
}

.floating-delivery-card span {
    color: #aeb8d0;
    font-size: 10px;
}

.operations-list {
    display: grid;
    gap: 22px;
    margin: 35px 0 38px;
}

.operations-list li {
    display: flex;
    gap: 14px;
    align-items: start;
}

.operations-list>li>i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 121, 32, .12);
    color: var(--orange);
    font-size: 10px;
    border-radius: 50%;
    margin-top: 2px;
}

.operations-list div {
    display: grid;
    gap: 4px;
}

.operations-list strong {
    color: var(--navy);
    font-size: 15px;
}

.operations-list span {
    color: #778195;
    font-size: 13px;
}

.network-section {
    padding: 120px 0;
    background: #fff;
}

.network-grid {
    grid-template-columns: 1fr 1fr;
}

.network-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 34px 0 26px;
}

.network-stat strong {
    color: var(--orange);
    font: 800 64px/1 var(--font-head);
}

.network-stat span {
    color: #687286;
    font-size: 13px;
    line-height: 1.6;
}

.text-link {
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.text-link i {
    color: var(--orange);
    margin-left: 9px;
    transition: transform .25s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

.network-map {
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    background: #f7f8fb;
    overflow: hidden;
}

.network-map::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid #e2e5ed;
    border-radius: 50%;
    top: 50px;
}

.network-map img {
    height: 90%;
    width: auto;
    position: relative;
    z-index: 1;
    object-fit: contain;
    filter: saturate(.7);
}

.map-pulse {
    position: absolute;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--orange);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(244, 121, 32, .45);
    animation: mapPulse 2s infinite;
}

.pulse-tunis {
    top: 28%;
    left: 48%;
}

.pulse-sousse {
    top: 47%;
    left: 57%;
    animation-delay: .4s;
}

.pulse-sfax {
    top: 63%;
    left: 61%;
    animation-delay: .8s;
}

.map-pulse i {
    font-size: 11px;
}

@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

.partner-cta-section {
    padding: 60px 0 120px;
    background: #fff;
}

.partner-cta {
    min-height: 410px;
    display: flex;
    align-items: center;
    padding: 70px 85px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.partner-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 35%, rgba(244, 121, 32, .16) 100%);
}

.partner-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.partner-cta h2 {
    color: #fff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.partner-cta p {
    color: #bbc4d9;
    max-width: 480px;
    line-height: 1.7;
}

.partner-cta-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
}

.cta-phone {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.cta-phone i {
    color: var(--orange);
    margin-right: 8px;
}

.cta-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
}

.orbit-one {
    width: 560px;
    height: 560px;
    right: -150px;
    top: -80px;
}

.orbit-two {
    width: 330px;
    height: 330px;
    right: 0;
    top: 35px;
}

.cta-badge {
    position: absolute;
    right: 90px;
    bottom: 67px;
    z-index: 2;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
}

.cta-badge i {
    color: var(--orange);
    font-size: 24px;
}

@media (max-width: 900px) {

    .shipper-intro-grid,
    .operations-grid,
    .network-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .shipper-intro-panel {
        max-width: 600px;
    }

    .section-heading-row {
        align-items: start;
        flex-direction: column;
        gap: 18px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 0;
    }

    .operations-grid .operations-copy {
        order: -1;
    }

    .network-map {
        max-width: 600px;
    }

    .partner-cta {
        padding: 60px 45px;
    }

    .cta-badge {
        right: 42px;
        bottom: 40px;
    }
}

@media (max-width: 600px) {

    .shipper-intro,
    .solutions-section,
    .operations-section,
    .network-section {
        padding: 78px 0;
    }

    .shipper-proof-row {
        gap: 16px;
        justify-content: space-between;
    }

    .shipper-proof-row strong {
        font-size: 20px;
    }

    .shipper-proof-row span {
        font-size: 10px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .shipper-intro-panel {
        min-height: 0;
        padding: 28px;
        box-shadow: 12px 12px 0 var(--orange);
    }

    .about-visual-image {
        height: 280px;
        margin-right: -28px;
        margin-left: -28px;
    }

    .about-stats {
        gap: 8px;
    }

    .about-stats strong {
        font-size: 13px;
    }

    .performance-number {
        font-size: 78px;
        margin-top: 42px;
    }

    .panel-route {
        margin-top: 36px;
    }

    .dashboard-window {
        padding: 18px;
    }

    .operations-visual {
        padding-right: 0;
    }

    .floating-delivery-card {
        right: 8px;
    }

    .network-map {
        height: 390px;
    }

    .partner-cta-section {
        padding-bottom: 78px;
    }

    .partner-cta {
        min-height: 500px;
        padding: 45px 26px;
        align-items: start;
    }

    .partner-cta-actions {
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .cta-badge {
        left: 26px;
        right: auto;
        bottom: 35px;
    }

    .orbit-one {
        right: -300px;
    }

    .orbit-two {
        right: -180px;
    }
}

/* Premium footer lead */
.premium-footer {
    margin-top: 0;
    padding-top: 0;
}

.premium-footer::before {
    height: 3px;
}

.footer-lead {
    grid-template-columns: 1fr auto !important;
    align-items: center;
    padding-top: 74px;
    padding-bottom: 66px;
    border-bottom: 1px solid #1b2555;
}

.footer-lead h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    margin-top: 10px;
}

.footer-lead h2 span {
    color: var(--orange);
}

.footer-kicker {
    color: #9ca8c9;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.footer-lead-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 24px;
    background: var(--orange);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s ease, background .25s ease;
}

.footer-lead-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-4px);
    padding-left: 24px !important;
}

.footer-main-grid {
    padding-top: 70px;
}

.footer-contact-col li {
    color: #c7d0e8;
}

.footer-contact-col li a {
    color: #c7d0e8;
    transition: color .2s ease;
}

.footer-contact-col li a:hover {
    color: var(--orange);
}

.footer-contact-col li i {
    color: var(--orange);
    width: 20px;
    margin-right: 5px;
}

@media (max-width: 900px) {
    .footer-lead {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer-lead-btn {
        justify-self: start;
    }
}

@media (max-width: 600px) {
    .footer-lead {
        padding-top: 54px;
        padding-bottom: 48px;
    }

    .footer-main-grid {
        padding-top: 55px;
    }
}

/* ============ COMPLETE SHIPPER JOURNEY ============ */
.intro-editorial {
    background: #fff;
}

.intro-editorial-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.intro-editorial-copy h2,
.editorial-heading h2,
.solutions-editorial-copy h2,
.trust-heading h2,
.tracking-copy h2,
.cod-copy h2,
.ecommerce-copy h2,
.partner-steps-heading h2,
.final-cta-content h2 {
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.08;
    margin-bottom: 24px;
}

.intro-editorial-copy h2 span,
.editorial-heading h2 span,
.solutions-editorial-copy h2 span,
.trust-heading h2 span,
.tracking-copy h2 span,
.cod-copy h2 span,
.ecommerce-copy h2 span,
.partner-steps-heading h2 span,
.final-cta-content h2 span {
    color: var(--orange);
}

.intro-editorial-copy>p,
.editorial-heading>p,
.solutions-editorial-copy>p,
.trust-heading>p,
.tracking-copy>p,
.cod-copy>p,
.ecommerce-copy>p,
.partner-steps-heading>p,
.final-cta-content>p {
    color: #657087;
    font-size: 16px;
    line-height: 1.85;
    max-width: 610px;
    margin-bottom: 16px;
}

.intro-editorial-copy .btn {
    margin-top: 20px;
}

.intro-editorial-visual {
    min-height: 550px;
    position: relative;
    padding: 0 0 30px 30px;
}

.intro-editorial-visual::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72%;
    height: 82%;
    border: 1px solid var(--orange);
    z-index: 0;
}

.intro-editorial-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    filter: saturate(.75);
}

.intro-image-tag {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    background: var(--navy);
    color: #fff;
}

.intro-image-tag strong {
    color: var(--orange);
    font: 700 32px/1 var(--font-head);
}

.intro-image-tag span {
    color: #c7d0e4;
    font-size: 11px;
    line-height: 1.45;
}

.intro-image-line {
    width: 70px;
    height: 1px;
    background: var(--orange);
    position: absolute;
    top: 20px;
    right: -34px;
    z-index: 2;
    transform: rotate(90deg);
}

.shipper-services-section {
    padding: 120px 0;
    background: #f7f8fb;
}

.editorial-heading {
    max-width: 820px;
    margin-bottom: 65px;
}

.shipper-services-layout {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 80px;
    align-items: start;
}

.shipper-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #dce1eb;
}

.shipper-services-list article {
    display: grid;
    grid-template-columns: 36px 36px 1fr;
    gap: 14px;
    padding: 34px 24px 34px 0;
    border-bottom: 1px solid #dce1eb;
}

.shipper-services-list article:nth-child(even) {
    padding-left: 25px;
    border-left: 1px solid #dce1eb;
}

.shipper-services-list article>span,
.solution-editorial-list article>span {
    color: var(--orange);
    font: 700 13px var(--font-head);
}

.shipper-services-list article>i {
    color: var(--navy);
    font-size: 20px;
}

.shipper-services-list h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.shipper-services-list p {
    color: #6b7587;
    font-size: 13px;
    line-height: 1.65;
}

.services-side-note {
    padding: 35px 30px;
    background: var(--navy);
    color: #fff;
    position: relative;
}

.side-note-number {
    color: var(--orange);
    font: 800 72px/.8 var(--font-head);
    display: block;
    opacity: .9;
}

.services-side-note strong {
    display: block;
    margin: 22px 0 12px;
    font-size: 21px;
}

.services-side-note p {
    color: #bec8dd;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.services-side-note .text-link {
    color: #fff;
}

.services-side-note .text-link i {
    color: var(--orange);
}

.solutions-editorial {
    padding: 130px 0;
    background: #fff;
}

.solutions-editorial-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 95px;
    align-items: center;
}

.solutions-truck-visual {
    height: 650px;
    position: relative;
}

.solutions-truck-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.8);
}

.truck-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 24px 30px;
    background: var(--orange);
    color: #fff;
    min-width: 245px;
}

.truck-caption span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    margin-bottom: 12px;
}

.truck-caption strong {
    font: 600 20px/1.25 var(--font-head);
}

.solution-editorial-list {
    margin-top: 42px;
    border-top: 1px solid #dfe3eb;
}

.solution-editorial-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 23px 0;
    border-bottom: 1px solid #dfe3eb;
}

.solution-editorial-list article>span {
    padding-top: 4px;
}

.solution-editorial-list h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.solution-editorial-list p {
    color: #6d7789;
    font-size: 13px;
    line-height: 1.6;
}

.trust-section {
    padding: 125px 0 105px;
    background: var(--navy);
    color: #fff;
}

.trust-heading {
    max-width: 720px;
}

.trust-heading h2 {
    color: #fff;
}

.trust-heading>p {
    color: #b9c3d8;
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 65px;
    border-top: 1px solid #273463;
}

.trust-pillars article {
    min-height: 230px;
    padding: 29px 26px 20px 0;
    border-bottom: 1px solid #273463;
    position: relative;
}

.trust-pillars article+article {
    padding-left: 25px;
    border-left: 1px solid #273463;
}

.trust-pillars i {
    color: var(--orange);
    font-size: 22px;
}

.trust-pillars span {
    position: absolute;
    right: 20px;
    top: 31px;
    color: #7783a8;
    font: 600 12px var(--font-head);
}

.trust-pillars h3 {
    color: #fff;
    font-size: 20px;
    margin: 30px 0 10px;
}

.trust-pillars p {
    color: #adb8d0;
    font-size: 13px;
    line-height: 1.7;
}

.trust-statement {
    border-left: 3px solid var(--orange);
    margin-top: 70px;
    padding: 18px 0 18px 28px;
    color: #fff;
    font: 600 clamp(25px, 3vw, 40px)/1.2 var(--font-head);
}

.trust-statement span {
    color: var(--orange);
}

.tracking-section {
    padding: 130px 0;
    background: #f7f8fb;
}

.tracking-grid,
.cod-grid,
.ecommerce-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.tracking-copy .text-link {
    display: inline-block;
    margin-top: 22px;
}

.tracking-dashboard {
    background: #fff;
    border: 1px solid #e0e5ee;
    box-shadow: 0 25px 55px rgba(0, 11, 58, .1);
    padding: 27px;
}

.tracking-dashboard-head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid #e9ecf2;
}

.tracking-dashboard-head strong {
    color: var(--navy);
    font-size: 13px;
}

.tracking-dashboard-head strong i {
    color: var(--orange);
    margin-right: 8px;
}

.tracking-dashboard-head span {
    color: #25a974;
    font-size: 11px;
    font-weight: 700;
}

.tracking-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    padding: 32px 0 35px;
    gap: 7px;
}

.tracking-progress-line {
    height: 2px;
    background: #dfe4ec;
    position: absolute;
    top: 43px;
    left: 7%;
    right: 7%;
}

.tracking-progress-line span {
    display: block;
    width: 68%;
    height: 100%;
    background: var(--orange);
}

.tracking-step {
    display: grid;
    gap: 8px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.tracking-step i {
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: #e7ebf1;
    color: #8f99a9;
    font-size: 10px;
    border: 4px solid #fff;
}

.tracking-step.done i,
.tracking-step.current i {
    background: var(--orange);
    color: #fff;
}

.tracking-step strong {
    color: var(--navy);
    font-size: 11px;
}

.tracking-step small {
    color: #929bab;
    font-size: 10px;
}

.tracking-step.current strong {
    color: var(--orange);
}

.mini-map {
    height: 210px;
    background: #e9eef2;
    position: relative;
    overflow: hidden;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .6;
    background-image: linear-gradient(25deg, transparent 48%, #cdd7dc 49%, transparent 50%), linear-gradient(115deg, transparent 48%, #d3dde1 49%, transparent 50%);
    background-size: 90px 70px;
}

.map-road {
    position: absolute;
    display: block;
    height: 5px;
    background: #fff;
    box-shadow: 0 1px 2px #c7d0d3;
    transform: rotate(-25deg);
}

.road-one {
    width: 80%;
    left: 12%;
    top: 52%;
}

.road-two {
    width: 65%;
    left: 26%;
    top: 28%;
    transform: rotate(40deg);
}

.map-location,
.map-vehicle,
.map-package {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 13px rgba(0, 0, 0, .15);
}

.map-location {
    width: 31px;
    height: 31px;
    left: 20%;
    top: 65%;
    color: #fff;
    background: var(--navy);
}

.map-vehicle {
    width: 37px;
    height: 37px;
    left: 51%;
    top: 46%;
    color: #fff;
    background: var(--orange);
}

.map-package {
    width: 29px;
    height: 29px;
    right: 17%;
    top: 21%;
    color: var(--navy);
    background: #fff;
}

.map-location i,
.map-vehicle i,
.map-package i {
    font-size: 12px;
}

.map-address {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: grid;
    gap: 3px;
    background: #fff;
    padding: 11px 14px;
}

.map-address strong {
    color: var(--navy);
    font-size: 11px;
}

.map-address span {
    color: #8791a0;
    font-size: 10px;
}

.cod-section {
    padding: 125px 0;
    background: #fff;
}

.cod-grid {
    grid-template-columns: 1fr 1fr;
}

.cod-visual {
    min-height: 530px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f8fb;
    position: relative;
    overflow: hidden;
}

.cod-orbit {
    position: absolute;
    border: 1px solid rgba(244, 121, 32, .2);
    border-radius: 50%;
}

.cod-orbit-one {
    width: 420px;
    height: 420px;
}

.cod-orbit-two {
    width: 280px;
    height: 280px;
}

.cod-flow {
    display: grid;
    justify-items: center;
    gap: 13px;
    position: relative;
    z-index: 1;
}

.cod-flow>div {
    width: 190px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e3e7ee;
    box-shadow: 0 8px 18px rgba(0, 11, 58, .06);
}

.cod-flow>div i {
    color: var(--orange);
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.cod-flow strong {
    color: var(--navy);
    font: 700 11px var(--font-head);
}

.cod-flow-focus {
    background: var(--navy) !important;
    border-color: var(--navy) !important;
}

.cod-flow-focus strong {
    color: #fff;
}

.cod-flow-focus i {
    color: var(--orange) !important;
}

.cod-arrow {
    color: var(--orange);
    font-size: 15px;
}

.cod-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-top: 1px solid #dfe4eb;
    padding-top: 22px;
    margin-top: 35px;
}

.cod-note i {
    color: #27ab77;
    margin-top: 3px;
}

.cod-note strong {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.6;
}

.ecommerce-section {
    padding: 120px 0;
    background: #f7f8fb;
}

.ecommerce-grid {
    grid-template-columns: 1fr .95fr;
}

.ecommerce-copy .btn {
    margin-top: 22px;
}

.ecommerce-benefits {
    border-top: 1px solid #dce2eb;
}

.ecommerce-benefit {
    display: grid;
    grid-template-columns: 35px 42px 1fr;
    align-items: start;
    gap: 16px;
    padding: 27px 0;
    border-bottom: 1px solid #dce2eb;
}

.ecommerce-benefit>span {
    color: var(--orange);
    font: 700 12px var(--font-head);
}

.ecommerce-benefit>i {
    color: var(--navy);
    font-size: 22px;
}

.ecommerce-benefit h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.ecommerce-benefit p {
    color: #707b8d;
    font-size: 13px;
    line-height: 1.6;
}

.engagement-section {
    min-height: 650px;
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

.engagement-image {
    position: absolute;
    inset: 0 0 0 42%;
    background: linear-gradient(90deg, var(--navy) 0%, rgba(0, 11, 58, .72) 22%, rgba(0, 11, 58, .2) 100%), url('../images/hero-livreur.png') center/cover;
    opacity: .72;
}

.engagement-content {
    position: relative;
    z-index: 1;
    padding-top: 145px;
    padding-bottom: 125px;
}

.engagement-content h2 {
    color: #fff;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.04;
    max-width: 650px;
    margin-bottom: 28px;
}

.engagement-content h2 span {
    color: var(--orange);
}

.engagement-content>p {
    color: #c4cce0;
    max-width: 550px;
    font-size: 16px;
    line-height: 1.8;
}

.engagement-content blockquote {
    max-width: 590px;
    margin-top: 43px;
    padding-left: 25px;
    border-left: 3px solid var(--orange);
    color: #fff;
    font: 600 clamp(22px, 2.6vw, 34px)/1.25 var(--font-head);
}

.partner-steps-section {
    padding: 125px 0;
    background: #fff;
}

.partner-steps-heading {
    max-width: 650px;
}

.partner-steps {
    display: grid;
    grid-template-columns: 1fr 80px 1fr 80px 1fr;
    align-items: center;
    margin: 62px 0 48px;
}

.partner-steps>div:not(.step-connector) {
    display: grid;
    gap: 12px;
    text-align: center;
}

.partner-steps span {
    color: var(--orange);
    font: 700 13px var(--font-head);
}

.partner-steps i {
    color: var(--navy);
    font-size: 28px;
}

.partner-steps strong {
    color: var(--navy);
    font-size: 16px;
}

.step-connector {
    height: 1px;
    background: #dce1e9;
    position: relative;
}

.step-connector::after {
    content: '\f061';
    position: absolute;
    right: -1px;
    top: -7px;
    color: var(--orange);
    font: 10px 'Font Awesome 6 Free';
    font-weight: 900;
}

.partner-step-actions {
    display: flex;
    gap: 28px;
    align-items: center;
}

.final-cta-section {
    padding: 0 0 110px;
    background: #fff;
}

.final-cta-section>.container {
    position: relative;
    z-index: 1;
}

.final-cta-content {
    padding: 92px 100px;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.final-cta-content::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(244, 121, 32, .25);
    border-radius: 50%;
    right: -110px;
    top: -130px;
}

.final-cta-content h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.final-cta-content>p {
    color: #bac4d9;
    position: relative;
    z-index: 1;
}

.final-cta-actions {
    display: flex;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.final-contact-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.final-contact-link i {
    color: var(--orange);
    margin-left: 8px;
}

.final-cta-content small {
    display: block;
    color: #8f9ab8;
    margin-top: 46px;
    font-size: 11px;
    letter-spacing: .16em;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {

    .intro-editorial-grid,
    .shipper-services-layout,
    .solutions-editorial-grid,
    .tracking-grid,
    .cod-grid,
    .ecommerce-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .intro-editorial-visual {
        max-width: 650px;
    }

    .shipper-services-layout {
        gap: 35px;
    }

    .solutions-truck-visual {
        height: 500px;
        max-width: 650px;
    }

    .trust-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-pillars article:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

    .tracking-copy,
    .cod-copy,
    .ecommerce-copy {
        max-width: 650px;
    }

    .cod-visual {
        max-width: 600px;
    }

    .engagement-image {
        left: 18%;
        opacity: .45;
    }

    .partner-steps {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 420px;
    }

    .step-connector {
        width: 1px;
        height: 30px;
        margin: auto;
    }

    .step-connector::after {
        content: '\f063';
        top: 20px;
        right: -4px;
    }

    .final-cta-content {
        padding: 70px 55px;
    }
}

@media (max-width: 600px) {

    .intro-editorial,
    .shipper-services-section,
    .solutions-editorial,
    .tracking-section,
    .cod-section,
    .ecommerce-section,
    .partner-steps-section {
        padding: 78px 0;
    }

    .intro-editorial-grid {
        gap: 48px;
    }

    .intro-editorial-visual {
        min-height: 390px;
        padding-left: 15px;
    }

    .intro-editorial-visual img {
        height: 370px;
    }

    .intro-image-tag {
        padding: 13px 15px;
    }

    .intro-image-tag strong {
        font-size: 25px;
    }

    .shipper-services-list {
        grid-template-columns: 1fr;
    }

    .shipper-services-list article,
    .shipper-services-list article:nth-child(even) {
        padding: 24px 0;
        border-left: 0;
    }

    .solutions-truck-visual {
        height: 390px;
    }

    .truck-caption {
        padding: 17px 20px;
    }

    .truck-caption strong {
        font-size: 17px;
    }

    .trust-section {
        padding: 80px 0;
    }

    .trust-pillars {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .trust-pillars article,
    .trust-pillars article+article,
    .trust-pillars article:nth-child(3) {
        min-height: 0;
        padding: 25px 0;
        border-left: 0;
    }

    .trust-statement {
        margin-top: 45px;
    }

    .tracking-dashboard {
        padding: 17px;
    }

    .tracking-progress {
        gap: 2px;
    }

    .tracking-step strong {
        font-size: 9px;
    }

    .tracking-step small {
        font-size: 8px;
    }

    .mini-map {
        height: 175px;
    }

    .cod-visual {
        min-height: 480px;
    }

    .cod-flow>div {
        width: 175px;
    }

    .ecommerce-benefit {
        grid-template-columns: 28px 35px 1fr;
        gap: 10px;
    }

    .engagement-section {
        min-height: 700px;
    }

    .engagement-image {
        left: 0;
        opacity: .35;
    }

    .engagement-content {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .partner-step-actions,
    .final-cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-cta-section {
        padding-bottom: 78px;
    }

    .final-cta-content {
        padding: 55px 26px;
    }

    .final-cta-content small {
        margin-top: 35px;
    }
}

/* ============ NATIONAL NETWORK SECTION ============ */
.network-section {
    padding: 128px 0 136px;
    background: #f7f8fb;
    overflow: hidden;
}

.network-heading {
    max-width: 790px;
    margin-bottom: 54px;
}

.network-heading h2 {
    font-size: clamp(38px, 4.4vw, 62px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.network-heading h2 span,
.network-copy h3 span {
    color: var(--orange);
}

.network-heading p,
.network-copy>p {
    color: #657087;
    font-size: 16px;
    line-height: 1.85;
    max-width: 720px;
}

.network-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 84px;
    align-items: center;
}

.network-map {
    min-width: 0;
    padding: 24px 26px 18px;
    background: var(--navy);
    box-shadow: 18px 18px 0 var(--orange);
    color: #fff;
}

.network-map-topline,
.network-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.network-map-topline {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #aeb8d0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.network-map-topline i,
.network-map-topline strong,
.network-map-footer i {
    color: var(--orange);
}

.network-map-topline strong {
    font-size: 10px;
}

.network-map-canvas {
    position: relative;
    aspect-ratio: 1 / 1.12;
    margin: 12px auto 8px;
    max-width: 620px;
}

.network-map-canvas img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(.82) contrast(1.04);
}

.network-routes {
    position: absolute;
    inset: 8% 13% 8% 13%;
    width: 74%;
    height: 84%;
    overflow: visible;
    pointer-events: none;
}

.network-routes path {
    fill: none;
    stroke: rgba(244, 121, 32, .7);
    stroke-width: .35;
    stroke-dasharray: 1.5 1.5;
    vector-effect: non-scaling-stroke;
    animation: networkRouteFlow 8s linear infinite;
}

@keyframes networkRouteFlow {
    to {
        stroke-dashoffset: -30;
    }
}

.network-map .map-pulse {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(244, 121, 32, .15), 0 5px 16px rgba(244, 121, 32, .55);
    transform: translate(-50%, -50%);
    animation: networkPinPulse 2.8s ease-in-out infinite;
}

.network-map .map-pulse i {
    font-size: 8px;
}

.network-map .map-pulse b {
    position: absolute;
    left: 23px;
    top: -4px;
    white-space: nowrap;
    color: #fff;
    font: 600 10px/1.2 var(--font-body);
    text-shadow: 0 1px 8px rgba(0, 0, 0, .7);
}

@keyframes networkPinPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(244, 121, 32, .13), 0 5px 16px rgba(244, 121, 32, .45);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(244, 121, 32, .03), 0 5px 20px rgba(244, 121, 32, .7);
    }
}

.pulse-tunis {
    top: 19%;
    left: 69%;
}

.pulse-sousse {
    top: 36%;
    left: 77%;
    animation-delay: .2s !important;
}

.pulse-ksar-hellal {
    top: 43%;
    left: 30%;
    animation-delay: .4s !important;
}

.pulse-sfax {
    top: 56%;
    left: 75%;
    animation-delay: .6s !important;
}

.pulse-medenine {
    top: 73%;
    left: 74%;
    animation-delay: .8s !important;
}

.pulse-gafsa {
    top: 63%;
    left: 31%;
    animation-delay: 1s !important;
}

.pulse-nabeul {
    top: 29%;
    left: 77%;
    animation-delay: 1.2s !important;
}

.pulse-jendouba {
    top: 12%;
    left: 28%;
    animation-delay: 1.4s !important;
}

.network-map-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #aeb8d0;
    font-size: 11px;
}

.network-map-footer i {
    font-size: 7px;
    margin-right: 5px;
}

.network-copy h3 {
    color: var(--navy);
    font: 700 clamp(36px, 4vw, 56px)/1.08 var(--font-head);
    letter-spacing: -.02em;
    margin-bottom: 22px;
}

.network-benefits {
    display: grid;
    gap: 20px;
    margin: 32px 0 36px;
}

.network-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.network-benefits li>i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(244, 121, 32, .12);
    color: var(--orange);
    font-size: 10px;
}

.network-benefits span {
    display: grid;
    gap: 4px;
}

.network-benefits strong {
    color: var(--navy);
    font-size: 15px;
}

.network-benefits small {
    color: #778195;
    font-size: 13px;
}

.network-copy .btn {
    margin-top: 2px;
}

.network-statement {
    margin-top: 42px;
    padding: 18px 0 18px 22px;
    border-left: 3px solid var(--orange);
    color: var(--navy);
    font: 600 21px/1.35 var(--font-head);
}

@media (max-width: 900px) {
    .network-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .network-map {
        max-width: 680px;
    }

    .network-copy {
        max-width: 650px;
    }
}

@media (max-width: 600px) {
    .network-section {
        padding: 82px 0 92px;
    }

    .network-heading {
        margin-bottom: 34px;
    }

    .network-map {
        padding: 18px 16px 15px;
        box-shadow: 10px 10px 0 var(--orange);
    }

    .network-map-topline {
        font-size: 8px;
    }

    .network-map-footer {
        font-size: 9px;
    }

    .network-map .map-pulse b {
        font-size: 8px;
        left: 18px;
    }

    .network-statement {
        margin-top: 34px;
        font-size: 18px;
    }
}

/* ============================================================
   JAGUAR DELIVERY — OVERRIDE / FIX LAYER
   Fixes conflicting old rules and missing styles
   ============================================================ */

/* ---- Fix: old .network-map rules conflict with new dark card design ---- */
/* Old rule (line ~3046) set height:500px, overflow:hidden, bg:#f7f8fb, display:flex
   These must be reset so the new navy card design (line ~4597) works correctly */
.network-map {
    height: auto !important;
    overflow: visible !important;
    background: var(--navy) !important;
    display: block !important;
    flex-direction: unset !important;
    justify-content: unset !important;
}

/* Old rule (line ~3055) created a decorative circle pseudo-element on .network-map
   This is unwanted inside the new dark card — suppress it */
.network-map::before {
    display: none !important;
}

/* Old rule (line ~3065) styled .network-map img directly;
   The new design wraps images in .network-map-canvas so direct img rule is wrong */
.network-map>img {
    height: auto !important;
    width: auto !important;
    position: static !important;
    filter: none !important;
}

/* ---- Fix: .footer .container grid applies to ALL children containers ----
   The old rule (line 1786) makes every .container inside .footer a 4-col grid.
   This breaks footer-lead (needs 2-col), footer-bottom (needs flex), etc.
   We reset them explicitly. */
.footer-lead.container,
.footer-lead {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    gap: 30px !important;
}

.footer-main-grid.container,
.footer-main-grid {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr !important;
    gap: 50px !important;
}

.footer-bottom.container,
.footer-bottom {
    display: flex !important;
    grid-template-columns: unset !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    padding-top: 28px;
}

@media (max-width: 900px) {

    .footer-lead.container,
    .footer-lead {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .footer-main-grid.container,
    .footer-main-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 36px !important;
    }
}

@media (max-width: 600px) {

    .footer-main-grid.container,
    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}

/* ---- Fix: footer margin-top conflicts with premium-footer design ---- */
.footer.premium-footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ---- Fix: .btn-nav-track missing styles ---- */
.btn-nav-track {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: var(--orange);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-nav-track:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(244, 121, 32, 0.35);
    color: #fff;
    padding-left: 22px;
}

/* ---- Fix: .solution-card / .service-card already has .reveal class — stagger should not double-animate ---- */
.solution-card.reveal,
.solution-card.reveal-left,
.solution-card.reveal-right,
.service-card.reveal,
.service-card.reveal-left,
.service-card.reveal-right {
    opacity: 0;
}

.solution-card.reveal.active,
.solution-card.stagger-item.active,
.service-card.reveal.active,
.service-card.stagger-item.active {
    opacity: 1;
    transform: none;
}

/* ---- Fix: map-pulse label (.map-pulse b) overflow inside canvas ---- */
.network-map-canvas {
    overflow: visible !important;
}

/* ---- Fix: network-section background color conflict between old rule (#fff at line 3003)
   and new rule (#f7f8fb at line 4560). New rule wins by cascade but make explicit. ---- */
.network-section {
    background: #f7f8fb !important;
    padding: 128px 0 136px !important;
}

/* ---- Fix: shipper-intro section on small screens ---- */
@media (max-width: 900px) {
    .shipper-intro-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .shipper-intro-panel {
        max-width: 100% !important;
    }
}

/* ---- Fix: how-section container needs z-index context ---- */
.how-section .container {
    position: relative;
    z-index: 2;
}

/* ============ PAGE NOS SERVICES ============ */
.page-header--services {
    padding: 110px 0 100px;
}

.page-header--services .premium-kicker {
    position: relative;
    z-index: 1;
}

.page-header--services h1 {
    font-size: clamp(38px, 5vw, 54px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-header--services p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.page-header--services .premium-kicker {
    animation: servicesKickerIn .7s ease both;
}

.page-header--services h1 {
    animation: servicesTitleIn .85s .12s cubic-bezier(.22, 1, .36, 1) both;
}

.page-header--services p {
    animation: servicesTitleIn .85s .24s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes servicesKickerIn {
    from {
        opacity: 0;
        transform: translateY(12px);
        letter-spacing: .28em;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: .16em;
    }
}

@keyframes servicesTitleIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-page-section {
    padding: 110px 0 80px;
    background: #fff;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 280px;
    padding: 36px 32px;
    border: 1px solid #e5e8ef;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(0, 11, 58, .09);
}

.service-card-feature {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
    grid-column: span 2;
    min-height: 300px;
    overflow: hidden;
}

.service-card-feature::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -95px;
    border: 1px solid rgba(244, 121, 32, .28);
    border-radius: 50%;
    pointer-events: none;
}

.service-card-feature::before {
    content: '';
    position: absolute;
    width: 7px;
    top: 0;
    bottom: 0;
    left: 0;
    background: var(--orange);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 121, 32, .12);
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 32px;
    transition: transform .35s ease, background .35s ease;
}

.service-card:hover .service-card-icon {
    transform: translateY(-3px) rotate(-4deg);
    background: rgba(244, 121, 32, .2);
}

.service-card-feature .service-card-icon {
    background: rgba(244, 121, 32, .18);
}

.service-card-index {
    position: absolute;
    top: 36px;
    right: 32px;
    color: #aab3c7;
    font: 600 12px var(--font-head);
    letter-spacing: .06em;
}

.service-card-feature .service-card-index {
    color: #6c789d;
}

.service-card h3 {
    max-width: 260px;
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.35;
}

.service-card-feature h3 {
    color: #fff;
}

.service-card p {
    color: #6d7688;
    line-height: 1.75;
    font-size: 14px;
    margin-top: auto;
}

.service-card-feature p {
    color: #b8c1d7;
}

.services-highlights {
    padding: 0 0 100px;
    background: #fff;
}

.services-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 28px 32px;
    background: #f7f8fb;
    border: 1px solid #e8ebf2;
}

.services-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.services-highlight-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e8ef;
    color: var(--orange);
    font-size: 17px;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.services-highlight:hover .services-highlight-icon {
    color: #fff;
    background: var(--orange);
    transform: translateY(-4px) rotate(5deg);
}

.services-highlight strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.services-highlight span {
    display: block;
    font-size: 12px;
    color: #697388;
    line-height: 1.4;
}

.how-step:nth-child(odd) .how-main-icon {
    animation: servicesIconFloat 4s ease-in-out infinite;
}

.how-step:nth-child(even) .how-main-icon {
    animation: servicesIconFloat 4s .7s ease-in-out infinite;
}

@keyframes servicesIconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 1100px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-feature {
        grid-column: span 2;
    }

    .services-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page-section {
        padding: 80px 0 60px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .service-card-feature {
        grid-column: auto;
    }

    .services-highlights {
        padding-bottom: 70px;
    }

    .services-highlights-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .page-header--services {
        padding: 90px 0 80px;
    }
}

/* ---- Fix: partner-cta section ensure background is always white ---- */
.partner-cta-section {
    background: #fff;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    padding: 110px 0;
    background: #f7f8fc;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    left: -180px;
    top: 80px;
    border: 1px solid rgba(244, 121, 32, .18);
    border-radius: 50%;
}

.testimonials-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.testimonials-heading h2 {
    max-width: 650px;
    font-size: clamp(32px, 4vw, 48px);
}

.testimonials-heading>p {
    max-width: 390px;
    color: var(--text-muted);
    line-height: 1.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 11, 58, .06);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 24px 48px rgba(0, 11, 58, .12);
}

.testimonial-card-featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    transform: translateY(-14px);
}

.testimonial-card-featured:hover {
    transform: translateY(-22px);
}

.testimonial-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.testimonial-stars {
    color: var(--orange);
    font-size: 17px;
    letter-spacing: 2px;
}

.testimonial-topline>i {
    color: rgba(244, 121, 32, .25);
    font-size: 25px;
}

.testimonial-card blockquote {
    margin: 0;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 28px;
}

.testimonial-avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
}

.testimonial-author span:last-child {
    display: grid;
    gap: 3px;
}

.testimonial-author strong {
    font-size: 14px;
}

.testimonial-author small {
    color: var(--text-muted);
    font-size: 12px;
}

.testimonial-card-featured .testimonial-author small {
    color: rgba(255, 255, 255, .65);
}

@media (max-width: 900px) {
    .testimonials-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card-featured {
        transform: none;
    }

    .testimonial-card-featured:hover {
        transform: translateY(-9px);
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-height: 260px;
    }
}

/* ---- Fix: premium-kicker alignment ---- */
.premium-kicker {
    display: block;
    margin-bottom: 14px;
}

/* ---- Fix: reveal classes — ensure .active always shows element ---- */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================================
   CONTACT PAGE — REDESIGN (v2)
   Hero intro + Side-by-side form & info card + Map + CTA
   ============================================================ */

/* ----- Hero Section ----- */
.contact-hero-section {
    padding: 70px 0 40px;
    background: var(--white);
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-hero-text {
    flex: 1;
}

.contact-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-hero-line {
    display: inline-block;
    width: 36px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.contact-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.contact-hero-title span {
    color: var(--orange);
}

.contact-hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
}

.contact-hero-img {
    flex-shrink: 0;
    font-size: 120px;
    color: var(--navy);
    opacity: 0.08;
    pointer-events: none;
    user-select: none;
}

/* ----- Main Section (Form + Card) ----- */
.contact-main-section {
    padding: 0 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* ----- Form Wrap ----- */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-submit-btn {
    margin-top: 8px;
    font-size: 17px;
    padding: 18px 32px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ----- Info Card ----- */
.contact-info-card {
    background: var(--navy);
    border-radius: 24px;
    padding: 40px 36px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: sticky;
    top: 120px;
}

.contact-info-block {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-block:first-child {
    padding-top: 0;
}

.contact-info-block h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-block h3 i {
    font-size: 16px;
}

.contact-info-block p {
    font-size: 14px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-block p a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.contact-info-block p a i {
    color: var(--orange);
    font-size: 13px;
    width: 16px;
}

.contact-info-block p a:hover {
    color: var(--orange);
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2.2;
}

/* ----- Social Icons (card) ----- */
.contact-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.contact-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}

.contact-social-icons a:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* ----- Map ----- */
.contact-map-section {
    padding: 0 0 80px;
}

.contact-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-border);
}

.contact-map-wrap iframe {
    display: block;
}

/* ----- CTA Banner ----- */
.contact-cta-banner {
    background: var(--navy);
    padding: 40px 0;
    margin-bottom: 0;
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-cta-text {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
}

.contact-cta-text span {
    color: var(--orange);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .contact-info-block {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
    }

    .contact-info-block:last-child,
    .contact-info-block:nth-child(even) {
        border-right: none;
    }
}

@media (max-width: 700px) {
    .contact-hero-img {
        display: none;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        grid-template-columns: 1fr;
    }

    .contact-info-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 18px 0;
    }

    .contact-info-block:last-child {
        border-bottom: none;
    }

    .contact-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   JAGUAR DELIVERY — TRACKING PAGE (suivi.php)
   Full design system: search, status, progress, info, timeline, map
   ============================================================ */

/* ---- Search Section ---- */
.trk-search-section {
    padding: 48px 0 40px;
    background: var(--white);
}

.trk-search-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 48px 52px;
    box-shadow: var(--shadow);
    max-width: 860px;
    margin: 0 auto;
}

.trk-search-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.trk-search-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--orange-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange);
}

.trk-search-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.trk-search-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.trk-form {
    width: 100%;
}

.trk-input-wrap {
    display: flex;
    align-items: stretch;
    gap: 12px;
    position: relative;
}

.trk-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
}

.trk-input {
    flex: 1;
    height: 60px;
    padding: 0 20px 0 52px;
    border: 2px solid var(--gray-border);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    letter-spacing: 0.02em;
}

.trk-input::placeholder {
    color: #b0b8c9;
    font-weight: 400;
    letter-spacing: 0;
}

.trk-input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(244, 121, 32, 0.1);
}

.trk-input--error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08) !important;
}

.trk-submit-btn {
    height: 60px;
    padding: 0 32px;
    border-radius: 14px;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.trk-btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trk-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: trk-spin 0.7s linear infinite;
}

@keyframes trk-spin {
    to {
        transform: rotate(360deg);
    }
}

.trk-input-error {
    margin-top: 10px;
    font-size: 14px;
    color: #dc2626;
    font-weight: 500;
    display: none;
    padding-left: 4px;
}

/* ---- Idle State ---- */
.trk-idle-section {
    padding: 60px 0 80px;
}

.trk-idle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.trk-idle-icon {
    font-size: 64px;
    color: var(--navy);
    opacity: 0.08;
    line-height: 1;
}

.trk-idle-text {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Results Section (shared wrapper) ---- */
.trk-results-section {
    padding: 0 0 80px;
}

/* ---- State Cards (error / not-found) ---- */
.trk-state-card {
    max-width: 560px;
    margin: 60px auto 0;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    box-shadow: var(--shadow);
}

.trk-state-card--error {
    border-color: #fecaca;
}

.trk-state-card--notfound {
    border-color: var(--gray-border);
}

.trk-state-icon {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1;
}

.trk-state-card--error .trk-state-icon {
    color: #dc2626;
}

.trk-state-card--notfound .trk-state-icon {
    color: var(--orange);
}

.trk-state-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.trk-state-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ---- Status Card ---- */
.trk-status-card {
    background: var(--navy);
    border-radius: 24px;
    padding: 40px 48px;
    margin-bottom: 32px;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.trk-status-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.trk-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.trk-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    --status-color: var(--orange);
    border-color: var(--status-color);
    box-shadow: 0 0 0 1px var(--status-color) inset;
}

.trk-status-badge i {
    font-size: 18px;
    color: var(--status-color, var(--orange));
}

.trk-tracking-num {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.trk-tracking-num-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.trk-tracking-num strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.06em;
    font-family: monospace;
}

/* ---- Progress Steps ---- */
.trk-progress-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.trk-progress-steps::-webkit-scrollbar {
    display: none;
}

.trk-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    min-width: 80px;
    gap: 10px;
}

.trk-step-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.trk-step--done .trk-step-dot {
    background: rgba(244, 121, 32, 0.2);
    border-color: var(--orange);
    color: var(--orange);
}

.trk-step--active .trk-step-dot {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(244, 121, 32, 0.25);
    animation: trk-pulse 2s infinite;
}

@keyframes trk-pulse {
    0% {
        box-shadow: 0 0 0 6px rgba(244, 121, 32, 0.25);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(244, 121, 32, 0.1);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(244, 121, 32, 0.25);
    }
}

.trk-step-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.3;
    max-width: 80px;
}

.trk-step--done .trk-step-label {
    color: rgba(255, 255, 255, 0.75);
}

.trk-step--active .trk-step-label {
    color: var(--white);
}

.trk-step-line {
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    right: calc(-50% + 22px);
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 0;
}

.trk-step--done+.trk-step .trk-step-line,
.trk-step--done .trk-step-line {
    background: rgba(244, 121, 32, 0.5);
}

/* ---- Body Grid ---- */
.trk-body-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.trk-left-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ---- Panel (shared) ---- */
.trk-panel {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.trk-panel-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-border);
}

.trk-panel-title i {
    color: var(--orange);
    font-size: 16px;
}

/* ---- Info List ---- */
.trk-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trk-info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(226, 229, 240, 0.6);
    align-items: start;
}

.trk-info-row:last-child {
    border-bottom: none;
}

.trk-info-key {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trk-info-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    word-break: break-word;
}

.trk-no-info {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
}

/* ---- Timeline ---- */
.trk-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.trk-tl-item {
    display: flex;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
}

.trk-tl-item:last-child {
    padding-bottom: 0;
}

.trk-tl-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: var(--gray-border);
}

.trk-tl-item:last-child::before {
    display: none;
}

.trk-tl-dot {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-border);
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

.trk-tl-item--current .trk-tl-dot {
    color: var(--orange);
    font-size: 16px;
}

.trk-tl-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.trk-tl-status {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.trk-tl-item--current .trk-tl-status {
    color: var(--navy);
}

.trk-tl-date {
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
}

.trk-tl-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trk-tl-meta i {
    font-size: 11px;
    color: var(--orange);
    width: 12px;
}

.trk-tl-comment {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    margin-top: 4px;
    padding: 8px 12px;
    background: var(--gray-bg);
    border-radius: 8px;
    border-left: 3px solid var(--orange);
}

.trk-timeline-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    padding: 12px 0;
}

.trk-timeline-empty i {
    color: var(--orange);
}

/* ---- Map Panel ---- */
.trk-map-panel {
    position: sticky;
    top: 120px;
    min-height: 400px;
}

.trk-map-container {
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray-bg);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trk-map-unavailable,
.trk-map-ready-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 40px 24px;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.trk-map-unavailable i {
    font-size: 48px;
    color: var(--navy);
    opacity: 0.15;
}

.trk-map-ready-placeholder i {
    font-size: 48px;
    color: var(--orange);
}

.trk-map-unavailable p {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
    max-width: 240px;
}

.trk-map-ready-placeholder p {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
}

.trk-map-ready-placeholder small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
}

.trk-map-connect-hint {
    color: var(--orange) !important;
    font-family: var(--font-body) !important;
    font-style: italic;
}

/* ---- New Search Wrap ---- */
.trk-new-search-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ---- Skeleton Loader ---- */
.skeleton-card {
    background: var(--navy);
}

.sk-line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 25%, rgba(255, 255, 255, 0.13) 37%, rgba(255, 255, 255, 0.07) 63%);
    background-size: 400% 100%;
    animation: sk-shimmer 1.4s ease infinite;
    border-radius: 6px;
    height: 14px;
    width: 100%;
}

.sk-line--h28 {
    height: 28px;
}

.sk-line--h20 {
    height: 20px;
}

.sk-line--h14 {
    height: 14px;
}

.sk-line--w80 {
    width: 80%;
}

.sk-line--w60 {
    width: 60%;
}

.sk-line--w40 {
    width: 40%;
}

.sk-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: sk-shimmer 1.4s ease infinite;
    flex-shrink: 0;
}

.skeleton-steps {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.sk-map-placeholder {
    border-radius: 12px;
    background: linear-gradient(90deg, var(--gray-bg) 25%, #e8ecf4 37%, var(--gray-bg) 63%);
    background-size: 400% 100%;
    animation: sk-shimmer 1.4s ease infinite;
    min-height: 300px;
    width: 100%;
}

@keyframes sk-shimmer {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .trk-body-grid {
        grid-template-columns: 1fr;
    }

    .trk-map-panel {
        position: static;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .trk-search-card {
        padding: 32px 24px;
    }

    .trk-search-header {
        flex-direction: column;
        gap: 14px;
    }

    .trk-input-wrap {
        flex-direction: column;
    }

    .trk-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .trk-status-card {
        padding: 28px 24px;
    }

    .trk-status-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .trk-tracking-num {
        align-items: flex-start;
    }

    .trk-panel {
        padding: 24px 20px;
    }

    .trk-info-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .trk-state-card {
        padding: 36px 24px;
    }
}

/* ============================================================
   TRACKING PAGE — EXTRA ICONS & MAP OVERLAY CARDS
   ============================================================ */

/* Info key icons */
.trk-info-icon {
    color: var(--orange);
    margin-right: 6px;
    font-size: 13px;
    width: 16px;
    text-align: center;
}

/* Telephone link button */
.trk-tel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-light);
    color: var(--orange-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.trk-tel-link:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 121, 32, 0.25);
}

.trk-tel-link i {
    font-size: 12px;
}

/* Courier Overlay Card on Map */
.trk-map-courier-card {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    background: rgba(0, 11, 58, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 12px 16px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 11, 58, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.trk-courier-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(244, 121, 32, 0.3);
}

.trk-courier-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trk-courier-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trk-courier-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.trk-courier-call-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #22c55e;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.trk-courier-call-btn:hover {
    background: #16a34a;
    transform: scale(1.1);
}

/* Glowing Pulse Dot */
.trk-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: trk-dot-pulse 1.8s infinite;
}

@keyframes trk-dot-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ===================================================
   STOCKAGE & GESTION DE STOCK — PREMIUM SECTION
   =================================================== */

.page-header--storage {
    background: linear-gradient(135deg, var(--navy) 0%, #0c184c 60%, #172a6b 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 70px;
    text-align: center;
    color: var(--white);
}

.page-header--storage::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.15) 0%, rgba(244, 121, 32, 0) 70%);
    pointer-events: none;
}

.page-header--storage::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.page-header--storage h1 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-header--storage p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Common Styles */
.storage-section {
    padding: 90px 0;
    position: relative;
    scroll-margin-top: 100px;
}

.storage-section--gray {
    background: var(--gray-bg);
}

.storage-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.storage-section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-top: 10px;
    margin-bottom: 16px;
}

.storage-section-header p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
}

/* 1. Services Presentation Grid */
.storage-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .storage-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .storage-services-grid {
        grid-template-columns: 1fr;
    }
}

.storage-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(0, 11, 58, 0.05);
    border: 1px solid var(--gray-border);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.storage-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.storage-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 11, 58, 0.12);
    border-color: rgba(244, 121, 32, 0.3);
}

.storage-service-card:hover::before {
    opacity: 1;
}

.storage-service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(244, 121, 32, 0.12) 0%, rgba(244, 121, 32, 0.04) 100%);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    border: 1px solid rgba(244, 121, 32, 0.2);
    transition: all 0.3s ease;
}

.storage-service-card:hover .storage-service-icon-box {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 20px rgba(244, 121, 32, 0.35);
}

.storage-service-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 700;
}

.storage-service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.storage-service-bullets {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px dashed var(--gray-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.storage-service-bullets li {
    font-size: 13.5px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
}

.storage-service-bullets li i {
    color: #22c55e;
    font-size: 13px;
    flex-shrink: 0;
}

/* 2. Stats Section */
.storage-stats-section {
    background: linear-gradient(135deg, #000B3A 0%, #0c1642 50%, #15225c 100%);
    color: var(--white);
    padding: 85px 0;
    position: relative;
    overflow: hidden;
}

.storage-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(244, 121, 32, 0.08) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    opacity: 0.6;
    pointer-events: none;
}

.storage-stats-section .storage-section-header h2 {
    color: var(--white);
}

.storage-stats-section .storage-section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.storage-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .storage-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .storage-stats-grid {
        grid-template-columns: 1fr;
    }
}

.storage-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

.storage-stat-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(244, 121, 32, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.storage-stat-icon {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(244, 121, 32, 0.4));
}

.storage-stat-number {
    font-size: clamp(34px, 4vw, 44px);
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.storage-stat-number .stat-accent {
    color: var(--orange);
}

.storage-stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.storage-stat-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

/* 3. Timeline / How It Works */
.storage-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

@media (min-width: 993px) {
    .storage-timeline-grid::before {
        content: '';
        position: absolute;
        top: 48px;
        left: 8%;
        right: 8%;
        height: 3px;
        background: linear-gradient(90deg, var(--orange) 0%, rgba(244, 121, 32, 0.3) 100%);
        z-index: 1;
    }
}

@media (max-width: 992px) {
    .storage-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 580px) {
    .storage-timeline-grid {
        grid-template-columns: 1fr;
    }
}

.storage-timeline-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px 28px;
    border: 1px solid var(--gray-border);
    box-shadow: 0 8px 24px rgba(0, 11, 58, 0.04);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.storage-timeline-step:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 121, 32, 0.4);
    box-shadow: 0 16px 36px rgba(0, 11, 58, 0.1);
}

.storage-step-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, #15225c 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-head);
    border: 4px solid var(--white);
    box-shadow: 0 6px 18px rgba(0, 11, 58, 0.15);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.storage-timeline-step:hover .storage-step-badge {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(244, 121, 32, 0.4);
}

.storage-step-icon {
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 14px;
}

.storage-step-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.storage-step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 4. Form Section */
.storage-form-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 11, 58, 0.08);
    border: 1px solid var(--gray-border);
    padding: clamp(30px, 5vw, 55px);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.storage-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

@media (max-width: 768px) {
    .storage-form-grid {
        grid-template-columns: 1fr;
    }
}

.storage-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.storage-form-group.full-width {
    grid-column: 1 / -1;
}

.storage-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.storage-form-group label span.req {
    color: var(--orange);
}

.storage-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.storage-input-wrap i {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 15px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.storage-input-wrap input,
.storage-input-wrap select,
.storage-form-group textarea {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: #fafbff;
    transition: all 0.25s ease;
    outline: none;
}

.storage-input-wrap select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

.storage-form-group textarea {
    padding-left: 16px;
    resize: vertical;
    min-height: 110px;
}

.storage-input-wrap input:focus,
.storage-input-wrap select:focus,
.storage-form-group textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(244, 121, 32, 0.12);
}

.storage-input-wrap input:focus + i,
.storage-input-wrap select:focus + i {
    color: var(--orange);
}

/* Services Checkbox Grid */
.storage-services-checks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 4px;
}

.storage-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f6fb;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.storage-check-label:hover {
    background: rgba(244, 121, 32, 0.05);
    border-color: rgba(244, 121, 32, 0.3);
}

.storage-check-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--orange);
    cursor: pointer;
}

.storage-check-label:has(input:checked) {
    background: rgba(244, 121, 32, 0.08);
    border-color: var(--orange);
    color: var(--navy);
    font-weight: 600;
}

.storage-form-submit-btn {
    width: 100%;
    padding: 16px 28px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 5. CTA Final */
.storage-cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #0c184c 60%, #172a6b 100%);
    border-radius: 24px;
    padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 11, 58, 0.2);
}

.storage-cta-banner h2 {
    color: var(--white);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.storage-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 640px;
    margin: 0 auto 32px;
}

.storage-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}




/* ===========================================
   FIX RESPONSIVE — TOPBAR + NAVBAR MOBILE
=========================================== */

@media (max-width: 900px) {
    /* Fix topbar qui déborde sur mobile */
    .topbar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
        padding: 8px 0;
    }

    .topbar-item {
        flex: 0 1 auto;
    }

    /* Cacher le bouton "Demander une solution" pour laisser la place au menu burger */
    .btn-nav-track {
        display: none;
    }

    /* S'assurer que le bouton burger ne soit jamais écrasé/poussé hors écran */
    .navbar-toggle {
        flex-shrink: 0;
        margin-left: auto;
    }
}


@media (max-width: 900px) {
    .header-main {
        overflow: visible;
    }

    .navbar-links {
        z-index: 50;
    }
}

@media (max-width: 600px) {
    .topbar-item strong,
    .topbar-item small {
        font-size: 10px;
    }

    .topbar-item--highlight {
        display: none;
    }

    .network-section {
        background: #f7f8fb !important;
        padding: 0px 0 0px !important;
    }
}
