:root {
    --red: #F26522;
    --red-dark: #C44E10;
    --red-light: #FF8340;
    --blue: #111111;
    --blue-mid: #1a1a1a;
    --blue-light: #2a2a2a;
    --blue-bright: #F26522;
    --white: #FFFFFF;
    --off: #F8F8F8;
    --lgrey: #E5E5E5;
    --grey: #888888;
    --dark: #0d0d0d;
    --green: #25D366
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--blue)
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px
}

/* LOADER */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity .7s, visibility .7s
}

#loader.gone {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.ld-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
    line-height: 1.1
}

.ld-logo span {
    color: var(--red)
}

.ld-sub {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px
}

.ld-track {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, .15);
    border-radius: 3px;
    overflow: hidden
}

.ld-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--red), var(--blue-bright));
    animation: ldgo 1.6s ease forwards
}

@keyframes ldgo {
    to {
        width: 100%
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: var(--blue);
    box-shadow: 0 2px 24px rgba(0, 0, 0, .4);
    transition: all .3s
}

nav.scrolled {
    height: 58px;
    background: rgba(13, 13, 13, .97);
    backdrop-filter: blur(12px)
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    line-height: 1
}

.nav-logo span {
    color: var(--red)
}

.nav-logo small {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    line-height: 1
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none
}

.nav-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color .25s;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.nav-links a:hover {
    color: #fff
}

.nav-links a:hover::after {
    transform: scaleX(1)
}

.nav-cta {
    background: var(--green) !important;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 700 !important;
    white-space: nowrap
}

.nav-cta:hover {
    background: #1ebe5a !important;
    transform: translateY(-2px)
}

.nav-cta::after {
    display: none !important
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.ham span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .35s
}

.ham.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.ham.open span:nth-child(2) {
    opacity: 0
}

.ham.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mob-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--blue);
    padding: 16px 5%;
    flex-direction: column;
    z-index: 199;
    opacity: 0;
    transform: translateY(-8px);
    transition: all .3s
}

.mob-menu.open {
    opacity: 1;
    transform: translateY(0)
}

.mob-menu a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: color .2s
}

.mob-menu a:hover {
    color: var(--red)
}

.mob-menu a:last-child {
    border: none;
    margin-top: 12px;
    background: var(--green);
    color: #fff !important;
    text-align: center;
    padding: 13px;
    border-radius: 8px
}

/* HERO */
/* ══════════════════════════════
   HERO — SPLIT DESIGN
══════════════════════════════ */
/* ═══════════════════════════════════════
   HERO — NOUVEAU DESIGN BOLD SPLIT
═══════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
    background: #0d0d0d
}

/* FOND photo plein écran */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hbg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.04);
    animation: none
}

.hbg-slide.active {
    opacity: 1
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13,13,13,.97) 0%,
        rgba(13,13,13,.88) 42%,
        rgba(13,13,13,.45) 65%,
        rgba(13,13,13,.15) 100%
    )
}

/* Ligne déco verticale gauche */
.h-vline {
    position: absolute;
    left: 5.5%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(242,101,34,.6) 30%, rgba(242,101,34,.6) 70%, transparent 100%);
    z-index: 3;
    pointer-events: none
}

/* Numéro déco géant */
.h-bignum {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 18vw, 280px);
    color: rgba(255,255,255,.03);
    line-height: 1;
    letter-spacing: -5px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    transition: opacity .6s
}

/* ── CORPS HERO : 2 colonnes ── */
.h-body {
    position: relative;
    z-index: 10;
    flex: 1;
    display: grid;
    grid-template-columns: 52% 1fr;
    align-items: center;
    gap: 0;
    padding: 60px 5% 80px 8%;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto
}

/* ── COLONNE GAUCHE : texte ── */
.h-left {
    display: flex;
    flex-direction: column;
    gap: 0
}

/* Eyebrow badge */
.h-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 24px;
    opacity: 0;
    animation: fsu .6s ease .2s forwards
}

.h-dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #F26522;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(242,101,34,.6);
    animation: pulse-dot 1.8s ease-in-out infinite
}

@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(242,101,34,.6) }
    50%      { box-shadow: 0 0 0 6px rgba(242,101,34,0) }
}

/* Titre principal */
.h-title {
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue', sans-serif;
    line-height: .92;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 28px;
    opacity: 0;
    animation: fsu .7s ease .4s forwards
}

.h-t1 {
    font-size: clamp(38px, 5vw, 68px);
    color: rgba(255,255,255,.4);
    letter-spacing: 6px
}

.h-t2 {
    font-size: clamp(64px, 8.5vw, 124px);
    color: #fff;
    line-height: .9
}

.h-t2 em {
    color: #F26522;
    font-style: italic
}

.h-t3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(13px, 1.4vw, 18px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-top: 6px
}

/* Description */
.h-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
    max-width: 460px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fsu .7s ease .6s forwards
}

/* Services row */
.h-services-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    opacity: 0;
    animation: fsu .7s ease .75s forwards
}

.h-srv {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    letter-spacing: .5px;
    padding: 0 18px 0 0
}

.h-srv:first-child { padding-left: 0 }

.h-srv-sep {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,.2);
    margin-right: 18px
}

/* CTA Buttons */
.h-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fsu .7s ease .9s forwards
}

.h-btn-primary {
    background: #F26522;
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    letter-spacing: .3px
}

.h-btn-primary:hover {
    background: #FF6B1A;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(242,101,34,.45)
}

.h-btn-wa {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.3);
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 9px
}

.h-btn-wa:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-3px)
}

/* Trust items */
.h-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fsu .7s ease 1.05s forwards
}

.h-ti {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.h-ti strong {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px
}

.h-ti span {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    letter-spacing: .5px
}

/* Animations */
@keyframes fsu {
    from { opacity: 0; transform: translateY(24px) }
    to   { opacity: 1; transform: translateY(0) }
}

/* ── COLONNE DROITE : image ── */
.h-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    animation: h-enter-right 1s ease .5s forwards
}

@keyframes h-enter-right {
    from { opacity: 0; transform: translateX(40px) }
    to   { opacity: 1; transform: translateX(0) }
}

.h-frame {
    position: relative;
    width: 100%;
    max-width: 540px;
    border-radius: 16px;
    overflow: visible
}

/* Bordure déco rouge */
.h-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(242,101,34,.7) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none
}

.h-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
    z-index: 0;
    pointer-events: none
}

.hc-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
    border-radius: 16px
}

.hc-slide.active {
    opacity: 1;
    position: relative;
    height: 380px
}

/* Étiquette voiture */
.h-car-tag {
    position: absolute;
    bottom: -16px;
    left: 20px;
    z-index: 10;
    background: rgba(13,13,13,.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 12px 20px;
    animation: floatY 4s ease-in-out infinite
}

.h-car-tag-name {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
    transition: opacity .3s
}

.h-car-tag-sub {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
    letter-spacing: .5px
}

@keyframes floatY {
    0%,100% { transform: translateY(0) }
    50%      { transform: translateY(-6px) }
}

/* Navigation carousel */
.h-nav {
    position: absolute;
    bottom: -16px;
    right: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,13,13,.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 10px 16px
}

.h-nav-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    cursor: pointer;
    transition: color .2s;
    line-height: 1;
    padding: 0 2px
}

.h-nav-btn:hover { color: #F26522 }

.h-nav-dots {
    display: flex;
    gap: 6px;
    align-items: center
}

.hc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all .3s
}

.hc-dot.active {
    background: #F26522;
    width: 20px;
    border-radius: 4px
}

/* ── STATS BAR ── */
.hero-stats {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255,255,255,.07)
}

.hstat {
    padding: 22px 20px;
    text-align: center;
    background: rgba(13,13,13,.85);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255,255,255,.05);
    color: #fff
}

.hstat:last-child { border-right: none }

.hstat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    color: #F26522;
    display: block
}

.hstat-l {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    letter-spacing: .5px
}

/* ── BTN RED & GREEN (utilisés ailleurs) ── */
.btn-red {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-red:hover {
    background: var(--red-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(242,101,34,.45)
}

.btn-green {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-green:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,.4)
}


/* GENERAL */
section {
    padding: 88px 5%
}

.wrap {
    max-width: 1200px;
    margin: 0 auto
}

.stag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px
}

.stag::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.stitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 1px;
    line-height: 1.05;
    color: var(--blue)
}

.stitle .r {
    color: var(--red)
}

.ssub {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.75;
    max-width: 520px;
    margin-top: 12px
}

/* SERVICES */
.svc-sec {
    background: var(--off)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px
}

.svc {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--lgrey);
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275)
}

.svc:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(13, 13, 13, .11);
    border-color: transparent
}

.svc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px
}

.svc.s1::before {
    background: var(--red)
}

.svc.s2::before {
    background: var(--blue-bright)
}

.svc.s3::before {
    background: linear-gradient(90deg, var(--red), var(--blue-bright))
}

.svc-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px
}

.s1 .svc-ico {
    background: rgba(242, 101, 34, .09)
}

.s2 .svc-ico {
    background: rgba(26, 95, 212, .09)
}

.s3 .svc-ico {
    background: rgba(13, 13, 13, .07)
}

.svc h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px
}

.svc p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.75;
    margin-bottom: 22px
}

.svc-lnk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: gap .25s;
    position: relative;
    z-index: 3
}

.s1 .svc-lnk {
    color: var(--red)
}

.s2 .svc-lnk {
    color: var(--blue-bright)
}

.s3 .svc-lnk {
    color: var(--blue)
}

.svc-lnk:hover {
    gap: 12px
}

.svc-n {
    position: absolute;
    bottom: 18px;
    right: 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 68px;
    opacity: .04;
    color: var(--blue);
    z-index: 0;
    pointer-events: none
}

/* FLEET */
.fleet-sec {
    background: #fff
}

.fleet-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px
}

.tabs {
    display: flex;
    background: var(--off);
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
    flex-wrap: wrap
}

.tab {
    padding: 9px 18px;
    border: none;
    background: transparent;
    border-radius: 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey);
    cursor: pointer;
    transition: all .25s
}

.tab.on {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 13, 13, .25)
}

.cgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.cc {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lgrey);
    transition: all .35s;
    opacity: 0;
    transform: translateY(22px)
}

.cc.vis {
    opacity: 1;
    transform: translateY(0)
}

.cc:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 24px 55px rgba(13, 13, 13, .14);
    border-color: transparent
}

.cc-img {
    height: 210px;
    position: relative;
    overflow: hidden;
    background: var(--off)
}

.cc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.cc:hover .cc-img img {
    transform: scale(1.07)
}

.ctag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2
}

.t-s {
    background: var(--red);
    color: #fff
}

.t-l {
    background: var(--blue-bright);
    color: #fff
}

.t-e {
    background: #16A34A;
    color: #fff
}

.t-p {
    background: #7C3AED;
    color: #fff
}

.t-promo {
    background: #F59E0B;
    color: #fff
}

.cc-body {
    padding: 20px 22px 18px
}

.cc-mk {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 3px
}

.cc-mo {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 12px;
    letter-spacing: -.3px
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px
}

.pill {
    background: var(--off);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue)
}

.cc-ft {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--lgrey);
    gap: 8px;
    flex-wrap: wrap
}

.cc-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -.5px
}

.cc-price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--grey)
}

.cc-actions {
    display: flex;
    gap: 8px
}

.cc-btn-detail {
    background: var(--off);
    color: var(--blue);
    border: 1px solid var(--lgrey);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 5px
}

.cc-btn-detail:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.cc-btn-res {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 5px
}

.cc-btn-res:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, .4)
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 31, .75);
    backdrop-filter: blur(8px);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible
}

.modal {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(.94) translateY(20px);
    transition: transform .35s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: 0 40px 80px rgba(6, 13, 31, .35)
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0)
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, .15);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    z-index: 10;
    color: #fff
}

.modal-close:hover {
    background: var(--red);
    transform: rotate(90deg)
}

.modal-img {
    height: 280px;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
    position: relative;
    flex-shrink: 0
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.modal-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, .55), transparent 60%)
}

.modal-badge-pos {
    position: absolute;
    bottom: 18px;
    left: 20px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff
}

.modal-body {
    padding: 28px 32px
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 14px
}

.modal-maker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 4px
}

.modal-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
    color: var(--blue);
    line-height: 1
}

.modal-price-block {
    text-align: right
}

.modal-price {
    font-size: 30px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -.5px
}

.modal-price small {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey)
}

.modal-price-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px
}

.modal-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 22px
}

.spec-item {
    background: var(--off);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    border: 1px solid var(--lgrey)
}

.spec-icon {
    font-size: 22px;
    margin-bottom: 5px
}

.spec-val {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
    display: block
}

.spec-lbl {
    font-size: 10px;
    color: var(--grey);
    font-weight: 500;
    letter-spacing: .5px
}

.modal-desc {
    font-size: 14px;
    color: #556;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--off);
    border-radius: 12px;
    border-left: 3px solid var(--red)
}

.modal-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px
}

.opt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark)
}

.opt-dot {
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.modal-wa-btn {
    flex: 1;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px
}

.modal-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .4)
}

.modal-call-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    text-decoration: none
}

.modal-call-btn:hover {
    background: var(--blue-light);
    transform: translateY(-2px)
}

/* CONTACT */
.contact-sec {
    background: var(--blue);
    padding: 90px 5%;
    position: relative;
    overflow: hidden;
    color: #fff
}

.contact-sec::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(242, 101, 34, .1);
    filter: blur(80px)
}

.contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start
}

.contact-left .stag {
    color: #ff8a94
}

.contact-left .stag::before {
    background: #ff8a94
}

.contact-left .stitle {
    color: #fff
}

.contact-left .stitle .r {
    color: var(--red-light)
}

.contact-left .ssub {
    color: rgba(255, 255, 255, .6);
    max-width: 100%;
    margin-bottom: 30px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px
}

.ci {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 16px 18px;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none
}

.ci:hover {
    background: rgba(255, 255, 255, .13);
    transform: translateX(5px)
}

.ci-icon {
    font-size: 26px;
    flex-shrink: 0
}

.ci-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 2px
}

.ci-val {
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

.ci-wa {
    background: rgba(37, 211, 102, .15);
    border-color: rgba(37, 211, 102, .35) !important
}

.ci-wa:hover {
    background: rgba(37, 211, 102, .25) !important
}

.contact-form {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 28px
}

.cf-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px
}

.fg {
    margin-bottom: 13px
}

.fg label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 6px
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    outline: none;
    transition: border-color .25s;
    resize: vertical
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(255, 255, 255, .3)
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: #25D366;
    background: rgba(255, 255, 255, .12)
}

.fg select option {
    background: var(--blue);
    color: #fff
}

.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.send-wa-btn {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.send-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .45)
}

.wa-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    margin-top: 8px
}

/* AXA */
.axa-sec {
    background: var(--off);
    padding: 90px 5%;
    position: relative;
    overflow: hidden
}

.axa-sec::after {
    content: 'AXA';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 260px;
    letter-spacing: -8px;
    color: rgba(13, 13, 13, .04);
    pointer-events: none;
    line-height: 1
}

.axa-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px
}

.step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 28px
}

.step:last-child {
    padding-bottom: 0
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 44px;
    width: 2px;
    height: calc(100% - 44px);
    background: linear-gradient(to bottom, rgba(242, 101, 34, .3), rgba(242, 101, 34, .05))
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(242, 101, 34, .3);
    position: relative;
    z-index: 1
}

.step-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px
}

.step-body p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6
}

.steptag {
    display: inline-block;
    background: rgba(242, 101, 34, .08);
    border: 1px solid rgba(242, 101, 34, .2);
    color: var(--red);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px
}

.upload-card {
    background: #fff;
    border: 2px dashed rgba(13, 13, 13, .2);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all .35s;
    box-shadow: 0 4px 20px rgba(13, 13, 13, .06)
}

.upload-card:hover {
    background: var(--off);
    border-color: var(--red);
    transform: translateY(-3px)
}

.upload-icon {
    font-size: 44px;
    margin-bottom: 12px;
    animation: bounce 2s ease-in-out infinite
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.upload-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px
}

.upload-card p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 14px
}

.upload-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(242, 101, 34, .08);
    border: 1px solid rgba(242, 101, 34, .2);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px
}

.axa-form {
    background: #fff;
    border: 1px solid var(--lgrey);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(13, 13, 13, .06)
}

.axa-form h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.fg2 {
    margin-bottom: 12px
}

.fg2 label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 6px
}

.fg2 input,
.fg2 select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--lgrey);
    border-radius: 9px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    background: var(--off);
    outline: none;
    transition: border-color .25s;
  
}

.fg2 input:focus,
.fg2 select:focus {
    border-color: var(--green);
    background: #fff
}

.fg2 input::placeholder {
    color: var(--grey)
}

.frow2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.submit-axa {
    width: 100%;
    background: var(--green);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.submit-axa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, .4)
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px
}

.plan {
    background: #fff;
    border: 1px solid var(--lgrey);
    border-radius: 12px;
    padding: 18px;
    transition: all .3s;
    box-shadow: 0 2px 10px rgba(13, 13, 13, .04)
}

.plan:hover {
    transform: translateY(-3px);
    border-color: var(--blue-bright)
}

.plan.best {
    border-color: rgba(242, 101, 34, .3);
    background: linear-gradient(135deg, rgba(242, 101, 34, .04), rgba(26, 95, 212, .02))
}

.plan-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 3px
}

.plan-desc {
    font-size: 11px;
    color: var(--grey);
    margin-bottom: 10px;
    line-height: 1.4
}

.plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    color: var(--red)
}

.plan-price small {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--grey)
}

.plan-badge {
    font-size: 10px;
    font-weight: 700;
    background: var(--red);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase
}

/* REVIEWS */
.rev-sec {
    background: #fff
}

.rgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 50px
}

.rv {
    background: var(--off);
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--lgrey);
    transition: all .3s
}

.rv:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(13, 13, 13, .1);
    border-color: transparent
}

.rv-stars {
    color: var(--red);
    font-size: 16px;
    margin-bottom: 14px
}

.rv-text {
    font-size: 14px;
    color: #445;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px
}

.rv-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0
}

.avr {
    background: linear-gradient(135deg, var(--red), var(--red-dark))
}

.avb {
    background: linear-gradient(135deg, var(--blue-light), var(--blue))
}

.avm {
    background: linear-gradient(135deg, var(--red), var(--blue-light))
}

.av-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue)
}

.av-loc {
    font-size: 12px;
    color: var(--grey);
    margin-top: 1px
}

/* CTA */
.cta-band {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 45%, var(--blue-mid) 100%);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px
}

.cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1
}

.cta-band p {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 34px;
    position: relative;
    z-index: 1
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    position: relative;
    z-index: 1
}

.btnw {
    background: #fff;
    color: var(--red);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s
}

.btnw:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.btn-wa-cta {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.btn-wa-cta:hover {
    background: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, .4)
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 65px 5% 32px;
    color: rgba(255, 255, 255, .6)
}

.ft {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 46px;
    margin-bottom: 46px
}

.ft-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1
}

.ft-logo span {
    color: var(--red)
}

.ft-logo small {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    display: block;
    margin-top: 2px;
    margin-bottom: 14px
}

.ft-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 20px
}

.ft-socs {
    display: flex;
    gap: 10px
}

.ft-s {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    font-size: 14px;
    transition: all .25s
}

.ft-s:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-3px)
}

.ft-col h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ft-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s
}

.ft-col a:hover {
    color: var(--green)
}

.ft-bot {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.ft-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .28)
}

.ft-axa {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35)
}

.ft-axalogo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: -1px;
    color: var(--red)
}

/* WhatsApp float */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 300;
    background: var(--green);
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
    transition: all .3s;
    animation: waPulse 2.5s ease-in-out infinite
}

.wa-float:hover {
    transform: scale(1.12)
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .5)
    }

    50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, .8), 0 0 0 10px rgba(37, 211, 102, .1)
    }
}

/* ANIMATIONS */
.sr {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease
}

.sr.v {
    opacity: 1;
    transform: translateY(0)
}

.srl {
    opacity: 0;
    transform: translateX(-26px);
    transition: opacity .6s ease, transform .6s ease
}

.srl.v {
    opacity: 1;
    transform: translateX(0)
}

.srr {
    opacity: 0;
    transform: translateX(26px);
    transition: opacity .6s ease, transform .6s ease
}

.srr.v {
    opacity: 1;
    transform: translateX(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .svc-grid,
    .cgrid {
        grid-template-columns: 1fr 1fr
    }

    .axa-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .rgrid {
        grid-template-columns: 1fr 1fr
    }

    .ft {
        grid-template-columns: 1fr 1fr
    }

    .plans-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .modal-specs {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    nav {
        padding: 0 4%
    }

    .nav-links {
        display: none
    }

    .ham {
        display: flex
    }

    .mob-menu {
        display: flex
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 36px 4% 90px;
        text-align: center
    }

    .hero-text p {
        margin: 0 auto 28px
    }

    .hero-btns {
        justify-content: center
    }

    .hero-visual {
        display: none
    }

    section {
        padding: 60px 4%
    }

    .svc-grid,
    .cgrid {
        grid-template-columns: 1fr
    }

    .fleet-head {
        flex-direction: column;
        align-items: flex-start
    }

    .rgrid {
        grid-template-columns: 1fr
    }

    .ft {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .ft-bot {
        flex-direction: column;
        text-align: center
    }

    .plans-grid {
        grid-template-columns: 1fr
    }

    .frow,
    .frow2 {
        grid-template-columns: 1fr
    }

    .modal-body {
        padding: 18px
    }

    .modal-opts {
        grid-template-columns: 1fr
    }

    .modal-actions {
        flex-direction: column
    }

    .modal-call-btn {
        min-width: unset
    }
}

@media(max-width:480px) {
    .hero-stats {
        grid-template-columns: 1fr 1fr
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .tabs {
        gap: 4px
    }

    .cc-ft {
        flex-direction: column;
        align-items: flex-start
    }

    .cc-actions {
        width: 100%
    }

    .cc-btn-detail,
    .cc-btn-res {
        flex: 1;
        justify-content: center
    }

    .modal-specs {
        grid-template-columns: repeat(2, 1fr)
    }
}


/* ══════════════════════════════
   NOUVEAU HERO — RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
    .h-body {
        grid-template-columns: 1fr;
        padding: 40px 5% 60px;
        gap: 40px
    }
    .h-vline { display: none }
    .h-bignum { display: none }
    .h-right { justify-content: center }
    .h-frame { max-width: 100% }
    .hc-slide.active { height: 260px }
    .hero-stats { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 560px) {
    .h-title { gap: 0 }
    .h-t1 { font-size: 32px }
    .h-t2 { font-size: 60px }
    .h-ctas { flex-direction: column }
    .h-btn-primary, .h-btn-wa { width: 100%; justify-content: center }
    .h-services-row { flex-wrap: wrap; gap: 10px }
    .h-srv-sep { display: none }
    .h-trust { gap: 16px }
    .hc-slide.active { height: 200px }
    .h-car-tag, .h-nav { position: static; margin-top: 10px; display: inline-flex }
    .h-nav { justify-content: center; width: 100% }
}
/* ═══════════════════════════════════════════════════════════
   ✨ ANIMATIONS MAGNIFIQUES — KARIM AUTOMOBILE
═══════════════════════════════════════════════════════════ */

/* ── PARTICULES HERO (canvas overlay) ── */
#hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .45
}

/* ── CURSOR PERSONNALISÉ ── */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #F26522;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform .1s, background .2s;
    mix-blend-mode: difference
}


/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #F26522, #FF8340, #F26522);
    background-size: 200% 100%;
    animation: progress-shimmer 2s linear infinite;
    z-index: 99999;
    width: 0%;
    transition: width .1s linear;
    box-shadow: 0 0 10px rgba(242,101,34,.7)
}

@keyframes progress-shimmer {
    0% { background-position: 200% 0 }
    100% { background-position: -200% 0 }
}

/* ── HERO TITRE GLITCH EFFECT ── */
.h-t2 {
    position: relative;
}

.h-t2::before,
.h-t2::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    pointer-events: none
}

.h-t2::before {
    color: #FF8340;
    animation: glitch-1 6s infinite 2s;
    clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%)
}

.h-t2::after {
    color: rgba(255,255,255,.7);
    animation: glitch-2 6s infinite 2.1s;
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%)
}

@keyframes glitch-1 {
    0%,94%,100% { opacity: 0; transform: none }
    95% { opacity: 1; transform: translateX(-4px) }
    97% { opacity: 1; transform: translateX(4px) }
    99% { opacity: 0 }
}

@keyframes glitch-2 {
    0%,94%,100% { opacity: 0; transform: none }
    95% { opacity: 1; transform: translateX(4px) }
    97% { opacity: 1; transform: translateX(-3px) }
    99% { opacity: 0 }
}

/* ── HERO : LIGNE DE SCAN ── */
.h-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(242,101,34,.4), transparent);
    z-index: 3;
    pointer-events: none;
    animation: scanline 8s linear infinite;
    opacity: .5
}

@keyframes scanline {
    0%   { top: 0%; opacity: 0 }
    5%   { opacity: .5 }
    95%  { opacity: .5 }
    100% { top: 100%; opacity: 0 }
}

/* ── HERO : COMPTEURS ANIMÉS AVEC FLASH ── */
.hstat {
    position: relative;
    overflow: hidden;
    transition: transform .3s, background .3s
}

.hstat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242,101,34,.15), transparent);
    opacity: 0;
    transition: opacity .4s
}

.hstat:hover {
    transform: translateY(-4px);
    background: rgba(242,101,34,.12)
}

.hstat:hover::after { opacity: 1 }

.hstat-n {
    transition: color .3s
}

.hstat:hover .hstat-n {
    color: #FF8340;
    text-shadow: 0 0 20px rgba(242,101,34,.8)
}

/* ── NAV : LIEN HOVER STYLÉ ── */
.nav-links a {
    position: relative;
    overflow: hidden
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #F26522;
    transition: left .3s, right .3s;
    border-radius: 2px
}

.nav-links a:hover::before,
.nav-links a.active::before {
    left: 0;
    right: 0
}

/* ── SERVICES : CARDS HOVER SPECTACULAIRE ── */
.svc {
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s
}

.svc > * {
    position: relative;
    z-index: 2
}

.svc::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, rgba(242,101,34,.4), transparent 60%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .4s;
    z-index: 0;
    pointer-events: none
}

.svc:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,.25), 0 0 40px rgba(242,101,34,.12)
}

.svc:hover::after { opacity: 1 }

/* Icône service rebond */
.svc-ico {
    display: inline-block;
    transition: transform .4s cubic-bezier(.23,1,.32,1)
}

.svc:hover .svc-ico {
    transform: scale(1.3) rotate(-8deg)
}

/* ── VOITURE CARDS : REVEAL + TILT HOVER ── */
.cc {
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s;
    transform-style: preserve-3d;
    will-change: transform
}

.cc:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,.2), 0 0 30px rgba(242,101,34,.1)
}

.cc-img img {
    transition: transform .6s cubic-bezier(.23,1,.32,1)
}

.cc:hover .cc-img img {
    transform: scale(1.08)
}

/* Badge shimmer */
.ctag {
    position: relative;
    overflow: hidden
}

.ctag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    animation: ctag-shimmer 3s infinite
}

@keyframes ctag-shimmer {
    0%   { left: -100% }
    100% { left: 200% }
}

/* ── BOUTONS : RIPPLE + SHINE ── */
.h-btn-primary,
.btn-red,
.btn-wa-cta {
    position: relative;
    overflow: hidden
}

.h-btn-primary::before,
.btn-red::before,
.btn-wa-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s, opacity .6s
}

.h-btn-primary:active::before,
.btn-red:active::before,
.btn-wa-cta:active::before {
    width: 300px;
    height: 300px;
    opacity: 0
}

/* Shine effect continu sur le bouton principal */
.h-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    animation: btn-shine 3.5s infinite
}

@keyframes btn-shine {
    0%   { left: -100% }
    40%,100% { left: 160% }
}

/* ── SECTIONS : SCROLL REVEAL AMÉLIORÉ ── */
.sr, .srl, .srr {
    opacity: 0;
    transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1)
}

.sr  { transform: translateY(40px) }
.srl { transform: translateX(-50px) }
.srr { transform: translateX(50px) }

.sr.v, .srl.v, .srr.v {
    opacity: 1;
    transform: none
}

/* ── STAGGER REVEAL : sections titles ── */
.stitle {
    overflow: hidden;
    position: relative
}

/* ── FOOTER LINKS HOVER ── */
footer a {
    position: relative;
    transition: color .3s, transform .2s
}

footer a:hover {
    transform: translateX(4px)
}

/* ── CTA BAND : fond animé ── */
.cta-band {
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, rgba(242,101,34,.1), transparent, rgba(242,101,34,.1), transparent);
    animation: cta-rotate 12s linear infinite;
    pointer-events: none
}

@keyframes cta-rotate {
    from { transform: rotate(0deg) }
    to   { transform: rotate(360deg) }
}

/* ── REVIEWS : FLOAT + GLOW ── */
.rv {
    position: relative;
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s
}

.rv:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,.15), 0 0 30px rgba(242,101,34,.07)
}

.rv-stars {
    display: inline-block;
    animation: stars-glow 3s ease-in-out infinite
}

@keyframes stars-glow {
    0%,100% { text-shadow: none; color: #F26522 }
    50%      { text-shadow: 0 0 12px rgba(242,101,34,.8); color: #FF8340 }
}

/* ── WHATSAPP FLOAT BUTTON ── */
.wa-float {
    animation: wa-bounce 2.5s ease-in-out infinite;
    position: fixed;
    transition: transform .3s, box-shadow .3s
}

@keyframes wa-bounce {
    0%,100% { transform: translateY(0) scale(1) }
    50%      { transform: translateY(-8px) scale(1.06) }
}

.wa-float:hover {
    animation: none;
    transform: scale(1.15) !important;
    box-shadow: 0 16px 40px rgba(37,211,102,.5)
}

/* ── MODAL OPEN ANIMATION ── */
.modal-overlay {
    transition: opacity .35s
}

.modal-overlay.open .modal {
    animation: modal-pop .4s cubic-bezier(.34,1.56,.64,1) forwards
}

@keyframes modal-pop {
    from { opacity: 0; transform: scale(.88) translateY(30px) }
    to   { opacity: 1; transform: scale(1) translateY(0) }
}

/* ── LOADER AMÉLIORÉ ── */
#loader {
    transition: opacity .6s, visibility .6s
}

#loader.gone {
    opacity: 0;
    visibility: hidden
}

.ld-bar {
    animation: ld-fill 1.6s cubic-bezier(.4,0,.2,1) forwards
}

@keyframes ld-fill {
    from { width: 0% }
    to   { width: 100% }
}

/* ── SECTION ASSURANCE : PLAN CARDS ── */
.plan {
    transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .4s
}

.plan:hover {
    transform: translateY(-10px) scale(1.02)
}

/* ── INPUT FOCUS GLOW ── */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(242,101,34,.25), 0 0 20px rgba(242,101,34,.1);
    border-color: #F26522 !important;
    transition: box-shadow .3s, border-color .3s
}

/* ── AXA SECTION : deco ligne orange animée ── */
.axa-sec {
    position: relative;
    overflow: hidden
}

.axa-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F26522, transparent);
    animation: axa-line 4s ease-in-out infinite
}

@keyframes axa-line {
    0%   { left: -60% }
    100% { left: 160% }
}

/* ── SCROLL TO TOP : tab hover ── */
.tab {
    position: relative;
    overflow: hidden;
    transition: color .3s, background .3s, transform .2s
}

.tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #F26522;
    transition: left .3s, right .3s
}

.tab:hover::after,
.tab.on::after {
    left: 0;
    right: 0
}

.tab:hover { transform: translateY(-2px) }

/* ── H-FRAME : lueur pulsante ── */
.h-frame {
    animation: frame-glow 4s ease-in-out infinite
}

@keyframes frame-glow {
    0%,100% { box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 40px rgba(242,101,34,.1) }
    50%      { box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 70px rgba(242,101,34,.25) }
}

/* ── STAGGER pour .cc cards ── */
.cc:nth-child(1)  { transition-delay: .05s }
.cc:nth-child(2)  { transition-delay: .10s }
.cc:nth-child(3)  { transition-delay: .15s }
.cc:nth-child(4)  { transition-delay: .20s }
.cc:nth-child(5)  { transition-delay: .25s }
.cc:nth-child(6)  { transition-delay: .30s }
.cc:nth-child(7)  { transition-delay: .35s }
.cc:nth-child(8)  { transition-delay: .40s }
.cc:nth-child(9)  { transition-delay: .45s }
.cc:nth-child(10) { transition-delay: .50s }
.cc:nth-child(11) { transition-delay: .55s }
.cc:nth-child(12) { transition-delay: .60s }

/* ── TEXTE HIGHLIGHT SUR STITLE ── */
.stitle .r {
    position: relative;
    display: inline-block
}

.stitle .r::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #F26522, #FF8340);
    border-radius: 2px;
    transition: width 1s cubic-bezier(.23,1,.32,1) .3s
}

.v .stitle .r::after,
.stitle .r.underline-anim {
    width: 100%
}
/* ══════ GALLERY COUNT BADGE ══════ */
.gallery-count {
  position:absolute;bottom:10px;right:10px;background:rgba(0,0,0,.7);
  color:#fff;font-size:11px;font-weight:700;padding:4px 9px;border-radius:20px;
  backdrop-filter:blur(6px);letter-spacing:.3px;pointer-events:none;
}

/* ══════ GALLERY MODAL ══════ */
.gallery-modal {
  position:fixed;inset:0;background:#000;display:flex;flex-direction:column;
  z-index:10001;
}
.gallery-main {
  flex:1;position:relative;display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.gallery-main img {
  max-width:100%;max-height:100%;object-fit:contain;display:block;
}
.gal-nav {
  position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.15);
  color:#fff;border:none;font-size:22px;width:46px;height:46px;border-radius:50%;
  cursor:pointer;z-index:10;transition:.2s;backdrop-filter:blur(4px);
}
.gal-nav:hover { background:rgba(255,255,255,.3); }
.gal-prev { left:14px; }
.gal-next { right:14px; }
.gal-counter {
  position:absolute;bottom:14px;left:50%;transform:translateX(-50%);
  background:rgba(0,0,0,.6);color:#fff;font-size:12px;padding:4px 12px;border-radius:20px;
}
.gallery-thumbs {
  display:flex;gap:6px;padding:10px 14px;overflow-x:auto;background:#111;
  scrollbar-width:thin;
}
.gal-thumb {
  width:60px;height:45px;object-fit:cover;border-radius:6px;cursor:pointer;
  opacity:.55;border:2px solid transparent;transition:.2s;flex-shrink:0;
}
.gal-thumb.active, .gal-thumb:hover { opacity:1;border-color:#3b82f6; }
#galleryModal { z-index:10000; }
#galleryModal .gallery-modal { position:relative;inset:auto;width:100%;height:100vh; }

/* ══════ SOLD STATE ══════ */
.cc.sold {
  opacity:.55;filter:grayscale(60%);pointer-events:none;position:relative;
}
.cc.sold::after {
  content:"VENDU";position:absolute;inset:0;display:flex;align-items:center;
  justify-content:center;font-size:2.2rem;font-weight:900;color:#fff;
  background:rgba(0,0,0,.55);border-radius:inherit;letter-spacing:4px;
  border:3px solid rgba(255,255,255,.2);backdrop-filter:blur(2px);z-index:5;
}
/* ── LOGOS ASSUREURS — section assurance ── */
.insurer-logos {
    display: flex;
    gap: 12px;
    margin: 20px 0 28px;
    flex-wrap: wrap;
}
.insurer-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 12px 14px;
    flex: 1;
    min-width: 85px;
    transition: all .25s;
}
.insurer-logo-item:hover {
    background: rgba(242,101,34,0.1);
    border-color: rgba(242,101,34,0.4);
    transform: translateY(-3px);
}
.insurer-logo-item img {
    width: 72px;
    height: 46px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
}
.insurer-logo-item span {
    font-size: 10px;
    font-weight: 700;
    color: #aaa;
    text-align: center;
    letter-spacing: .3px;
    text-transform: uppercase;
}

/* ── LOGOS PARTENAIRES — footer ── */
.ft-partners {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
    align-items: center;
}
.ft-partners img {
    height: 34px;
    width: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    opacity: .85;
    transition: opacity .2s, transform .2s;
}
.ft-partners img:hover {
    opacity: 1;
    transform: scale(1.05);
}