/* ============================================
   PHOCEA CONCIERGERIE — Redesign 2026
   Mediterranean Luxury Concierge, Marseille
   ============================================ */

/* ---- Variables — Noir & Blanc Premium ---- */
:root {
    /* Accent or: champagne doré pour le touche premium */
    --gold:          #C9A96E;
    --gold-dark:     #A8894E;
    --gold-light:    #D9BF8E;
    --gold-pale:     #F5EDD8;

    /* Aliases terracotta → gold (compatibilité) */
    --terracotta:       var(--gold);
    --terracotta-dark:  var(--gold-dark);
    --terracotta-light: var(--gold-light);
    --terracotta-pale:  var(--gold-pale);

    --cream:   #FAFAFA;
    --sand:    #F3F3F3;
    --sand-2:  #E8E8E8;

    /* Nuances de gris — remplacent les tons bruns */
    --brown-900: #0A0A0A;
    --brown-800: #111111;
    --brown-700: #2A2A2A;
    --brown-600: #444444;
    --brown-500: #666666;
    --brown-400: #888888;
    --brown-300: #BBBBBB;
    --brown-200: #DEDEDE;
    --brown-100: #F0F0F0;

    --dark:  #0A0A0A;
    --dark-2: #111111;

    --white:   #FFFFFF;
    --success: #3A7D50;
    --error:   #BE3830;

    /* Semantic */
    --bg:           var(--cream);
    --bg-alt:       var(--sand);
    --text:         var(--brown-800);
    --text-mid:     var(--brown-600);
    --text-light:   var(--brown-500);
    --border:       var(--brown-200);
    --primary:      var(--brown-900);
    --primary-dark: var(--dark);
    --primary-light: var(--brown-700);
    --accent:       var(--gold);
    --accent-dark:  var(--gold-dark);
    --accent-light: var(--gold-light);

    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm:        0 2px 8px  rgba(0, 0, 0, 0.06);
    --shadow-md:        0 8px 28px rgba(0, 0, 0, 0.10);
    --shadow-lg:        0 16px 48px rgba(0, 0, 0, 0.13);
    --shadow-xl:        0 28px 72px rgba(0, 0, 0, 0.16);
    --shadow-gold:      0 8px 28px rgba(201, 169, 110, 0.28);

    --radius-xs:   4px;
    --radius-sm:   8px;
    --radius-md:   16px;
    --radius-lg:   24px;
    --radius-xl:   40px;
    --radius-full: 9999px;

    --transition:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; color: var(--primary); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.skip-link { position: absolute; top: -100px; left: 0; background: var(--accent); color: var(--white); padding: 12px 24px; z-index: 10000; font-size: 14px; }
.skip-link:focus { top: 0; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,110,0.40); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-secondary:hover { background: rgba(255,255,255,0.10); border-color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--primary); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--text-mid); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-large { padding: 18px 44px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- HEADER / NAVBAR ---- */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all var(--transition); padding: 8px 0; }
.header.scrolled { background: rgba(0,0,0,0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(0,0,0,0.35); padding: 0; }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 88px; }
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 65px; width: auto; object-fit: contain; transition: all var(--transition); filter: drop-shadow(0 2px 10px rgba(201,169,110,0.3)); }
.header.scrolled .logo { height: 50px; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.82); padding: 8px 14px; border-radius: var(--radius-full); transition: all var(--transition); letter-spacing: 0.3px; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.10); }
.nav-link.nav-cta { background: var(--accent); color: var(--white); font-weight: 700; margin-left: 10px; padding: 9px 22px; }
.nav-link.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-contact { display: flex; align-items: center; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 500; font-size: 13px; padding: 9px 18px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.20); transition: all var(--transition); }
.nav-phone:hover { border-color: var(--accent); color: var(--accent-light); }
.nav-phone i { font-size: 12px; color: var(--accent); }

.hsb-airbnb-card {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.50));
    transform: rotate(8deg);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), filter 0.35s ease;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hsb-airbnb-card { height: 52px; }
}
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
.hamburger { display: block; width: 26px; height: 2px; background: var(--white); position: relative; transition: all var(--transition); }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 26px; height: 2px; background: var(--white); transition: all var(--transition); }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }
.menu-toggle.active .hamburger { background: transparent; }
.menu-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: url('../images/hero-villa.jpg') center 20%/cover no-repeat;
    overflow: hidden;
}

/* Overlay — assure la lisibilité du texte sur l'image */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.45) 0%,
            rgba(0,0,0,0.50) 30%,
            rgba(0,0,0,0.58) 58%,
            rgba(0,0,0,0.88) 100%);
}

/* ── Carte Airbnb flottante ── */
.hero-airbnb-card {
    position: absolute;
    right: 6%;
    bottom: 130px;
    width: clamp(220px, 22vw, 330px);
    z-index: 4;
    transform: rotate(10deg);
    filter:
        drop-shadow(0 24px 48px rgba(0,0,0,0.55))
        drop-shadow(0 6px 14px rgba(0,0,0,0.35));
    animation: cardFloat 5s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
}

@keyframes cardFloat {
    0%,  100% { transform: rotate(10deg) translateY(0px);    }
    50%       { transform: rotate(10deg) translateY(-14px);  }
}

@media (max-width: 1024px) {
    .hero-airbnb-card { width: clamp(160px, 18vw, 240px); right: 3%; }
}

@media (max-width: 768px) {
    .hero-airbnb-card { display: none; }
}

/* Zone de contenu — centrée */
.hero-inner {
    position: relative; z-index: 3;
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 150px 0 44px;
}
.hero-content { text-align: center; max-width: 880px; width: 100%; }

/* Badge live */
.hero-badge-row {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 24px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: var(--radius-full);
    padding: 8px 20px;
}
.hero-pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80; flex-shrink: 0; position: relative;
}
.hero-pulse-dot::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: rgba(74,222,128,0.30);
    animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }
.hero-label {
    font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.90);
}

/* Nom de marque — petit, au-dessus du slogan */
.hero-brand-name {
    font-family: var(--font-heading);
    font-size: clamp(13px, 1.6vw, 17px);
    font-weight: 400; color: rgba(255,255,255,0.85);
    letter-spacing: 5px; text-transform: uppercase;
    margin-bottom: 14px;
}

/* Slogan principal — grande typographie italique */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(50px, 9.5vw, 108px);
    font-weight: 700; font-style: italic;
    color: var(--white); line-height: 1.15;
    letter-spacing: -2px; margin-bottom: 28px;
    padding-bottom: 0.08em;
}
.hero-title em { font-style: italic; color: var(--terracotta-light); }

/* Sous-texte bénéfices */
.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.92);
    line-height: 1.75; margin: 0 auto 42px;
    font-weight: 300; max-width: 560px;
}

/* Actions — 2 boutons centrés */
.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}

/* CTA primaire — corail chaud, pulsant */
.btn-main-cta {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--accent); color: var(--white);
    border-radius: var(--radius-full);
    padding: 18px 42px;
    font-family: var(--font-body); font-size: 13px;
    font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    transition: all var(--transition);
    box-shadow: 0 6px 30px rgba(201,169,110,0.55);
    text-decoration: none;
    animation: pulseCta 2.8s ease-in-out infinite;
}
.btn-main-cta:hover {
    background: var(--accent-dark); transform: translateY(-3px);
    box-shadow: 0 14px 44px rgba(201,169,110,0.65); animation: none;
}
@keyframes pulseCta {
    0%, 100% { box-shadow: 0 6px 30px rgba(201,169,110,0.55); }
    50% { box-shadow: 0 6px 30px rgba(201,169,110,0.55), 0 0 0 12px rgba(201,169,110,0.08); }
}

/* CTA secondaire — bordure blanche */
.btn-call-cta {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.08); color: var(--white);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.35);
    padding: 16px 38px;
    font-family: var(--font-body); font-size: 13px;
    font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    transition: all var(--transition); text-decoration: none;
    backdrop-filter: blur(8px);
}
.btn-call-cta:hover {
    background: rgba(255,255,255,0.16); border-color: var(--white);
    transform: translateY(-2px);
}

/* Ligne de réassurance */
.hero-urgency {
    font-size: 12px; color: rgba(255,255,255,0.75);
    font-weight: 500; letter-spacing: 0.5px; text-align: center;
}
.hero-urgency i { color: var(--accent-light); margin-right: 6px; }

/* Stats bar — bande glassmorphism en bas */
.hero-stats-bar {
    position: relative; z-index: 3;
    background: rgba(0,0,0,0.55);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 22px 0;
}
.hsb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hsb-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.hsb-numbers { display: flex; align-items: baseline; gap: 2px; }
.stat-number, .hsb-num {
    font-family: var(--font-heading); font-size: 32px;
    font-weight: 700; color: var(--white); line-height: 1;
}
.hsb-suf { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--accent-light); }
.hsb-label { font-size: 10px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.8px; font-weight: 600; }
.hsb-sep { width: 1px; height: 38px; background: rgba(255,255,255,0.10); flex-shrink: 0; }
.hsb-platform-icons { display: flex; align-items: center; gap: 12px; font-size: 22px; color: var(--accent-light); margin-bottom: 4px; }
.hsb-platform-icons i { transition: color var(--transition); }
.hsb-platform-icons i:hover { color: var(--white); }

/* ---- TRUST BAR ---- */
.trust-bar { background: #0A0A0A; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.trust-kpi { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust-kpi-num { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.trust-kpi-text { font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 1.5px; }
.trust-platforms { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-text { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 2px; }
.trust-logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.trust-logo-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 600; transition: color var(--transition); }
.trust-logo-item:hover { color: var(--gold-light); }
.trust-logo-item i, .trust-icon-text { font-size: 16px; color: var(--gold-light); }
.trust-icon-text { font-weight: 800; font-size: 15px; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 3.5px; color: var(--accent); margin-bottom: 14px; position: relative; padding: 0 24px; }
.section-tag::before, .section-tag::after { content: ''; position: absolute; top: 50%; width: 28px; height: 1px; background: var(--accent); opacity: 0.35; }
.section-tag::before { right: 100%; }
.section-tag::after  { left: 100%; }
.section-title { font-size: clamp(30px, 4vw, 46px); font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.section-subtitle { font-size: 16px; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* ---- SERVICES ---- */
.services { padding: 110px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--white); border-radius: var(--radius-md); padding: 42px 30px; text-align: center; transition: all var(--transition); position: relative; overflow: hidden; border: 1px solid var(--border); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: var(--white); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrapper { margin-bottom: 24px; }
.service-icon { width: 66px; height: 66px; margin: 0 auto; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--terracotta-pale); transition: all var(--transition); }
.service-icon i { font-size: 26px; color: var(--accent); transition: all var(--transition); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-icon i { color: var(--white); }
.service-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; color: var(--primary); }
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 22px; font-weight: 300; }
.service-link { font-size: 11px; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 1px; transition: all var(--transition); }
.service-link:hover { gap: 10px; color: var(--accent-dark); }
.service-badge { display: inline-block; font-size: 10px; font-weight: 700; color: var(--gold-dark); background: var(--gold-pale); border: 1px solid rgba(201,169,110,0.28); border-radius: var(--radius-full); padding: 3px 12px; letter-spacing: 0.5px; margin-bottom: 10px; }
.services-bottom-cta { text-align: center; margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border); }
.services-bottom-cta p { font-size: 15px; color: var(--text-mid); margin-bottom: 22px; font-weight: 300; }

/* ---- SLOGAN BANNER ---- */
/* ── Brochure download band ── */
.brochure-band {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1008 100%);
    padding: 48px 0;
    border-top: 1px solid rgba(201,169,110,0.20);
    border-bottom: 1px solid rgba(201,169,110,0.20);
}
.brochure-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 28px; flex-wrap: wrap; text-align: center;
}
.brochure-icon {
    width: 64px; height: 64px; flex-shrink: 0;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--gold-light);
}
.brochure-text h3 {
    font-family: var(--font-heading); font-size: 20px;
    font-weight: 600; color: var(--white); margin-bottom: 4px;
}
.brochure-text p { font-size: 13.5px; color: rgba(255,255,255,0.60); }
.brochure-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: var(--white);
    padding: 14px 32px; border-radius: var(--radius-full);
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    text-decoration: none; transition: all var(--transition);
    box-shadow: var(--shadow-gold); white-space: nowrap;
}
.brochure-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201,169,110,0.40);
}

.slogan-banner { position: relative; padding: 130px 0; background: url('../images/slogan-villa.jpg') center/cover no-repeat; overflow: hidden; }
.slogan-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.90) 0%, rgba(20,20,20,0.82) 50%, rgba(0,0,0,0.90) 100%); }
.slogan-banner-content { position: relative; text-align: center; z-index: 1; }
.slogan-banner-text { font-family: var(--font-heading); font-size: clamp(36px, 6vw, 68px); font-weight: 700; font-style: italic; color: var(--white); margin-bottom: 22px; text-shadow: 0 2px 40px rgba(0,0,0,0.3); }
.slogan-banner-sub { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 40px; line-height: 1.80; font-weight: 300; }

/* Revenue compare widget */
.revenue-compare { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 0 auto 40px; flex-wrap: wrap; }
.rc-item { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); padding: 22px 32px; text-align: center; min-width: 160px; position: relative; }
.rc-after { background: rgba(201,169,110,0.12); border-color: rgba(201,169,110,0.40); }
.rc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.50); margin-bottom: 8px; }
.rc-amount { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; }
.rc-amount span { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.60); }
.rc-sub { font-size: 11px; color: rgba(255,255,255,0.40); margin-top: 6px; }
.rc-badge { display: inline-block; background: var(--accent); color: var(--white); font-size: 13px; font-weight: 800; border-radius: var(--radius-full); padding: 4px 14px; margin-top: 10px; letter-spacing: 0.5px; }
.rc-arrow { font-size: 22px; color: rgba(255,255,255,0.35); }

/* ---- ABOUT ---- */
.about { padding: 110px 0; background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: start; }
.about-image { position: relative; }
.about-img-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; }
.about-real-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.about-img-wrapper:hover .about-real-img { transform: scale(1.04); }
.about-experience { position: absolute; bottom: -20px; right: -20px; background: var(--accent); color: var(--white); padding: 22px 26px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-gold); }
.exp-number { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 700; line-height: 1; }
.exp-text { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; opacity: 0.88; }
.about-content .section-tag { padding: 0; }
.about-content .section-tag::before, .about-content .section-tag::after { display: none; }
.about-content .section-title { text-align: left; font-size: clamp(24px, 3.2vw, 36px); }
.about-founder-badge { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; padding: 16px 20px; background: var(--white); border-radius: var(--radius-sm); border-left: 3px solid var(--accent); box-shadow: var(--shadow-sm); }
.founder-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-dark), var(--accent)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; flex-shrink: 0; }
.founder-info strong { display: block; font-size: 15px; font-weight: 700; color: var(--primary); font-family: var(--font-heading); }
.founder-info span { font-size: 12px; color: var(--text-light); font-weight: 500; }
.about-text { font-size: 14px; color: var(--text-mid); line-height: 1.88; margin-bottom: 14px; font-weight: 300; }
.about-quote { background: var(--white); border-radius: var(--radius-sm); padding: 20px 24px; margin: 18px 0; border-left: 3px solid var(--accent); box-shadow: var(--shadow-sm); }
.about-quote > i { color: var(--accent); font-size: 18px; margin-bottom: 10px; display: block; opacity: 0.6; }
.about-quote p { font-size: 14px; color: var(--text-mid); line-height: 1.82; font-style: italic; margin: 0; }
.about-list { margin: 12px 0 16px; display: flex; flex-direction: column; gap: 7px; }
.about-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); font-weight: 300; }
.about-list-item i { color: var(--accent); font-size: 6px; margin-top: 7px; flex-shrink: 0; }
.about-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 18px 0 26px; }
.about-trust-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--primary); transition: all var(--transition); }
.about-trust-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.about-trust-item i { color: var(--accent); font-size: 14px; flex-shrink: 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0 28px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--primary); }
.about-feature i { color: var(--accent); font-size: 16px; }

/* ---- GALLERY ---- */
.gallery { padding: 110px 0; background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 255px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.08) 50%, transparent 100%); display: flex; align-items: flex-end; padding: 22px 20px; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-heading); font-size: 17px; font-weight: 600; font-style: italic; color: var(--white); }

/* ---- ADVANTAGES ---- */
.avantages { padding: 110px 0; background: url('../images/marseille-port-avantages.jpg') center/cover no-repeat; position: relative; }
.avantages::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.72); z-index: 0; }
.avantages .container { position: relative; z-index: 1; }
.avantages .section-tag { color: var(--gold-light); }
.avantages .section-tag::before, .avantages .section-tag::after { background: var(--gold-light); }
.avantages .section-title { color: var(--white); }
.avantages .section-subtitle { color: rgba(255,255,255,0.70); }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.advantage-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-md); padding: 36px 24px; transition: all var(--transition); position: relative; overflow: hidden; }
.advantage-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); transform: scaleX(0); transition: transform 0.4s ease; }
.advantage-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(201,169,110,0.35); }
.advantage-card:hover::after { transform: scaleX(1); }
.advantage-number { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 8px; }
.advantage-stat { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--accent); margin-bottom: 14px; line-height: 1; }
.advantage-stat span { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); }
.advantage-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--white); }
.advantage-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.78; font-weight: 300; }

/* ---- PROCESS ---- */
.process { padding: 110px 0; background: var(--bg); }

/* ── Track en chemin zigzag ── */
.process-track {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

/* Chemin SVG décoratif */
.process-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

/* Animation de tracé sur les courbes */
.process-path-line {
    stroke-dashoffset: 400;
    animation: drawPath 2.5s ease forwards;
}
@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

/* Items positionnés en zigzag gauche / droite */
.ps-item {
    position: relative;
    width: 62%;
    z-index: 1;
    margin-bottom: 44px;
}
.ps-item:last-child { margin-bottom: 0; }
.ps-item--left  { margin-right: auto; margin-left: 0; }
.ps-item--right { margin-left: auto; margin-right: 0; }

/* ── Carte principale ── */
.process-card {
    width: 100%;
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

/* Variante sombre pour l'étape 3 */
.process-card--dark {
    background: linear-gradient(135deg, var(--brown-900) 0%, #1a1a1a 100%);
    border-color: transparent;
}
.process-card--dark .pc-num  { color: rgba(255,255,255,0.06); }
.process-card--dark .pc-sep  { background: rgba(255,255,255,0.10); }
.process-card--dark .pc-icon { background: rgba(201,169,110,0.18); color: var(--gold-light); }
.process-card--dark .pc-label { color: var(--gold); }
.process-card--dark h3 { color: var(--white); }
.process-card--dark p  { color: rgba(255,255,255,0.68); }
.process-card--dark .pc-tag { background: rgba(201,169,110,0.14); color: var(--gold-light); border-color: rgba(201,169,110,0.25); }
.process-card--dark .pc-tag i { color: var(--gold-light); }

/* Numéro décoratif géant */
.pc-num {
    font-family: var(--font-heading);
    font-size: clamp(64px, 9vw, 108px);
    font-weight: 700;
    color: var(--sand-2);
    line-height: 1;
    padding: 28px 20px 28px 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    letter-spacing: -4px;
    user-select: none;
    min-width: 120px;
    justify-content: center;
}

/* Séparateur vertical */
.pc-sep {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
    margin: 22px 0;
}

/* Contenu de la carte */
.pc-body {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 32px;
    flex: 1;
}

/* Icône arrondie */
.pc-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--gold-pale);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.28s ease;
}
.process-card:hover .pc-icon { transform: scale(1.10) rotate(-4deg); }

/* Texte */
.pc-text { flex: 1; }
.pc-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}
.pc-text h3 { font-size: 20px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.pc-text p  { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }

/* Badge info */
.pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-mid);
    background: var(--sand);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 5px 13px;
}
.pc-tag i { color: var(--accent); font-size: 10px; }

/* .pc-arrow supprimé — remplacé par chemin SVG */

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 110px 0; background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 36px; transition: all var(--transition); box-shadow: var(--shadow-sm); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 26px; font-family: var(--font-heading); font-size: 80px; color: #EEEEEE; line-height: 1; font-style: italic; pointer-events: none; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* Global rating header */
.testimonials-rating { text-align: center; margin-bottom: 44px; }
.tr-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 10px; }
.tr-stars i { color: var(--accent); font-size: 20px; }
.tr-score { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--primary); line-height: 1; }
.tr-score span { font-size: 20px; color: var(--text-light); font-weight: 400; }
.tr-count { font-size: 13px; color: var(--text-light); margin-top: 6px; }
/* Per-card revenue badge */
.testimonial-revenue { display: inline-block; font-size: 11px; font-weight: 700; color: var(--accent); background: var(--terracotta-pale); border-radius: var(--radius-full); padding: 3px 12px; margin-bottom: 14px; letter-spacing: 0.5px; }
.testimonial-stars { margin-bottom: 10px; }
.testimonial-stars i { color: var(--accent); font-size: 14px; }
.testimonial-card blockquote p { font-size: 14px; color: var(--text-mid); line-height: 1.88; font-style: italic; margin-bottom: 24px; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-dark), var(--accent)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 600; font-size: 13px; flex-shrink: 0; }
.author-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--primary); }
.author-info span { font-size: 12px; color: var(--text-light); }

/* ---- FAQ ---- */
.faq { padding: 110px 0; background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--brown-300); border-radius: var(--radius-md); margin-bottom: 10px; background: var(--white); overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: var(--accent); }
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-md); }
.faq-question { padding: 22px 26px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 16px; color: var(--brown-900); transition: all var(--transition); list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question span { flex: 1; padding-right: 16px; }
.faq-question i { color: var(--accent); font-size: 13px; transition: transform var(--transition); }
.faq-item[open] .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 26px 22px; }
.faq-answer p { font-size: 14px; color: var(--primary-light); line-height: 1.85; font-weight: 400; }

/* ---- REVENUE ESTIMATOR ---- */
.revenue-estimator { padding: 110px 0; background: var(--bg); }
.rev-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.rev-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 22px; text-align: center; transition: all var(--transition); position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.rev-card--highlight { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,169,110,0.18); }
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rev-popular { position: absolute; top: 0; left: 0; right: 0; background: var(--accent); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 0; }
.rev-icon { font-size: 28px; color: var(--accent); margin-bottom: 14px; margin-top: 8px; }
.rev-type { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; }
.rev-range { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.rev-range span { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--text-light); }
.rev-compare { font-size: 12px; color: var(--text-light); margin-bottom: 12px; line-height: 1.5; }
.rev-gain { display: inline-block; background: linear-gradient(135deg, var(--accent-dark), var(--accent)); color: var(--white); font-size: 13px; font-weight: 800; border-radius: var(--radius-full); padding: 4px 14px; }
.rev-disclaimer { text-align: center; font-size: 12px; color: var(--text-light); max-width: 640px; margin: 0 auto 36px; line-height: 1.7; }
.rev-cta { text-align: center; }

/* ---- CTA BANNER ---- */
.cta-banner { padding: 90px 0; background: url('../images/vue-generale-de-marseille_1920x600.jpg') center/cover no-repeat; position: relative; overflow: hidden; cursor: none; }

@media (max-width: 768px) {
    .cta-banner { cursor: auto; }
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.78) 100%); }
.cta-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,0.03), transparent 70%); }
.cta-content { position: relative; text-align: center; z-index: 1; }
.cta-urgency-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.30); border-radius: var(--radius-full); padding: 6px 18px; font-size: 12px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.5px; margin-bottom: 22px; }
.cta-urgency-badge i { color: var(--gold-light); }
.cta-content h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; }
.cta-content h2 em { font-style: normal; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.38); text-underline-offset: 5px; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.86); margin-bottom: 28px; font-weight: 300; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 24px; }
.cta-phone-link { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.cta-phone-link:hover { color: var(--white); }
.cta-phone-link i { font-size: 13px; }
.cta-reassurance { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-reassurance span { font-size: 12px; color: rgba(255,255,255,0.68); display: flex; align-items: center; gap: 6px; font-weight: 500; }
.cta-reassurance i { color: rgba(255,255,255,0.85); font-size: 11px; }

/* ---- CONTACT ---- */
.contact { padding: 110px 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
/* Promise box */
.contact-promise { background: var(--white); border-radius: var(--radius-md); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--accent); }
.contact-promise h3 { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; display: flex; align-items: center; gap: 8px; }
.contact-promise h3 i { color: var(--accent); }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.promise-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.promise-list li i { color: var(--success); font-size: 13px; flex-shrink: 0; margin-top: 2px; }
/* Mini testimonial */
.contact-mini-testimonial { background: var(--sand); border-radius: var(--radius-md); padding: 22px 24px; margin-bottom: 20px; }
.cmt-stars i { color: var(--accent); font-size: 12px; }
.cmt-text { font-size: 13px; color: var(--text); font-style: italic; line-height: 1.7; margin: 10px 0 8px; font-weight: 300; }
.cmt-author { font-size: 11px; color: var(--text-light); font-weight: 600; letter-spacing: 0.5px; }
/* Contact card */
.contact-direct-link { font-size: 15px; font-weight: 600; color: var(--accent) !important; }
.contact-item small { display: block; font-size: 11px; color: var(--text-light); margin-top: 3px; }
.contact-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; }
.contact-item:not(:last-child) { border-bottom: 1px solid var(--border); }
.contact-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--terracotta-pale); flex-shrink: 0; }
.contact-icon i { color: var(--accent); font-size: 17px; }
.contact-item h3 { font-family: var(--font-body); font-size: 10px; font-weight: 700; color: var(--primary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.8px; }
.contact-item a, .contact-item p, .contact-item address { font-size: 14px; color: var(--text-mid); font-style: normal; line-height: 1.6; }
.contact-item a:hover { color: var(--accent); }
/* Form header trust */
.form-header-trust { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.form-header-trust span { font-size: 11px; color: var(--text-light); display: flex; align-items: center; gap: 5px; font-weight: 600; }
.form-header-trust i { color: var(--accent); font-size: 11px; }
.contact-social { display: flex; gap: 10px; }
.social-link { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--sand); color: var(--text-mid); font-size: 17px; transition: all var(--transition); border: 1px solid var(--border); }
.social-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrapper { background: var(--white); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-md); }

/* Address autocomplete */
.address-autocomplete-wrapper { position: relative; }
.address-suggestions {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 220px; overflow-y: auto;
}
.address-suggestion-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; cursor: pointer;
    font-size: 13.5px; color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.address-suggestion-item:last-child { border-bottom: none; }
.address-suggestion-item:hover { background: var(--terracotta-pale); }
.address-suggestion-item i { color: var(--accent); font-size: 13px; flex-shrink: 0; }
.form-header { text-align: center; margin-bottom: 26px; }
.form-header-icon { width: 52px; height: 52px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--terracotta-pale); font-size: 21px; color: var(--accent); }
.form-header h3 { font-family: var(--font-heading); font-size: 21px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.form-header p { font-size: 13px; color: var(--text-light); }
.form-progress { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 28px; padding: 0 10px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.progress-dot { width: 33px; height: 33px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; background: var(--sand); color: var(--text-light); transition: all var(--transition); border: 2px solid transparent; }
.progress-step.active .progress-dot { background: var(--accent); color: var(--white); box-shadow: var(--shadow-gold); }
.progress-step.completed .progress-dot { background: var(--success); color: var(--white); }
.progress-step span { font-size: 10px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; transition: color var(--transition); }
.progress-step.active span { color: var(--accent); }
.progress-step.completed span { color: var(--success); }
.progress-line { flex: 1; height: 2px; background: var(--border); margin: 0 8px; margin-bottom: 20px; transition: background var(--transition); min-width: 40px; }
.progress-line.active { background: var(--accent); }
.form-step { display: none; animation: stepIn 0.4s ease; }
.form-step.active { display: block; }
@keyframes stepIn { 0% { opacity: 0; transform: translateX(14px); } 100% { opacity: 1; transform: translateX(0); } }
.step-title { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.step-title i { color: var(--accent); font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--primary); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.required { color: var(--error); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--text); transition: all var(--transition); background: var(--cream); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.12); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23444444'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; background-color: var(--cream); }
.form-nav-buttons { display: flex; gap: 12px; margin-top: 8px; }
.form-nav-buttons .btn { flex: 1; justify-content: center; }
.btn-submit-final { flex: 2 !important; font-size: 13px; padding: 15px 24px; animation: pulseCtaGold 2.5s ease-in-out infinite; }
@keyframes pulseCtaGold {
    0%, 100% { box-shadow: 0 6px 30px rgba(201,169,110,0.50); }
    50% { box-shadow: 0 6px 30px rgba(201,169,110,0.50), 0 0 0 10px rgba(201,169,110,0.08); }
}
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-size: 13px; color: var(--text-mid); transition: all var(--transition); user-select: none; background: var(--cream); }
.checkbox-label:hover { border-color: var(--gold); background: var(--gold-pale); }
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark { width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); flex-shrink: 0; position: relative; }
.checkbox-label input[type="checkbox"]:checked + .checkmark { background: var(--accent); border-color: var(--accent); }
.checkbox-label input[type="checkbox"]:checked + .checkmark::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 9px; color: var(--white); }
.checkbox-label i { font-size: 13px; color: var(--text-light); width: 18px; text-align: center; transition: color var(--transition); }
.checkbox-label input[type="checkbox"]:checked ~ i { color: var(--accent); }
.form-inline-group { display: flex; gap: 14px; align-items: center; }
.form-inline-group select { flex: 1; }
.form-inline-group .checkbox-label { flex-shrink: 0; white-space: nowrap; }
.form-disclaimer { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-disclaimer i { color: var(--success); font-size: 12px; }
.input-error { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(190,56,48,0.12) !important; }
.field-error { display: block; font-size: 12px; color: var(--error); margin-top: 4px; font-weight: 500; }
.form-success { text-align: center; padding: 40px 20px; animation: stepIn 0.5s ease; }
.success-icon { font-size: 56px; color: var(--success); margin-bottom: 20px; }
.form-success h3 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 14px; }
.form-success p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 10px; }
.success-next { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.success-next p { font-size: 11px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.success-next .btn { min-width: 240px; justify-content: center; }

/* ---- FOOTER ---- */
.footer { background: #0A0A0A; color: rgba(255,255,255,0.62); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; object-fit: contain; }
.footer-tagline { font-family: var(--font-heading); font-size: 18px; font-style: italic; color: var(--accent-light); margin-bottom: 12px; }
.footer-desc { font-size: 13px; line-height: 1.78; color: rgba(255,255,255,0.42); }
.footer-links h3, .footer-contact h3 { font-family: var(--font-body); font-size: 11px; font-weight: 700; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.footer-links ul li, .footer-contact ul li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { font-size: 13px; color: rgba(255,255,255,0.42); transition: all var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-contact ul li { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.footer-contact ul li i { color: var(--accent); font-size: 13px; width: 15px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); color: rgba(255,255,255,0.42); font-size: 14px; transition: all var(--transition); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 12px; color: rgba(255,255,255,0.32); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,0.32); font-size: 12px; }
.footer-legal a:hover { color: var(--accent-light); }

/* ---- WHATSAPP ---- */
.whatsapp-float { position: fixed; bottom: 88px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: all var(--transition); animation: waPulse 2.5s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); } }

/* ---- STICKY CTA ---- */
.sticky-cta { position: fixed; bottom: -100px; left: 0; right: 0; z-index: 998; background: rgba(0,0,0,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(201,169,110,0.28); padding: 12px 0; transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 -4px 30px rgba(0,0,0,0.3); }
.sticky-cta.visible { bottom: 0; }
.sticky-cta-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-cta-text { display: flex; flex-direction: column; }
.sticky-cta-text strong { color: var(--white); font-size: 15px; font-weight: 700; }
.sticky-cta-text span { color: var(--accent-light); font-size: 12px; font-weight: 500; }
.sticky-cta-buttons { display: flex; gap: 10px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-call { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-call:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-1px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 52%; margin: 0 auto; }
    .rev-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-inner { gap: 18px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .pc-num { font-size: 72px; min-width: 100px; padding: 20px 16px 20px 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: #0A0A0A; flex-direction: column; align-items: flex-start; padding: 100px 28px 30px; transition: right var(--transition); box-shadow: -10px 0 30px rgba(0,0,0,0.3); gap: 6px; }
    .nav-menu.active { right: 0; }
    .nav-link { width: 100%; padding: 12px 16px; font-size: 15px; }
    .nav-link.nav-cta { margin-left: 0; margin-top: 12px; justify-content: center; display: flex; }
    .menu-toggle { display: block; }
    .nav-contact { display: none; }
    .hero-inner { padding: 130px 0 20px; }
    .hero-content { max-width: 100%; }
    .hero-title { letter-spacing: -1px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 14px; }
    .btn-main-cta, .btn-call-cta { width: 100%; max-width: 340px; justify-content: center; }
    .hsb-inner { gap: 8px; }
    .hsb-sep { display: none; }
    .stat-number, .hsb-num { font-size: 24px; }
    .hsb-suf { font-size: 15px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-wrapper { aspect-ratio: 16/9; }
    .about-experience { right: 16px; }
    .about-trust-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    /* Chemin : colonne unique sur mobile */
    .ps-item { width: 100%; margin-left: 0 !important; margin-right: 0 !important; }
    .process-path-svg { display: none; }
    .pc-num { font-size: 52px; min-width: 80px; padding: 16px 12px 16px 18px; letter-spacing: -2px; }
    .pc-body { flex-direction: column; align-items: flex-start; padding: 20px; gap: 14px; }
    .pc-icon { width: 46px; height: 46px; font-size: 18px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 26px; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr; }
    .form-inline-group { flex-direction: column; align-items: stretch; }
    .form-nav-buttons { flex-direction: column; }
    .form-nav-buttons .btn { width: 100%; }
    .progress-dot { width: 28px; height: 28px; font-size: 11px; }
    .progress-step span { font-size: 9px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item--wide { grid-column: span 1; }
    .sticky-cta-inner { flex-direction: column; text-align: center; gap: 10px; }
    .sticky-cta-buttons { width: 100%; }
    .sticky-cta-buttons .btn-sm { flex: 1; justify-content: center; }
    .rev-grid { grid-template-columns: repeat(2, 1fr); }
    .revenue-compare { gap: 12px; }
    .rc-item { padding: 18px 20px; }
    .cta-reassurance { gap: 14px; }
    .trust-inner { flex-direction: row; justify-content: center; gap: 16px; }
    .trust-divider { height: 20px; }
}

@media (max-width: 480px) {
    .hero-brand-name { letter-spacing: 3px; }
    .hero-title { letter-spacing: -1px; }
    .hero-sub { font-size: 15px; }
    .hero-stats-bar { padding: 14px 0; }
    .stat-number, .hsb-num { font-size: 22px; }
    .hsb-suf { font-size: 14px; }
    .hsb-label { font-size: 9px; letter-spacing: 1px; }
    .trust-inner { flex-wrap: wrap; gap: 10px; }
    .trust-divider { display: none; }
    .rev-grid { grid-template-columns: 1fr; }
    .revenue-compare { flex-direction: column; align-items: center; }
    .rc-arrow { transform: rotate(90deg); }
    .cta-reassurance { flex-direction: column; gap: 8px; }
    .section-header { margin-bottom: 44px; }
    .services, .avantages, .about, .process, .testimonials, .faq, .contact, .gallery, .revenue-estimator { padding: 80px 0; }
    .contact-form-wrapper { padding: 18px; }
    .about-features { grid-template-columns: 1fr; }
}

