/* ============================================
   GTI SAUVETAGE — Modern Tech Premium Design
   ============================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
    /* Primary palette */
    --primary: #0a0f1e;
    --primary-600: #111936;
    --primary-500: #1a2547;
    --primary-400: #2a3a6b;
    --primary-light: #3b82f6;
    --primary-vivid: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.15);

    /* Accent */
    --accent: #ef4444;
    --accent-dark: #dc2626;
    --accent-glow: rgba(239, 68, 68, 0.2);

    /* Gold / Premium */
    --gold: #f59e0b;
    --gold-light: #fbbf24;

    /* Surfaces */
    --surface-body: #ffffff;
    --surface-50: #f8fafc;
    --surface-100: #f1f5f9;
    --surface-200: #e2e8f0;
    --surface-700: #0f172a;
    --surface-800: #0b1120;
    --surface-900: #060a14;

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverted: #ffffff;

    /* Border */
    --border: #e2e8f0;
    --border-hover: #cbd5e1;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-max: 1320px;
    --container-wide: 1440px;
    --section-spacing: clamp(80px, 10vw, 140px);
    --header-h: 80px;

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 100px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .1);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, .12);
    --shadow-blue: 0 8px 30px rgba(59, 130, 246, .2);
    --shadow-blue-lg: 0 16px 50px rgba(59, 130, 246, .25);
    --shadow-red: 0 8px 30px rgba(239, 68, 68, .25);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, .72);
    --glass-bg-dark: rgba(15, 23, 42, .6);
    --glass-border: rgba(255, 255, 255, .25);
    --glass-blur: blur(20px);

    /* Transitions */
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
    --t-fast: .2s;
    --t-smooth: .4s;
    --t-slow: .6s;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--surface-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t-fast);
}

ul {
    list-style: none;
}

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

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

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

.section-padding {
    padding: var(--section-spacing) 0;
}

.text-accent {
    color: var(--accent);
}

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

.text-muted {
    color: var(--text-secondary);
}

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


/* ============================================
   HEADER — Frosted Glass Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, .5);
    z-index: 1000;
    transition: all var(--t-smooth) var(--ease-out);
}

.header.scrolled {
    background: rgba(255, 255, 255, .95);
    height: 68px;
    box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
    border-bottom-color: transparent;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.logo span.logo-light {
    color: var(--primary-light);
    font-weight: 600;
}

/* Nav */
.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: .88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-vivid));
    border-radius: 2px;
    transition: width .3s var(--ease-out);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* CTA Header */
.cta-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: all var(--t-smooth) var(--ease-out);
    box-shadow: var(--shadow-red);
    position: relative;
    overflow: hidden;
}

.cta-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}

.cta-header:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(239, 68, 68, .35);
}

.cta-header:hover::before {
    opacity: 1;
}

.cta-header i.icon {
    font-size: 1.1rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all .3s var(--ease-out);
}

.mobile-menu-toggle span:first-child {
    top: 4px;
}

.mobile-menu-toggle span:last-child {
    bottom: 4px;
}

.mobile-menu-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, .95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .4s var(--ease-out);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s var(--ease-out);
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: .1s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: .2s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: .3s;
}

.mobile-nav-link:hover {
    color: var(--primary-light);
}


/* ============================================
   HERO — Immersive Full-Screen with Particles
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 80px;
    background: var(--surface-50);
    overflow: hidden;
}

/* Animated grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, .04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: gridFloat 20s linear infinite;
    mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 20%, transparent 70%);
}

@keyframes gridFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* ---- Warehouse Background System ---- */
.hero-warehouse-bg {
    position: absolute;
    inset: -20px;
    /* Extend for blur edge bleed */
    z-index: 0;
    overflow: hidden;
}

.hero-warehouse-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    filter: blur(6px) saturate(.85) brightness(.92);
    transform: scale(1.05);
    /* Prevent blur white edges */
    will-change: transform;
    animation: warehousePan 30s ease-in-out infinite alternate;
}

@keyframes warehousePan {
    0% {
        transform: scale(1.05) translate(0, 0);
    }

    100% {
        transform: scale(1.08) translate(-1%, 1%);
    }
}

/* Semi-transparent overlay for text readability */
.hero-warehouse-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, .88) 0%,
            rgba(255, 255, 255, .80) 40%,
            rgba(248, 250, 252, .75) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Gradient mesh background (sits on top of warehouse) */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-premium {
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, .14) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, .10) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(239, 68, 68, .06) 0%, transparent 35%),
        radial-gradient(circle at 50% 100%, rgba(245, 158, 11, .04) 0%, transparent 30%);
    animation: meshFloat 15s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Floating orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .08) 0%, transparent 70%);
    top: 10%;
    right: -5%;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

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

/* Badges */
.badges-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, .12);
    box-shadow: 0 2px 12px rgba(59, 130, 246, .06);
    transition: all var(--t-smooth) var(--ease-out);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, .12);
}

.badge-gold {
    background: linear-gradient(135deg, rgba(245, 158, 11, .08) 0%, rgba(251, 191, 36, .08) 100%);
    color: #b45309;
    border-color: rgba(245, 158, 11, .2);
}

/* Hero Title */
.hero-title {
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.hero-title .text-accent {
    color: var(--accent);
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

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

    50% {
        opacity: .7;
        transform: scale(1.15);
    }
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 55%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
    font-weight: 400;
}

.hero-highlight {
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(59, 130, 246, .15), rgba(59, 130, 246, .05));
    z-index: -1;
    border-radius: 3px;
}

/* Hero Stats Glass */
.hero-stats-glass {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-blue);
    margin-top: 40px;
    overflow: hidden;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 36px;
    position: relative;
    transition: all var(--t-smooth) var(--ease-out);
}

.stat-item:hover {
    background: rgba(59, 130, 246, .04);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 6px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}


/* ============================================
   BUTTONS — Premium Gradient with Glow
   ============================================ */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 40px;
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .02em;
    cursor: pointer;
    transition: all .35s var(--ease-out);
    position: relative;
    gap: 10px;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a2d5a 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 32px rgba(13, 27, 62, 0.45);
    animation: btnGlow 4s ease-in-out infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, .35);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    font-size: 1.1rem;
}


/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 64px;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary-light);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, .06);
    border-radius: var(--r-full);
    border: 1px solid rgba(59, 130, 246, .1);
}

.section-tag i {
    font-size: 1rem;
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -0.035em;
    position: relative;
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.section-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}


/* ============================================
   SERVICES — Elevated Glass Cards
   ============================================ */
.services {
    background: white;
    position: relative;
    z-index: 10;
}

/* Subtle dot pattern background */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(59, 130, 246, .04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.service-card {
    background: #0d1b3e;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--t-slow) var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    opacity: 0;
    transition: opacity .4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, .5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, .5) 0%, transparent 60%);
    opacity: .7;
    transition: opacity .4s;
}

.service-card:hover .service-image::after {
    opacity: .4;
}

.service-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.service-details li {
    margin-bottom: 14px;
    font-size: .92rem;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.service-details li strong {
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

.service-link-text {
    margin-top: auto;
    padding-top: 24px;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s var(--ease-out);
}

.service-link-text .arrow {
    display: inline-block;
    transition: transform .3s var(--ease-out);
}

.service-card:hover .service-link-text {
    gap: 16px;
    color: var(--primary-vivid);
}

.service-card:hover .service-link-text .arrow {
    transform: translateX(4px);
}


/* ============================================
   TRUST / CAPABILITIES — Feature Cards
   ============================================ */
.trust-capabilities {
    background: var(--surface-50);
    padding: var(--section-spacing) 0;
    position: relative;
}

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

.trust-card {
    background: white;
    padding: 36px;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: all var(--t-smooth) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(59, 130, 246, .04) 0%, transparent 100%);
    transition: height var(--t-smooth) var(--ease-out);
}

.trust-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-blue);
    transform: translateY(-8px);
}

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

.trust-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.trust-icon {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, .08) 0%, rgba(99, 102, 241, .08) 100%);
    border-radius: var(--r-md);
    color: var(--primary-light);
    transition: all var(--t-smooth) var(--ease-out);
}

.trust-card:hover .trust-icon {
    background: linear-gradient(135deg, var(--primary-vivid) 0%, var(--primary-light) 100%);
    color: white;
    transform: scale(1.05);
}

.trust-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
}

.trust-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.6;
}

.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
}

/* Deliverables Bar */
.deliverables-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: white;
    border-radius: var(--r-lg);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.deliverables-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(59, 130, 246, .1);
    pointer-events: none;
}

.deliverables-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.deliverable-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: .95rem;
}

.deliverable-check i {
    color: var(--primary-light);
    font-size: 1.2rem;
}


/* ============================================
   PROCESS TIMELINE — Modern Alternating
   ============================================ */
.process-section {
    background: var(--surface-50);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, .05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(239, 68, 68, .03) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-axis {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-light) 15%, var(--primary-light) 85%, transparent 100%);
    transform: translateX(-50%);
    opacity: .2;
}

.process-node {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.process-node:last-child {
    margin-bottom: 0;
}

.process-content-wrapper {
    flex: 1;
    width: 50%;
    display: flex;
}

.process-content-wrapper.right-side {
    justify-content: flex-start;
    padding-left: 50px;
}

.process-content-wrapper.left-side {
    justify-content: flex-end;
    padding-right: 50px;
}

.process-spacer {
    flex: 1;
    width: 50%;
}

.process-marker {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 18px;
    background: white;
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 0 6px rgba(59, 130, 246, .1);
    transition: all var(--t-smooth) var(--ease-out);
}

.process-node:hover .process-marker {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, .15);
    transform: translateX(-50%) scale(1.2);
}

.marker-accent {
    border-color: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-glow);
}

.process-content {
    background: white;
    padding: 36px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all var(--t-smooth) var(--ease-out);
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.process-node:hover .process-content {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, .12);
}

.process-node:hover .process-content::before {
    opacity: 1;
}

.step-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(59, 130, 246, .08) 0%, rgba(59, 130, 246, .02) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: -5px;
}

.process-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .08) 0%, rgba(99, 102, 241, .06) 100%);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: all var(--t-smooth) var(--ease-out);
}

.process-node:hover .process-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-vivid), var(--primary-light));
    color: white;
    transform: scale(1.08);
}

.payment-highlight .process-icon-wrapper {
    background: linear-gradient(135deg, rgba(239, 68, 68, .1) 0%, rgba(239, 68, 68, .05) 100%);
    color: var(--accent);
}

.process-node:hover .payment-highlight .process-icon-wrapper {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
}

.process-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.process-content p {
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.65;
}


/* ============================================
   EUROPE SECTION — Full-Width Visual Map
   ============================================ */
.europe-section-ref {
    background: white;
    overflow: hidden;
    position: relative;
}

.europe-ref-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.europe-col-visual {
    grid-column: span 1;
}

.europe-card-wrapper {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
}

.europe-card-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}

.europe-col-visual:hover .europe-card-wrapper::before {
    opacity: .3;
}

.europe-card-img {
    border-radius: var(--r-lg);
    transition: transform .6s var(--ease-out);
}

.europe-col-visual:hover .europe-card-img {
    transform: scale(1.03);
}

.europe-col-title {
    padding-left: 20px;
}

.badge-pill-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .06), rgba(99, 102, 241, .06));
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .78rem;
    border: 1px solid rgba(59, 130, 246, .12);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.badge-wrapper {
    margin-bottom: 20px;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.europe-title-ref {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    line-height: 1.05;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.europe-col-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.europe-feature-ref {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--r-md);
    transition: all var(--t-smooth) var(--ease-out);
}

.europe-feature-ref:hover {
    background: var(--surface-50);
    transform: translateX(4px);
}

.feature-star {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-content-ref strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.feature-content-ref p {
    color: var(--text-secondary);
    font-size: .92rem;
    line-height: 1.55;
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: white;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

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

.contact-info::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(59, 130, 246, .08);
    pointer-events: none;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(239, 68, 68, .05);
    pointer-events: none;
}

.contact-info h2 {
    color: white;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
}

.contact-info-blocks {
    position: relative;
}

.info-item {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.info-item .label {
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 8px;
    font-weight: 600;
}

.info-item .value {
    font-size: 1.15rem;
    font-weight: 500;
    color: white;
}

.map-container {
    height: 100%;
    min-height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ============================================
   FOOTER — Deep Dark Premium
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--surface-800) 0%, var(--surface-900) 100%);
    color: white;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Decorative top line */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(59, 130, 246, .3) 30%, rgba(239, 68, 68, .2) 70%, transparent 95%);
}

/* Subtle dot grid */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
    text-decoration: none;
    cursor: pointer;
}
.footer-logo:hover {
    color: white;
    opacity: 0.85;
}

.footer-desc {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: .02em;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: .92rem;
    transition: all .25s var(--ease-out);
}

.footer-col a:hover {
    color: var(--primary-light);
    transform: translateX(6px);
}

.footer-urgent {
    color: var(--accent) !important;
    font-weight: 700;
    font-size: 1.2rem !important;
    margin-bottom: 16px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.footer-urgent:hover {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 32px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, .3);
    font-size: .85rem;
}


/* ============================================
   SCROLL REVEAL & ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s var(--ease-out);
}

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

.reveal.delay-1 {
    transition-delay: .12s;
}

.reveal.delay-2 {
    transition-delay: .24s;
}

.reveal.delay-3 {
    transition-delay: .36s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp .8s var(--ease-out) forwards;
}

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

.delay-1 {
    animation-delay: .15s;
}

.delay-2 {
    animation-delay: .3s;
}

.delay-3 {
    animation-delay: .45s;
}


/* ============================================
   COUNTER ANIMATION GLOW
   ============================================ */
.counter-animate {
    display: inline-block;
    transition: color .3s;
}


/* ============================================
   UTILITIES
   ============================================ */
.bg-light {
    background: var(--surface-50);
}

.mt-4 {
    margin-top: 1rem;
}

.mt-12 {
    margin-top: 3rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .europe-ref-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .europe-col-title {
        padding-left: 0;
    }

    .process-content-wrapper.right-side,
    .process-content-wrapper.left-side {
        padding: 0;
    }

    .process-content-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }

    .process-spacer,
    .process-marker {
        display: none;
    }

    .process-axis {
        left: 16px;
    }

    .process-node {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 44px;
        margin-bottom: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: calc(var(--header-h) + 20px) 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-stats-glass {
        flex-direction: column;
        gap: 0;
        border-radius: var(--r-lg);
        width: 100%;
    }

    .stat-item {
        width: 100%;
        padding: 16px 24px;
    }

    .stat-item:not(:last-child)::after {
        right: 10%;
        left: 10%;
        bottom: 0;
        top: auto;
        width: 80%;
        height: 1px;
    }

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

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

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

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

    .contact-info {
        padding: 40px 24px;
    }

    .deliverables-bar {
        flex-direction: column;
        text-align: center;
    }

    .deliverables-label {
        text-align: center;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 16px 28px;
        font-size: .92rem;
    }

    .badges-wrapper {
        flex-direction: column;
        gap: 8px;
    }
}


/* ============================================
   SMOOTH SCROLL BAR (Chrome/Edge)
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}


/* ============================================
   LOADING / PAGE TRANSITION
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--surface-body);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s, visibility .5s;
}

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

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--surface-200);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

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


/* ============================================
   SERVICE PAGES — Shared Styles
   ============================================ */

/* --- Service Hero --- */
.svc-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 60px) 0 80px;
    overflow: hidden;
    background: var(--surface-50);
}

.svc-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Theme: Gold (Rachat) */
.svc-hero--gold .svc-hero__bg {
    background:
        radial-gradient(circle at 20% 60%, rgba(245, 158, 11, .1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, .06) 0%, transparent 40%),
        radial-gradient(circle at 60% 90%, rgba(251, 191, 36, .05) 0%, transparent 35%);
}

.svc-hero--gold .svc-hero__accent {
    color: #b45309;
}

/* Theme: Steel (Véhicules) */
.svc-hero--steel .svc-hero__bg {
    background:
        radial-gradient(circle at 25% 50%, rgba(100, 116, 139, .1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(59, 130, 246, .06) 0%, transparent 40%),
        radial-gradient(circle at 50% 85%, rgba(148, 163, 184, .05) 0%, transparent 35%);
}

.svc-hero--steel .svc-hero__accent {
    color: var(--primary-light);
}

/* Theme: Blue (Expertise) */
.svc-hero--blue .svc-hero__bg {
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, .1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, .06) 0%, transparent 40%),
        radial-gradient(circle at 60% 90%, rgba(56, 189, 248, .05) 0%, transparent 35%);
}

.svc-hero--blue .svc-hero__accent {
    color: var(--primary-light);
}

/* Grid pattern for hero */
.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, .03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 60% at 40% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 40% 50%, black 20%, transparent 70%);
}

.svc-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.svc-hero__content {
    max-width: 580px;
}

/* Breadcrumb */
.svc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all .3s var(--ease-out);
    margin-bottom: 8px;
}

.svc-breadcrumb:hover {
    color: var(--primary-light);
    transform: translateX(-4px);
}

.svc-hero__title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.08;
    margin-top: 16px;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.04em;
}

.svc-hero__accent {
    position: relative;
}

.svc-hero__lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.svc-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Visual (Image + Stats) */
.svc-hero__visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-hero__image-wrapper {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.svc-hero__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform .6s var(--ease-out);
}

.svc-hero__image-wrapper:hover .svc-hero__image {
    transform: scale(1.04);
}

.svc-hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, .35), transparent 50%);
    pointer-events: none;
}

/* Stats Strip */
.svc-hero__stats {
    display: flex;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-blue);
}

.svc-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 16px;
    position: relative;
    transition: all .3s var(--ease-out);
}

.svc-stat:hover {
    background: rgba(59, 130, 246, .04);
}

.svc-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.svc-stat__value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
}

.svc-stat__label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}


/* --- Manifesto (Problem / Solution) --- */
.svc-manifesto {
    background: white;
    position: relative;
}

.svc-manifesto__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.svc-manifesto__card {
    padding: 44px;
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    transition: all var(--t-smooth) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.svc-manifesto__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .4s;
}

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

.svc-manifesto__card:hover::before {
    opacity: 1;
}

/* Problem variant */
.svc-manifesto__card--problem {
    background: var(--surface-50);
}

.svc-manifesto__card--problem::before {
    background: linear-gradient(90deg, var(--text-muted), transparent);
}

.svc-manifesto__card--problem .svc-manifesto__icon {
    background: rgba(239, 68, 68, .08);
    color: var(--accent);
}

/* Solution variant */
.svc-manifesto__card--solution {
    background: white;
    border-color: rgba(59, 130, 246, .2);
    box-shadow: var(--shadow-sm);
}

.svc-manifesto__card--solution::before {
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
}

.svc-manifesto__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(100, 116, 139, .08);
    color: var(--text-secondary);
    transition: all var(--t-smooth) var(--ease-out);
}

.svc-manifesto__icon--accent {
    background: linear-gradient(135deg, rgba(59, 130, 246, .1), rgba(99, 102, 241, .1));
    color: var(--primary-light);
}

.svc-manifesto__card:hover .svc-manifesto__icon {
    transform: scale(1.08);
}

.svc-manifesto__label {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.svc-manifesto__text {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.svc-manifesto__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-manifesto__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text-secondary);
}

.svc-manifesto__list li i {
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.svc-manifesto__list--success li i {
    color: #10b981;
}


/* --- Service Process (Horizontal) --- */
.svc-process {
    background: var(--surface-50);
    position: relative;
}

.svc-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, .04), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(239, 68, 68, .02), transparent 50%);
    pointer-events: none;
}

.svc-process__grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.svc-process__card {
    flex: 1;
    background: white;
    border-radius: var(--r-xl);
    padding: 40px 32px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--t-smooth) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.svc-process__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.svc-process__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, .15);
}

.svc-process__card:hover::before {
    opacity: 1;
}

.svc-process__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(59, 130, 246, .1), rgba(59, 130, 246, .03));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.svc-process__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(99, 102, 241, .06));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.4rem;
    margin: 0 auto 20px;
    transition: all var(--t-smooth) var(--ease-out);
}

.svc-process__card:hover .svc-process__icon {
    background: linear-gradient(135deg, var(--primary-vivid), var(--primary-light));
    color: white;
    transform: scale(1.08);
}

.svc-process__card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.svc-process__card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Connector arrow between steps */
.svc-process__connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    color: var(--primary-light);
    font-size: 1.2rem;
    opacity: .4;
    position: relative;
}

.svc-process__connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
    display: none;
}

.svc-process__connector i {
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: .4;
    }

    50% {
        transform: translateX(4px);
        opacity: .8;
    }
}


/* --- Types / Categories Grid --- */
.svc-types {
    background: white;
    position: relative;
}

.svc-types__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.svc-types__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    background: var(--surface-50);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: all var(--t-smooth) var(--ease-out);
    font-weight: 600;
    color: var(--primary);
    font-size: .95rem;
}

.svc-types__item i {
    font-size: 1.4rem;
    color: var(--primary-light);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, .08);
    border-radius: var(--r-sm);
    flex-shrink: 0;
    transition: all var(--t-smooth) var(--ease-out);
}

.svc-types__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, .15);
}

.svc-types__item:hover i {
    background: linear-gradient(135deg, var(--primary-vivid), var(--primary-light));
    color: white;
}


/* --- Service CTA Section --- */
.svc-cta {
    background: var(--surface-50);
}

.svc-cta__inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 50%, #1e1b4b 100%);
    border-radius: var(--r-xl);
    padding: 60px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.svc-cta__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(59, 130, 246, .1);
    pointer-events: none;
}

.svc-cta__inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(239, 68, 68, .06);
    pointer-events: none;
}

.svc-cta__content {
    position: relative;
    z-index: 1;
}

.svc-cta__content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.svc-cta__content p {
    color: rgba(255, 255, 255, .6);
    font-size: 1.05rem;
}

.svc-cta__inner .btn {
    position: relative;
    z-index: 1;
    white-space: nowrap;
    flex-shrink: 0;
}


/* --- Service Pages Responsive --- */
@media (max-width: 1024px) {
    .svc-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-hero__content {
        max-width: 100%;
    }

    .svc-hero {
        min-height: auto;
        padding-bottom: 60px;
    }

    .svc-process__grid {
        flex-direction: column;
        gap: 20px;
    }

    .svc-process__connector {
        min-width: auto;
        min-height: 32px;
    }

    .svc-process__connector i {
        transform: rotate(90deg);
        animation: arrowPulseDown 2s ease-in-out infinite;
    }

    @keyframes arrowPulseDown {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
            opacity: .4;
        }

        50% {
            transform: rotate(90deg) translateX(4px);
            opacity: .8;
        }
    }

    .svc-manifesto__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .svc-hero {
        padding: calc(var(--header-h) + 20px) 0 40px;
    }

    .svc-hero__title {
        font-size: 2.4rem;
    }

    .svc-hero__image {
        height: 240px;
    }

    .svc-hero__actions {
        flex-direction: column;
    }

    .svc-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .svc-types__grid {
        grid-template-columns: 1fr;
    }

    .svc-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .svc-cta__content {
        text-align: center;
    }

    .svc-manifesto__card {
        padding: 28px;
    }

    .svc-process__card {
        padding: 28px 20px;
    }
}