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

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --accent: #f97316;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04);
    --shadow-lg: 0 4px 20px rgba(0,0,0,.1), 0 8px 32px rgba(0,0,0,.06);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { color: var(--dark); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: 1.2rem; }
h1 strong, h2 strong { color: var(--primary); font-weight: 800; }
h2 strong.orange { color: #f97316; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: .95rem;
    transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1), background .3s ease, border-color .3s ease, color .3s ease;
    cursor: pointer; border: 2px solid transparent; text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); gap: 8px; }
.btn-outline::after { content: '\2192'; display: inline-block; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
.btn-outline:hover::after { transform: translateX(4px); }
.btn-full { width: 100%; }
.btn-nav { padding: 8px 20px; font-size: .875rem; background:#f97316; border-color:transparent; color:#fff !important; border-radius:50px; }
.btn-nav:hover { background:#ea580c; border-color:transparent; color:#fff !important; box-shadow:0 4px 16px rgba(249,115,22,.35); transform:translateY(-1px); }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 8px rgba(0,0,0,.06); background-image:linear-gradient(90deg, #2563eb, #f97316); background-size:100% 2px; background-repeat:no-repeat; background-position:top; }
.site-header.hidden { transform: translateY(-100%); }

.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 16px 24px;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 56px; width: auto; transition: height .3s ease; }
.site-header.scrolled .logo-img { height: 36px; }
.logo-mark {
    width: 36px; height: 36px; background: var(--primary); color: #fff;
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
}
.logo-text { font-weight: 700; font-size: 1.2rem; color: var(--dark); }

.nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--text); font-weight: 500; font-size: .9rem;
    text-decoration: none; transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
    content:''; display:block; height:2px; margin-top:2px;
    background:linear-gradient(90deg, #2563eb, #f97316); border-radius:2px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-toggle::after { content: ' \25BE'; font-size: .85em; transition: transform .3s ease; }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); color: var(--primary); }
.nav-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 12px); left: -16px;
    background: var(--bg); border: none; border-radius: var(--radius-sm);
    box-shadow: 0 8px 30px rgba(0,0,0,.12); min-width: 240px; padding: 8px 0;
    list-style: none; z-index: 100;
}
.nav-dropdown-menu::before {
    content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
    display: block; padding: 10px 20px; font-size: .85rem; color: var(--text);
    transition: all var(--transition);
}
.nav-dropdown-menu li a:hover { background: var(--bg-alt); color: var(--primary); }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span {
    width: 24px; height: 2px; background: var(--dark);
    border-radius: 2px; transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
    transform-origin: center;
}
/* Animated hamburger → X */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #fff7ed 100%);
    position: relative; overflow: hidden;
}
.hero-canvas {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-badge {
    display: inline-block; padding: 6px 16px;
    background: linear-gradient(135deg, #eff6ff, #fff7ed);
    color: var(--primary-dark); font-weight: 600; font-size: .8rem;
    border-radius: 100px; margin-bottom: 20px; letter-spacing: .02em;
    text-transform: uppercase;
}
.hero-sub { font-size: 1.1rem; color: var(--text-light); margin-top: 20px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; min-height: 52px; }
.hero-proof { display: flex; gap: 40px; margin-top: 40px; }
.proof-item { display: flex; flex-direction: column; }
.proof-item strong { font-size: 1.5rem; color: #f97316; font-weight: 800; }
.proof-item span { font-size: .8rem; color: var(--text-light); }

/* Hero Mockup */
.hero-visual { position: relative; }
.hero-mockup {
    position: relative; z-index: 1;
    background: var(--bg); border: none;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.mockup-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: var(--bg-alt);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }
.mockup-url { margin-left: 12px; font-family: var(--mono); font-size: .75rem; color: var(--text-light); }
.mockup-body { padding: 24px; }
.mockup-line { height: 12px; border-radius: 6px; background: var(--bg-alt); margin-bottom: 12px; }
.w80 { width: 80%; }
.w60 { width: 60%; }
.w40 { width: 40%; }
.mockup-block { height: 80px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--primary-light), #c7d2fe); margin-bottom: 16px; }
.mockup-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.mockup-card { height: 50px; border-radius: var(--radius-sm); background: var(--bg-alt); }

.floating-badge {
    position: absolute; z-index: 2; padding: 12px 16px; background: #fff;
    border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; align-items: center;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}
.badge-perf { top: 20px; right: -20px; }
.badge-seo { bottom: 30px; left: -20px; animation-delay: 1.5s; }
.badge-num { font-size: 1.4rem; font-weight: 800; color: #f97316; }
.badge-label { font-size: .7rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; font-size: .8rem; font-weight: 600;
    color: var(--primary); text-transform: uppercase;
    letter-spacing: .06em; margin-bottom: 12px;
}
.section-desc { color: var(--text-light); margin-top: 16px; font-size: 1.05rem; }

/* ===== CONSTELLATION BACKGROUND PATTERN ===== */
.constellation-bg {
    position: relative;
}
.constellation-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle, rgba(37,99,235,.07) 1px, transparent 1px),
        radial-gradient(circle, rgba(249,115,22,.05) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.constellation-bg > * { position: relative; z-index: 1; }

/* ===== SERVICES ===== */
.services { padding: 70px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    padding: 32px; border: none;
    border-radius: var(--radius);
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1), background .35s ease;
    background: var(--bg); box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-6px); }
.service-card:hover .service-icon { transform: scale(1.15); }
.service-icon { color: #f97316; margin-bottom: 16px; font-size: 1.6rem; transition: transform .35s cubic-bezier(.4,0,.2,1); }

/* Service card color tints */
.service-card:nth-child(1) { background: linear-gradient(180deg, #eff6ff 0%, var(--bg) 40%); }
.service-card:nth-child(2) { background: linear-gradient(180deg, #fff7ed 0%, var(--bg) 40%); }
.service-card:nth-child(3) { background: linear-gradient(180deg, #f0fdf4 0%, var(--bg) 40%); }
.service-card:nth-child(4) { background: linear-gradient(180deg, #fdf2f8 0%, var(--bg) 40%); }
.service-card:nth-child(5) { background: linear-gradient(180deg, #f5f3ff 0%, var(--bg) 40%); }
.service-card:nth-child(6) { background: linear-gradient(180deg, #fefce8 0%, var(--bg) 40%); }
.service-card:nth-child(1) .service-icon { color: #2563eb; }
.service-card:nth-child(2) .service-icon { color: #f97316; }
.service-card:nth-child(3) .service-icon { color: #16a34a; }
.service-card:nth-child(4) .service-icon { color: #ec4899; }
.service-card:nth-child(5) .service-icon { color: #7c3aed; }
.service-card:nth-child(6) .service-icon { color: #eab308; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .9rem; color: var(--text-light); line-height: 1.7; }

.service-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
    list-style: none;
}
.service-tags li {
    padding: 4px 12px; background: var(--bg-alt); border-radius: 100px;
    font-size: .75rem; font-weight: 500; color: var(--text-light);
}
.service-tags li:nth-child(odd) { background:#fff7ed; color:#c2410c; }
.service-tags li:nth-child(even) { background:#eff6ff; color:#2563eb; }

/* ===== REALISATIONS ===== */
.realisations { padding: 70px 0; background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #fff7ed 100%); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.portfolio-card {
    background: var(--bg); border-radius: var(--radius);
    overflow: hidden; border: none;
    transition: all .4s cubic-bezier(.25,.46,.45,.94);
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.portfolio-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.12); transform: translateY(-8px); }
.portfolio-card:hover .portfolio-img { background-size: 120%; }
.portfolio-card:hover .portfolio-mockup { transform: scale(1.03); }
.portfolio-card:hover .portfolio-site-link { opacity: 1; transform: translateY(0); }

.portfolio-img {
    height: 260px; display: flex; align-items: flex-end;
    padding: 16px; position: relative; overflow: hidden;
    background-size: 100%; transition: background-size .6s ease;
}
.portfolio-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.5));
    pointer-events: none;
}
.portfolio-type {
    padding: 4px 12px; background: rgba(255,255,255,.95);
    border-radius: 100px; font-size: .75rem; font-weight: 600;
    color: var(--dark); position: relative; z-index: 2;
}
.portfolio-site-link {
    position: absolute; top: 16px; right: 16px; z-index: 2;
    padding: 6px 14px; background: rgba(255,255,255,.95);
    border-radius: 100px; font-size: .75rem; font-weight: 600;
    color: var(--primary); text-decoration: none;
    opacity: 0; transform: translateY(-8px);
    transition: opacity .35s cubic-bezier(.4,0,.2,1), transform .35s cubic-bezier(.4,0,.2,1), background .3s ease, color .3s ease;
}
.portfolio-site-link:hover { background: #f97316; color: #fff; }

.portfolio-mockup {
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    width: 80%; background: rgba(255,255,255,.95); border-radius: 8px;
    overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.15);
    transition: transform .4s ease;
}
.portfolio-mockup-bar {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 12px; background: #f1f5f9; border-bottom: 1px solid #e2e8f0;
}
.portfolio-mockup-bar .dot { width: 7px; height: 7px; }
.portfolio-mockup-bar .mockup-url { font-size: .65rem; margin-left: 8px; }
.portfolio-mockup-body { padding: 12px; }
.portfolio-mockup-body .pm-line {
    height: 6px; border-radius: 3px; margin-bottom: 6px;
}
.portfolio-mockup-body .pm-block {
    height: 40px; border-radius: 4px; margin-bottom: 8px;
}
.portfolio-mockup-body .pm-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 8px;
}
.portfolio-mockup-body .pm-cell {
    height: 24px; border-radius: 3px;
}

.portfolio-info { padding: 24px; }
.portfolio-info h3 { margin-bottom: 8px; }
.portfolio-info p { font-size: .9rem; color: var(--text-light); }
.portfolio-tags {
    display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap;
}
.portfolio-tags span {
    font-size: .75rem; font-weight: 600; color: var(--primary);
    padding: 3px 10px; background: var(--primary-light);
    border-radius: 100px;
}
.portfolio-tags span:nth-child(2) { background:#fff7ed; color:#f97316; }
.portfolio-tags span:nth-child(3) { background:#f0fdf4; color:#16a34a; }
.portfolio-metrics {
    display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap;
}
.portfolio-metrics span {
    font-size: .8rem; font-weight: 600; color: var(--primary);
    padding: 4px 0; border-bottom: 2px solid var(--primary-light);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.portfolio-mockup-body .pm-shimmer {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2.5s ease-in-out infinite;
}

/* ===== METHODE ===== */
.methode { padding: 70px 0; background: var(--bg); }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.step-card {
    padding: 28px; background: var(--bg-alt);
    border-radius: var(--radius); position: relative;
    border: none;
    transition: all var(--transition);
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.step-card:hover { box-shadow: 0 4px 16px rgba(37,99,235,.1); }
.step-num {
    font-family: var(--mono); font-size: 2rem; font-weight: 700;
    color: var(--primary-light); margin-bottom: 12px;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.step-card p { font-size: .85rem; color: var(--text-light); }

/* ===== TARIFS ===== */
.tarifs { padding: 70px 0; background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #fff7ed 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card {
    background: var(--bg); border: none;
    border-radius: var(--radius); padding: 32px;
    position: relative; transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.pricing-featured {
    box-shadow: var(--shadow-lg); background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 30%);
    transform: scale(1.04);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 20px; background: linear-gradient(135deg, #f97316, #ef4444); color: #fff;
    font-size: .75rem; font-weight: 700; border-radius: 100px;
    text-transform: uppercase; letter-spacing: .04em;
    box-shadow: 0 4px 12px rgba(249,115,22,.3);
}
.pricing-header { margin-bottom: 24px; }
.pricing-header h3 { margin-bottom: 6px; }
.pricing-desc { font-size: .85rem; color: var(--text-light); }

.pricing-price { margin-bottom: 24px; }
.price-from { display: block; font-size: .8rem; color: var(--text-light); }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--dark); }
.price-ht { font-size: .9rem; color: var(--text-light); }

.pricing-features {
    list-style: none; margin-bottom: 28px;
    display: flex; flex-direction: column; gap: 10px;
}
.pricing-features li {
    font-size: .9rem; padding-left: 24px; position: relative;
    color: var(--text);
}
.pricing-features li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--primary-light);
    border: 2px solid var(--primary);
}

/* ===== LOCALISATION ===== */
.localisation { padding: 70px 0; background: var(--bg); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.local-content p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }
.local-content strong { color: var(--dark); }
.local-address { margin-top: 24px; font-style: normal; padding: 24px; background: var(--bg-alt); border-radius: var(--radius-sm); }
.local-address p { margin-bottom: 4px; font-size: .95rem; }

.map-placeholder {
    height: 100%; min-height: 320px;
    background: var(--bg-alt); border: none;
    border-radius: var(--radius); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px;
    color: var(--text-light);
}
.map-placeholder p { text-align: center; font-size: .9rem; }

/* ===== LOCALISATION V2 ===== */
.localisation-v2 {
    padding: 80px 0; background: var(--bg);
    position: relative;
}
/* Smooth gradient transition into dark card */
.localisation-v2::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    pointer-events: none;
}
.loc-card {
    display: grid; grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.loc-map-visual {
    position: relative; padding: 40px;
    display: flex; align-items: center; justify-content: center;
}
.loc-constellation { width: 100%; max-width: 540px; height: auto; }
.loc-pin-badge {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
    border-radius: 100px; border: 1px solid rgba(255,255,255,.08);
}
.loc-pin-badge span { font-size: .75rem; color: #94a3b8; font-weight: 500; }
.loc-content { padding: 48px 48px 48px 24px; display: flex; flex-direction: column; justify-content: center; }
.loc-stats {
    display: flex; gap: 32px; margin-bottom: 24px;
    padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.loc-stat { display: flex; flex-direction: column; }
.loc-stat strong { font-size: 1.5rem; font-weight: 800; color: #f97316; }
.loc-stat span { font-size: .75rem; color: #64748b; font-weight: 500; text-transform: uppercase; letter-spacing: .04em; }
.loc-cities {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.loc-cities span {
    padding: 5px 14px; border-radius: 100px;
    font-size: .75rem; font-weight: 600;
    background: rgba(255,255,255,.06); color: #cbd5e1;
    border: 1px solid rgba(255,255,255,.06);
    transition: all .3s ease;
}
.loc-cities span:hover { background: rgba(249,115,22,.12); color: #f97316; border-color: rgba(249,115,22,.2); }
.loc-contact-line {
    display: flex; align-items: center; gap: 12px;
    font-size: .85rem;
}
.loc-contact-line a { color: #93c5fd; text-decoration: none; transition: color .3s ease; }
.loc-contact-line a:hover { color: #f97316; }
.loc-sep { color: #334155; }

@media (max-width: 900px) {
    .loc-card { grid-template-columns: 1fr; }
    .loc-map-visual { padding: 32px 24px 16px; }
    .loc-content { padding: 24px 24px 36px; }
    .loc-stats { gap: 20px; }
}
@media (max-width: 480px) {
    .loc-stats { flex-direction: column; gap: 12px; }
}

/* ===== FAQ ===== */
.faq { padding: 70px 0; background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #fff7ed 100%); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--bg); border: none;
    border-radius: var(--radius-sm); overflow: hidden;
    transition: box-shadow .35s cubic-bezier(.4,0,.2,1), background .35s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.faq-item[open] { box-shadow: 0 4px 16px rgba(37,99,235,.1); background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 15%); }

.faq-item summary {
    padding: 20px 24px; font-weight: 600; font-size: 1rem;
    cursor: pointer; list-style: none; display: flex;
    align-items: center; justify-content: space-between;
    color: var(--dark); transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.4rem; font-weight: 300;
    color: #f97316; transition: transform var(--transition);
    flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary::after { content: '−'; color:#f97316; }
.faq-item[open] summary { color: var(--primary); }

.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: .9rem; color: var(--text-light); line-height: 1.8; }

/* ===== CONTACT ===== */
.contact { padding: 70px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-info h2 { margin: 12px 0 16px; }
.contact-info > p { color: var(--text-light); line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-detail {
    display: flex; align-items: center; gap: 12px;
    color: var(--text); font-size: .95rem;
}
.contact-detail svg { color: var(--primary); flex-shrink: 0; }
.contact-detail a { color: var(--text); }
.contact-detail a:hover { color: var(--primary); }

.contact-form {
    background: var(--bg-alt); padding: 32px;
    border-radius: var(--radius); border: none;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form label {
    display: block; font-size: .85rem; font-weight: 600;
    color: var(--dark); margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font);
    font-size: .9rem; color: var(--text);
    transition: border-color var(--transition);
    background: var(--bg);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

.form-note { font-size: .8rem; color: var(--text-light); margin-top: 12px; text-align: center; }

/* ===== FOOTER ===== */
.cta-canvas, .footer-canvas {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.v2-cta .container, .site-footer .container { position: relative; z-index: 1; }
.site-footer { background: var(--bg-dark); color: #94a3b8; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: none; position:relative; }
.footer-grid::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:linear-gradient(90deg, #2563eb, #f97316); opacity:.4; border-radius:2px; }

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-mark { background: var(--primary); }
.footer-brand .logo-text { color: #e2e8f0; }
.footer-brand p { font-size: .85rem; line-height: 1.7; }

.footer-col h4 { color: #f97316; font-size: .9rem; margin-bottom: 16px; text-transform:uppercase; letter-spacing:.04em; font-weight:700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .85rem; }
.footer-col a { color: #94a3b8; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: #f97316; }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 0; font-size: .8rem;
}
.footer-legal { display: flex; gap: 24px; list-style: none; }
.footer-legal a { color: #64748b; transition: color var(--transition); }
.footer-legal a:hover { color: #e2e8f0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-featured { transform: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--bg); flex-direction: column; padding: 80px 32px 32px;
        gap: 24px; box-shadow: var(--shadow-lg);
        transition: right var(--transition);
    }
    .nav-links.open { right: 0; }

    .hero { padding: 120px 0 60px; }
    .hero-proof { gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .local-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .floating-badge { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-proof { flex-wrap: wrap; gap: 16px; }
}

/* ===== BLOG LISTING ===== */
.blog-hero { padding: 140px 0 60px; background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #fff7ed 100%); }
.blog-hero h1 { margin-bottom: 16px; }
.blog-hero .section-desc { max-width: 640px; }

.blog-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.blog-filter {
    padding: 6px 18px; border: none; border-radius: 100px;
    font-size: .8rem; font-weight: 600; color: var(--text-light); cursor: pointer;
    background: var(--bg-alt); transition: all var(--transition); text-decoration: none;
}
.blog-filter:hover, .blog-filter.active { background: var(--primary); color: #fff; }

.blog-featured {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--bg); border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08); text-decoration: none;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1); margin-bottom: 40px;
}
.blog-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-featured-img {
    min-height: 300px; background-size: cover; background-position: center;
    display: flex; align-items: flex-end; padding: 20px; position: relative;
}
.blog-featured-body {
    padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-body .blog-card-tag {
    align-self: flex-start; margin-bottom: 16px;
    background: var(--primary-light); color: var(--primary);
}
.blog-featured-body h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--dark); line-height: 1.4; }
.blog-featured-body p { font-size: .92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.blog-featured-body .blog-card-meta { margin-top: auto; }
.blog-featured-body .blog-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: #f97316; font-weight: 600; font-size: .85rem; margin-top: 16px;
}
.blog-featured-body .blog-read-more:hover { gap: 10px; }

/* Colored blog card tags */
.blog-card:nth-child(2n) .blog-card-tag { color: #f97316; }
.blog-card:nth-child(3n) .blog-card-tag { color: #16a34a; }

.blog-grid-section { padding: 60px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card {
    background: var(--bg); border: none; border-radius: var(--radius);
    overflow: hidden; transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1); text-decoration: none; display: flex; flex-direction: column;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
    height: 180px; display: flex; align-items: flex-end; padding: 16px; position: relative;
}
.blog-card-tag {
    padding: 4px 12px; background: rgba(255,255,255,.92); border-radius: 100px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase; color: var(--primary);
    letter-spacing: .04em;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.blog-card-body p { font-size: .85rem; color: var(--text-light); line-height: 1.7; flex: 1; }
.blog-card-meta { display: flex; gap: 16px; margin-top: 16px; font-size: .75rem; color: var(--text-light); }

/* ===== ARTICLE PAGE ===== */
.article-hero {
    padding: 140px 0 40px;
    background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 40%, #fff7ed 100%);
}
.article-hero .section-tag { margin-bottom: 16px; }
.article-hero h1 { max-width: 780px; margin-bottom: 20px; }
.article-meta { display: flex; gap: 24px; font-size: .85rem; color: var(--text-light); flex-wrap: wrap; }

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 48px 0 100px; align-items: start; }

.article-content { max-width: 780px; }
.article-content h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.article-content h3 { margin: 32px 0 12px; font-size: 1.15rem; }
.article-content p { margin-bottom: 16px; line-height: 1.85; color: var(--text); }
.article-content ul, .article-content ol { margin: 0 0 16px 24px; }
.article-content li { margin-bottom: 8px; line-height: 1.7; color: var(--text); }
.article-content strong { color: var(--dark); }
.article-content blockquote {
    border-left: 4px solid var(--primary); padding: 16px 24px; margin: 24px 0;
    background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic; color: var(--text-light);
}
.article-content .cta-box {
    padding: 32px; background: var(--primary-light); border-radius: var(--radius);
    text-align: center; margin: 40px 0;
}
.article-content .cta-box h3 { margin: 0 0 12px; }
.article-content .cta-box p { margin-bottom: 20px; }

.article-toc {
    background: var(--bg-alt); border: none; border-radius: var(--radius-sm);
    padding: 24px; margin-bottom: 32px;
}
.article-toc h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; color: var(--dark); }
.article-toc ul { list-style: none; }
.article-toc li { margin-bottom: 8px; }
.article-toc a { font-size: .85rem; color: var(--text-light); text-decoration: none; transition: color var(--transition); }
.article-toc a:hover { color: var(--primary); }

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; }
.sidebar-block {
    background: var(--bg-alt); border: none;
    border-radius: var(--radius-sm); padding: 24px; margin-bottom: 24px;
}
.sidebar-block h4 {
    font-size: .85rem; text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: 16px; color: var(--dark);
}
.sidebar-link {
    display: block; padding: 10px 0; border-bottom: 1px solid var(--border);
    text-decoration: none; font-size: .85rem; color: var(--text);
    transition: color var(--transition);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--primary); }
.sidebar-link .link-tag { display: block; font-size: .7rem; color: var(--primary); font-weight: 600; margin-bottom: 2px; text-transform: uppercase; }

.sidebar-cta {
    background: var(--primary); color: #fff; border-radius: var(--radius-sm);
    padding: 28px; text-align: center;
}
.sidebar-cta h4 { color: #fff; text-transform: none; letter-spacing: 0; font-size: 1.05rem; }
.sidebar-cta p { font-size: .85rem; opacity: .9; margin: 8px 0 20px; }
.sidebar-cta .btn { background: #fff; color: var(--primary); border-color: #fff; font-size: .85rem; }
.sidebar-cta .btn:hover { background: var(--primary-light); }

/* Cocon links */
.cocon-nav {
    margin: 48px 0; padding: 32px; background: var(--bg-alt);
    border: none; border-radius: var(--radius);
}
.cocon-nav h3 { font-size: 1rem; margin-bottom: 16px; color: var(--dark); }
.cocon-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cocon-link {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px;
    background: var(--bg); border: none; border-radius: var(--radius-sm);
    text-decoration: none; color: var(--text); font-size: .85rem; font-weight: 500;
    transition: all var(--transition); box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.cocon-link:hover { color: var(--primary); background: var(--primary-light); }
.cocon-link .arrow { color: var(--primary); font-weight: 700; }
.cocon-link.pillar { background: var(--primary-light); font-weight: 600; }
.cocon-link.pillar:hover { background: #c7d2fe; }

/* Breadcrumb */
.breadcrumb { padding: 100px 0 0; }
.breadcrumb-list {
    display: flex; gap: 8px; align-items: center; list-style: none;
    font-size: .8rem; color: var(--text-light); flex-wrap: wrap;
}
.breadcrumb-list a { color: var(--text-light); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .sep { color: var(--border); }

@media (max-width: 1024px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .cocon-links { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-img { min-height: 200px; }
    .blog-featured-body { padding: 24px; }
    .blog-featured-body h3 { font-size: 1.15rem; }
    .article-sidebar { grid-template-columns: 1fr; }
}

/* Service page hero responsive */
@media (max-width: 900px) {
    .dev-hero .container,
    .article-hero .container { grid-template-columns: 1fr !important; }
    .terminal-mock { max-width: 480px; }
}

/* ===== V2 DESIGN SYSTEM ===== */

/* Wave section divider */
.wave-divider { display:none; }

/* Waves removed — sections flow seamlessly */
.realisations, .faq, .tarifs { position:relative; }
.v2-cta { position:relative; }
.v2-cta .wave-top { display:none; }

/* Hand-drawn highlight underline */
.highlight { position:relative; display:inline; }
.highlight::after {
    content:''; position:absolute; left:0; bottom:-4px;
    width:100%; height:8px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M0,5 Q25,2 50,5 T100,5 T150,5 T200,5' stroke='%232563eb' stroke-width='2.5' fill='none' opacity='.35'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-size:100% 100%;
}

/* Orange highlight variant */
.highlight-orange { position:relative; display:inline; color:#ea580c; }
.highlight-orange::after {
    content:''; position:absolute; left:0; bottom:-4px;
    width:100%; height:10px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M0,5 Q25,2 50,5 T100,5 T150,5 T200,5' stroke='%23f97316' stroke-width='3' fill='none' opacity='.6'/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-size:100% 100%;
}

/* Section fox illustration */
.fox-section-img { width:120px; opacity:.85; display:block; margin:0 auto 24px; }

/* Orange section tag variant */
.section-tag-orange {
    display:inline-block; padding:6px 16px;
    background:#fff7ed; color:#f97316;
    font-weight:600; font-size:.8rem;
    border-radius:100px; margin-bottom:20px;
    letter-spacing:.02em; text-transform:uppercase;
}

/* Warm CTA button */
.btn-warm {
    display:inline-flex; align-items:center; gap:8px;
    padding:14px 32px;
    background:linear-gradient(135deg, #f97316, #ef4444);
    color:#fff !important; font-weight:700; font-size:1rem;
    border-radius:50px; text-decoration:none;
    box-shadow:0 4px 20px rgba(249,115,22,.35);
    transition:transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
}
.btn-warm:hover {
    transform:translateY(-2px);
    box-shadow:0 8px 30px rgba(249,115,22,.45);
}

/* V2 Hero */
.v2-hero { padding:80px 0 60px; position:relative; overflow:hidden; }
.v2-hero .container { display:grid; grid-template-columns:1fr 280px; gap:48px; align-items:center; }
.v2-hero h1 { font-size:2.6rem; line-height:1.15; margin-bottom:16px; }
.v2-hero .hero-sub { font-size:1.1rem; color:var(--text-light); max-width:600px; margin-bottom:28px; }

/* Fox mascot */
.fox-hero-img { width:280px; height:280px; animation:foxFloat 4s ease-in-out infinite; will-change:transform; }
@keyframes foxFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Big decorative numbers */
.big-number {
    position:absolute; top:-20px; left:-10px;
    font-size:8rem; font-weight:900; color:var(--primary);
    opacity:.04; line-height:1; pointer-events:none; user-select:none;
}

/* Offer cards with tinted background */
.offer-card {
    border:none; border-radius:var(--radius);
    overflow:hidden; transition:transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.offer-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.1); }
.offer-card.blue  { background:#eff6ff; }
.offer-card.orange { background:#fff7ed; }
.offer-card.dark  { background:#f1f5f9; }
.offer-card.green { background:#f0fdf4; }
.offer-card.purple { background:#f5f3ff; }
.offer-card-dot { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.offer-card.blue .offer-card-dot  { background:rgba(37,99,235,.1); color:#2563eb; }
.offer-card.orange .offer-card-dot { background:rgba(249,115,22,.1); color:#f97316; }
.offer-card.dark .offer-card-dot  { background:rgba(15,23,42,.08); color:#334155; }
.offer-card.green .offer-card-dot { background:rgba(22,163,74,.1); color:#16a34a; }
.offer-card.purple .offer-card-dot { background:rgba(124,58,237,.1); color:#7c3aed; }
.offer-card-body { padding:28px; }
.offer-card-body h3 { margin-bottom:4px; }
.offer-card-price { font-size:.85rem; font-weight:600; margin-bottom:12px; }
.offer-card.blue .offer-card-price  { color:#2563eb; }
.offer-card.orange .offer-card-price { color:#f97316; }
.offer-card.dark .offer-card-price  { color:#334155; }
.offer-card.green .offer-card-price { color:#16a34a; }
.offer-card.purple .offer-card-price { color:#7c3aed; }
.offer-card-body p { font-size:.9rem; color:var(--text-light); margin:0; }

/* Process path with dashed line */
.process-path { position:relative; padding:40px 0; }
.process-path::before {
    content:''; position:absolute; left:31px; top:60px; bottom:60px; width:2px;
    background:repeating-linear-gradient(to bottom, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 16px);
}
.process-step { display:grid; grid-template-columns:64px 1fr; gap:20px; padding:20px 0; align-items:start; }
.process-dot {
    width:64px; height:64px; border-radius:50%; background:#fff;
    border:3px solid var(--primary); display:flex; align-items:center; justify-content:center;
    font-size:1.4rem; font-weight:800; color:var(--primary);
    position:relative; z-index:1; box-shadow:0 4px 16px rgba(37,99,235,.15);
}
.process-step:nth-child(even) .process-dot { border-color:#f97316; color:#f97316; box-shadow:0 4px 16px rgba(249,115,22,.15); }
.process-step:nth-child(3n) .process-dot { border-color:#16a34a; color:#16a34a; box-shadow:0 4px 16px rgba(22,163,74,.15); }
.process-step h3 { margin-bottom:6px; }
.process-step p { font-size:.9rem; color:var(--text-light); margin:0; }

/* Included items cards */
.included-card { padding:24px; background:var(--primary-light); border-radius:var(--radius); box-shadow: 0 1px 4px rgba(37,99,235,.06); }
.included-card h4 { color:var(--primary); }
.included-card h4 { margin-bottom:8px; font-size:.95rem; }
.included-card ul { font-size:.85rem; color:var(--text-light); padding-left:18px; margin:0; }

/* Before/After visual */
.before-after { display:grid; grid-template-columns:1fr auto 1fr; gap:0; align-items:stretch; margin:28px 0 36px; border-radius:var(--radius); overflow:hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); }
.ba-side { padding:28px; }
.ba-before { background:#fef2f2; }
.ba-after { background:#f0fdf4; }
.ba-divider { width:48px; background:linear-gradient(135deg, #fef2f2, #f0fdf4); display:flex; align-items:center; justify-content:center; font-size:1.5rem; font-weight:800; color:var(--text-light); }
.ba-side h4 { margin-bottom:12px; font-size:.95rem; }
.ba-side ul { padding-left:18px; margin:0; }
.ba-side li { font-size:.85rem; margin-bottom:6px; }
.ba-before li { color:#991b1b; }
.ba-after li { color:#166534; }

/* Dark CTA section */
.v2-cta {
    background:linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding:80px 0; text-align:center; position:relative; overflow:hidden;
}
.v2-cta::before {
    content:''; position:absolute; top:0; left:0; right:0; height:0;
}
.v2-cta::after {
    content:''; position:absolute; top:50%; left:50%; width:600px; height:600px;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(249,115,22,.08) 0%, rgba(37,99,235,.08) 40%, transparent 70%);
    pointer-events:none;
}
.v2-cta h2 { color:#fff; margin-bottom:12px; position:relative; }
.v2-cta p { color:#94a3b8; font-size:1.05rem; margin-bottom:32px; position:relative; }
.v2-cta .fox-cta { width:100px; margin-bottom:24px; position:relative; }

/* Grenoble city pills */
.city-pills { display:flex; flex-wrap:wrap; gap:8px; margin:16px 0 28px; }
.city-pill { padding:6px 16px; background:var(--primary-light); color:var(--primary); font-size:.8rem; font-weight:600; border-radius:50px; }
.city-pill:nth-child(even) { background:#fff7ed; color:#f97316; }
.city-pill:nth-child(3n) { background:#f0fdf4; color:#16a34a; }

/* Fox peeking above mockup in hero */
.fox-peek {
    position:absolute;
    top:-70px; left:50%;
    transform:translateX(-50%);
    width:180px;
    z-index:0;
    animation:foxPeek 3s ease-in-out infinite;
    pointer-events:none;
    will-change:transform;
}
@keyframes foxPeek {
    0%,100% { transform:translateX(-50%) translateY(0); }
    50% { transform:translateX(-50%) translateY(-6px); }
}
@media(max-width:768px) {
    .fox-peek { width:120px; top:-45px; }
}

/* Fox hanging from page corner */
.fox-hanging {
    position:fixed;
    top:-10px; right:32px;
    width:80px;
    z-index:100;
    pointer-events:none;
    animation:foxSwing 3s ease-in-out infinite;
    transform-origin:top center;
    will-change:transform;
}
@keyframes foxSwing {
    0%,100% { transform:rotate(2deg); }
    50% { transform:rotate(-2deg); }
}
@media(max-width:768px) {
    .fox-hanging { width:56px; right:16px; }
}

/* V2 responsive */
@media(max-width:900px) {
    .v2-hero .container { grid-template-columns:1fr !important; text-align:center; }
    .v2-hero h1 { font-size:2rem; }
    .fox-hero-img { width:200px; height:200px; margin:0 auto; }
    .before-after { grid-template-columns:1fr; }
    .ba-divider { width:100%; height:48px; }
    .process-step { grid-template-columns:48px 1fr; gap:14px; }
    .process-dot { width:48px; height:48px; font-size:1.1rem; }
    .process-path::before { left:23px; }
}
@media(max-width:600px) {
    .offer-cards-grid { grid-template-columns:1fr !important; }
}

/* ===== RGPD COOKIE BANNER ===== */
.rgpd-banner {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--dark); color: #e2e8f0;
    padding: 20px 0; box-shadow: 0 -4px 24px rgba(0,0,0,.2);
    animation: rgpdSlideUp .4s ease;
}
@keyframes rgpdSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.rgpd-banner .container {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.rgpd-banner p {
    flex: 1; min-width: 280px; font-size: .85rem; line-height: 1.6;
    color: #cbd5e1; margin: 0;
}
.rgpd-banner p a { color: #93c5fd; text-decoration: underline; }
.rgpd-banner p a:hover { color: #fff; }
.rgpd-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.rgpd-btn {
    padding: 8px 20px; border-radius: 100px; font-size: .8rem; font-weight: 600;
    border: none; cursor: pointer; transition: all .2s ease;
}
.rgpd-btn-accept {
    background: var(--primary); color: #fff;
}
.rgpd-btn-accept:hover { background: var(--primary-dark, #4338ca); }
.rgpd-btn-refuse {
    background: transparent; color: #cbd5e1; border: 1px solid #475569;
}
.rgpd-btn-refuse:hover { background: #334155; color: #fff; }
.rgpd-btn-settings {
    background: transparent; color: #94a3b8; border: 1px solid #475569;
}
.rgpd-btn-settings:hover { background: #334155; color: #fff; }

.rgpd-details {
    display: none; width: 100%; margin-top: 16px;
    padding-top: 16px; border-top: 1px solid #334155;
}
.rgpd-details.open { display: block; }
.rgpd-cookie-group {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid #1e293b;
}
.rgpd-cookie-group:last-child { border-bottom: none; }
.rgpd-cookie-label { font-size: .85rem; color: #e2e8f0; }
.rgpd-cookie-desc { font-size: .75rem; color: #94a3b8; }
.rgpd-toggle {
    position: relative; width: 44px; height: 24px; flex-shrink: 0;
}
.rgpd-toggle input { opacity: 0; width: 0; height: 0; }
.rgpd-toggle-slider {
    position: absolute; inset: 0; background: #475569;
    border-radius: 24px; cursor: pointer; transition: .2s;
}
.rgpd-toggle-slider::before {
    content: ''; position: absolute; width: 18px; height: 18px;
    left: 3px; bottom: 3px; background: #fff;
    border-radius: 50%; transition: .2s;
}
.rgpd-toggle input:checked + .rgpd-toggle-slider { background: var(--primary); }
.rgpd-toggle input:checked + .rgpd-toggle-slider::before { transform: translateX(20px); }
.rgpd-toggle input:disabled + .rgpd-toggle-slider { opacity: .5; cursor: default; }

@media (max-width: 600px) {
    .rgpd-banner .container { flex-direction: column; text-align: center; }
    .rgpd-btns { justify-content: center; width: 100%; }
}

/* ===== CONSTELLATION NODE ON SECTION TAGS ===== */
.section-header {
    position: relative;
}
.section-header::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: .08;
    z-index: 0;
    animation: nodePulse 6s ease-in-out infinite;
    will-change: transform, opacity;
}
.section-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    animation: nodeOrbit 8s ease-in-out infinite;
    will-change: transform;
}
.section-tag {
    position: relative; z-index: 1;
}

/* Variation par section */
.services .section-header::before {
    width: 120px; height: 120px;
    top: -30px; left: calc(50% - 120px);
    box-shadow:
        80px 30px 0 8px rgba(37,99,235,.05),
        -30px 60px 0 4px rgba(37,99,235,.06);
}
.services .section-header::after {
    width: 18px; height: 18px;
    top: 0; left: calc(50% - 50px);
    background: var(--primary); opacity: .12;
    box-shadow:
        60px 20px 0 6px rgba(37,99,235,.08),
        -20px -10px 0 3px rgba(37,99,235,.1);
}

.realisations .section-header::before {
    width: 150px; height: 150px;
    top: -40px; left: calc(50% + 20px);
    box-shadow:
        -90px 20px 0 10px rgba(37,99,235,.04),
        40px 70px 0 6px rgba(37,99,235,.05);
    animation-delay: -2s;
}
.realisations .section-header::after {
    width: 22px; height: 22px;
    top: 10px; left: calc(50% + 80px);
    background: var(--primary); opacity: .1;
    box-shadow:
        -70px 15px 0 5px rgba(37,99,235,.08),
        30px -20px 0 8px rgba(37,99,235,.06);
    animation-delay: -1s;
}

.localisation .section-header::before {
    width: 100px; height: 100px;
    top: -20px; left: calc(50% - 160px);
    box-shadow:
        100px 40px 0 12px rgba(37,99,235,.04),
        50px -10px 0 5px rgba(37,99,235,.06);
    animation-delay: -4s;
}
.localisation .section-header::after {
    width: 16px; height: 16px;
    top: 5px; left: calc(50% - 100px);
    background: var(--primary); opacity: .14;
    box-shadow:
        90px 10px 0 4px rgba(37,99,235,.1),
        40px 30px 0 7px rgba(37,99,235,.07);
    animation-delay: -3s;
}

/* Blog section */
.blog-section .section-header::before {
    width: 60px; height: 60px;
    top: 10px; left: calc(50% - 180px);
    background: var(--primary);
    opacity: .06;
    border-radius: 50%;
    box-shadow:
        40px 20px 0 3px rgba(37,99,235,.04),
        120px -5px 0 2px rgba(37,99,235,.04);
    animation: nodeFloat 10s ease-in-out infinite;
    animation-delay: -1.5s;
}
.blog-section .section-header::after {
    width: 10px; height: 10px;
    top: 25px; left: calc(50% - 140px);
    background: var(--primary); opacity: .12;
    box-shadow:
        80px -10px 0 4px rgba(37,99,235,.06),
        160px 15px 0 3px rgba(37,99,235,.05);
    animation: nodeFloat 14s ease-in-out infinite reverse;
    animation-delay: -2.5s;
}
@keyframes nodeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(6px, -4px) scale(1.08); }
    66% { transform: translate(-3px, 5px) scale(0.94); }
}

/* CTA dark variant */
.cta-particles .section-header::before {
    width: 140px; height: 140px;
    top: -30px; left: calc(50% - 100px);
    background: #93c5fd;
    opacity: .04;
    box-shadow:
        70px 50px 0 10px rgba(147,197,253,.03),
        -40px 30px 0 6px rgba(147,197,253,.04);
    animation-delay: -3s;
}
.cta-particles .section-header::after {
    width: 20px; height: 20px;
    top: 0; left: calc(50% - 30px);
    background: #93c5fd; opacity: .1;
    box-shadow:
        50px 25px 0 5px rgba(147,197,253,.08),
        -30px -10px 0 8px rgba(147,197,253,.06);
    animation-delay: -1s;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: .08; }
    50% { transform: scale(1.15); opacity: .12; }
}
@keyframes nodeOrbit {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(8px, -6px); }
    50% { transform: translate(-4px, 8px); }
    75% { transform: translate(6px, 4px); }
}

/* ===== FLOATING BOKEH CIRCLES ===== */
.services, .localisation {
    position: relative; overflow: hidden;
}
.services::before, .services::after,
.localisation::before, .localisation::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.services::before {
    width: 320px; height: 320px;
    top: -80px; right: -100px;
    background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
    animation: floatBokeh 12s ease-in-out infinite;
}
.services::after {
    width: 200px; height: 200px;
    bottom: 40px; left: -60px;
    background: radial-gradient(circle, rgba(245,158,11,.05) 0%, transparent 70%);
    animation: floatBokeh 15s ease-in-out infinite reverse;
}
.localisation::before {
    width: 260px; height: 260px;
    top: -40px; left: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%);
    animation: floatBokeh 18s ease-in-out infinite;
}
.localisation::after {
    width: 180px; height: 180px;
    bottom: -40px; right: -40px;
    background: radial-gradient(circle, rgba(167,139,250,.06) 0%, transparent 70%);
    animation: floatBokeh 10s ease-in-out infinite reverse;
}
.services .container, .localisation .container {
    position: relative; z-index: 1;
}
@keyframes floatBokeh {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* ===== CTA PARTICLES SECTION ===== */
.cta-particles {
    position: relative; overflow: hidden;
    background: var(--bg-dark);
}
.cta-particles .section-tag { color: #93c5fd; }
.cta-particles .section-tag::before {
    box-shadow:
        22px -18px 0 3px rgba(147,197,253,.15),
        -10px 20px 0 1px rgba(147,197,253,.18),
        30px 12px 0 5px rgba(147,197,253,.1);
    background: #93c5fd;
}
.cta-particles .section-tag::after {
    background: linear-gradient(90deg, rgba(147,197,253,.25), transparent);
}
.cta-particles h2 { color: #f1f5f9; }
.cta-particles h2 strong { color: #93c5fd; }
.cta-particles p { color: #94a3b8 !important; }
.cta-particles .btn-primary { background: #3b82f6; border-color: #3b82f6; }
.cta-particles .btn-primary:hover { background: #2563eb; border-color: #2563eb; }
.cta-particles .btn-outline { color: #93c5fd; border-color: #93c5fd; }
.cta-particles .btn-outline:hover { background: #93c5fd; color: var(--bg-dark); }
.cta-canvas {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .35s; }
.reveal-delay-5 { transition-delay: .4s; }

/* ===== ENHANCED HOVER EFFECTS ===== */
.service-card {
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(37,99,235,.06) 0%, transparent 60%);
    opacity: 0; transition: opacity .4s ease;
    pointer-events: none;
}
.service-card:hover::before { opacity: 1; }


/* ===== COUNTER ANIMATION ===== */
.proof-item strong {
    display: inline-block;
}

/* ===== HERO ENTRY ANIMATION ===== */
.hero-content { animation: heroFadeIn .8s ease both; }
.hero-visual { animation: heroFadeIn .8s ease .3s both; }
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== DESIGN SPECIMEN CARDS ===== */
.design-specimen:hover { transform:translateY(-4px); box-shadow:0 8px 32px rgba(0,0,0,.1) !important; }

/* Deliverables responsive */
@media(max-width:900px) {
    .design-showcase .container > div:last-child { grid-template-columns:1fr !important; }
}
@media(max-width:768px) {
    .design-showcase .container > div:last-child { grid-template-columns:1fr !important; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity .3s ease;
}
.cursor-active .cursor-dot,
.cursor-active .cursor-ring { opacity: 1; }

.cursor-dot {
    width: 6px; height: 6px;
    background: var(--primary);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--primary);
    transform: translate(-50%, -50%) scale(1);
    transition: width .25s cubic-bezier(.4,0,.2,1),
                height .25s cubic-bezier(.4,0,.2,1),
                border-color .25s ease,
                background .25s ease,
                opacity .3s ease;
}

/* Hover sur liens / boutons */
.cursor-hover .cursor-ring {
    width: 56px; height: 56px;
    background: rgba(37, 99, 235, .08);
    border-color: rgba(37, 99, 235, .4);
}
.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.6);
}

/* Clic */
.cursor-click .cursor-ring {
    width: 28px; height: 28px;
    border-color: #f97316;
}
.cursor-click .cursor-dot {
    background: #f97316;
}

/* Hover sur images/portfolio */
.cursor-view .cursor-ring {
    width: 80px; height: 80px;
    background: rgba(15, 23, 42, .8);
    border-color: transparent;
}
.cursor-view .cursor-ring::after {
    content: 'Voir';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.cursor-view .cursor-dot { opacity: 0; }

/* Masquer sur mobile et quand prefers-reduced-motion */
@media (pointer: coarse), (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body { cursor: auto !important; }
}

/* Masquer le curseur natif sur desktop */
@media (pointer: fine) {
    body.cursor-active,
    body.cursor-active a,
    body.cursor-active button,
    body.cursor-active input,
    body.cursor-active textarea,
    body.cursor-active select,
    body.cursor-active [role="button"] {
        cursor: none !important;
    }
}

/* ===== STICKY CTA MOBILE ===== */
.sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    padding: 12px 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 -2px 16px rgba(0,0,0,.1);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn-warm { width: 100%; justify-content: center; padding: 14px; font-size: .95rem; }
@media (max-width: 768px) {
    .sticky-cta { display: block; }
}

/* ===== SECTION WAVE SEPARATORS ===== */
.wave-sep {
    display: block; width: 100%; height: 40px;
    margin: -1px 0; position: relative; z-index: 2;
}

/* ===== CONSTELLATION SEPARATORS ===== */
.constellation-sep {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    overflow: hidden;
}
.constellation-sep svg {
    width: 100%;
    max-width: 1200px;
    height: 40px;
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-content, .hero-visual { animation: none; }
    .hero-canvas { display: none; }
    .cursor-dot, .cursor-ring { display: none !important; }
    body { cursor: auto !important; }
}
