/* === Variables === */
:root {
    --primary: #0284c7;
    --primary-dark: #0c4a6e;
    --primary-light: #38bdf8;
    --accent: #0ea5e9;
    --bg: #f8fafc;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(2,132,199,.12);
    --shadow-lg: 0 8px 40px rgba(2,132,199,.18);
    --transition: .25s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--slate-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === Utilities === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--dark { background: var(--primary-dark); color: var(--white); }
.section--light { background: var(--slate-50); }
.section-label { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--slate-600); max-width: 620px; }
.section-head { margin-bottom: 56px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: .95rem; cursor: pointer; border: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }

/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: var(--transition); }
.nav.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 44px; height: 44px; border-radius: 8px; object-fit: contain; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--white); transition: var(--transition); }
.nav-logo-text span { font-size: .72rem; color: rgba(255,255,255,.7); transition: var(--transition); }
.nav.scrolled .nav-logo-text strong { color: var(--primary-dark); }
.nav.scrolled .nav-logo-text span { color: var(--slate-600); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.9); transition: var(--transition); }
.nav.scrolled .nav-links a { color: var(--slate-700); }
.nav-links a:hover { color: var(--primary-light); }
.nav.scrolled .nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: var(--white) !important; padding: 10px 20px; border-radius: 50px; }
.nav.scrolled .nav-cta { background: var(--primary); color: var(--white) !important; }
.nav-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; transform: translateY(-1px); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav.scrolled .nav-burger span { background: var(--slate-900); }
.nav-mobile { display: none; }

/* === HERO === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,74,110,.85) 0%, rgba(2,132,199,.65) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.25); border-radius: 50px; padding: 8px 18px; font-size: .82rem; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.hero-badge i { color: var(--primary-light); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary-light); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-social { display: flex; align-items: center; gap: 14px; }
.avatars { display: flex; }
.avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white); margin-left: -8px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }
.hero-social-text { color: rgba(255,255,255,.85); font-size: .85rem; }
.hero-social-text strong { color: var(--white); display: block; font-size: .92rem; }
.stars { color: #fbbf24; font-size: .8rem; }

/* === SERVICES === */
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(2,132,199,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--primary); font-size: 1.1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: var(--slate-600); line-height: 1.55; }

/* === PREMIUM === */
.premium-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.premium-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.premium-img img { width: 100%; height: 460px; object-fit: cover; }
.premium-features { display: flex; flex-direction: column; gap: 28px; margin: 36px 0; }
.premium-feature { display: flex; gap: 16px; }
.premium-feature-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 1.1rem; }
.premium-feature h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.premium-feature p { font-size: .88rem; opacity: .8; }
.premium-testimonial { background: rgba(255,255,255,.08); border-left: 3px solid var(--primary-light); border-radius: 0 8px 8px 0; padding: 18px 20px; font-size: .92rem; font-style: italic; opacity: .9; }
.premium-testimonial cite { font-style: normal; font-weight: 700; font-size: .82rem; display: block; margin-top: 8px; opacity: .7; }

/* === LOCATION === */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.location-info { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.location-item { display: flex; align-items: flex-start; gap: 14px; }
.location-item-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(2,132,199,.1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.location-item h4 { font-size: .88rem; font-weight: 700; color: var(--slate-700); margin-bottom: 2px; }
.location-item p { font-size: .92rem; }
.location-cta-box { background: var(--slate-50); border-radius: var(--radius); padding: 32px; border: 1px solid var(--slate-100); }
.location-cta-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.location-cta-box p { color: var(--slate-600); margin-bottom: 24px; font-size: .95rem; }
.location-cta-sub { font-size: .8rem; color: var(--slate-600); margin-top: 12px; display: flex; align-items: center; gap: 6px; }

/* === FOOTER === */
.footer { background: var(--slate-900); color: rgba(255,255,255,.7); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; }
.footer-brand strong { color: var(--white); font-size: 1rem; }
.footer-desc { font-size: .88rem; line-height: 1.65; max-width: 280px; }
.footer h4 { color: var(--white); font-size: .92rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); transition: var(--transition); font-size: .9rem; }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--white); }

/* === FLOATING CTA === */
.floating-cta { position: fixed; bottom: 28px; right: 28px; z-index: 99; opacity: 0; transform: translateY(12px); transition: var(--transition); pointer-events: none; }
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta a { display: flex; align-items: center; gap: 10px; background: var(--primary); color: var(--white); padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: .92rem; box-shadow: 0 4px 24px rgba(2,132,199,.4); transition: var(--transition); }
.floating-cta a:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* === SCROLL TOP === */
.scroll-top { position: fixed; bottom: 28px; left: 28px; z-index: 99; width: 46px; height: 46px; border-radius: 50%; background: var(--slate-900); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; opacity: 0; transform: translateY(12px); transition: var(--transition); pointer-events: none; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--primary); transform: translateY(-2px); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .premium-grid, .location-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .premium-img { order: -1; }
    .premium-img img { height: 320px; }
}
@media (max-width: 680px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-mobile { display: none; flex-direction: column; gap: 0; background: var(--white); position: fixed; top: 68px; left: 0; right: 0; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
    .nav-mobile.open { display: flex; }
    .nav-mobile a { padding: 14px 0; border-bottom: 1px solid var(--slate-100); font-weight: 600; color: var(--slate-900); }
    .section { padding: 56px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .floating-cta { bottom: 16px; right: 16px; }
}

/* === COOKIE CONSENT === */
.cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--slate-900); border-top: 2px solid var(--primary); padding: 20px 0; }
.cookie-consent.cookie-hidden { display: none; }
.cookie-consent-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-consent-text { flex: 1; min-width: 260px; }
.cookie-consent-text p { color: rgba(255,255,255,.85); margin-bottom: 4px; font-size: .88rem; }
.cookie-consent-text p:first-child { font-weight: 700; font-size: .95rem; color: var(--white); }
.cookie-link { color: var(--primary-light); text-decoration: underline; }
.cookie-link:hover { color: var(--white); }
.cookie-consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 22px; border-radius: 50px; font-weight: 700; font-size: .88rem; cursor: pointer; border: none; transition: var(--transition); }
.cookie-btn-accept { background: var(--primary); color: var(--white); }
.cookie-btn-accept:hover { background: var(--primary-dark); }
.cookie-btn-refuse { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); }
.cookie-btn-refuse:hover { background: rgba(255,255,255,.1); color: var(--white); }
@media (max-width: 600px) {
    .cookie-consent-inner { flex-direction: column; text-align: center; }
    .cookie-consent-actions { width: 100%; justify-content: center; }
}

/* === TÉMOIGNAGES === */
.rating-summary { display:flex; align-items:center; gap:20px; background:var(--slate-50); border:1px solid var(--slate-100); border-radius:var(--radius); padding:24px 28px; margin-bottom:40px; flex-wrap:wrap; }
.rating-score { font-size:3rem; font-weight:900; color:var(--primary-dark); line-height:1; }
.rating-stars { color:#f59e0b; font-size:1.4rem; line-height:1; margin-bottom:4px; }
.rating-label { font-size:.82rem; color:var(--slate-600); margin:0; }

.testimonials-track-wrapper { overflow:hidden; position:relative; }
.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.testimonials-track-wrapper::before { left:0; background:linear-gradient(to right, #fff, transparent); }
.testimonials-track-wrapper::after { right:0; background:linear-gradient(to left, #fff, transparent); }
.testimonials-track { display:flex; gap:20px; width:max-content; animation:scroll-reviews 40s linear infinite; }
.testimonials-track:hover { animation-play-state:paused; }
@keyframes scroll-reviews { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.testimonial-card { background:var(--white); border:1px solid var(--slate-100); border-radius:var(--radius); padding:24px; width:320px; flex-shrink:0; box-shadow:0 2px 12px rgba(0,0,0,.05); }
.testimonial-header { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.testimonial-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg, var(--primary), var(--primary-dark)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.85rem; flex-shrink:0; }
.testimonial-header strong { display:block; font-size:.92rem; }
.testimonial-city { font-size:.78rem; color:var(--slate-600); }
.testimonial-google { margin-left:auto; color:#4285f4; font-size:1.1rem; }
.testimonial-stars { color:#f59e0b; font-size:1rem; margin-bottom:10px; letter-spacing:1px; }
.testimonial-text { font-size:.88rem; color:var(--slate-600); line-height:1.6; margin:0; font-style:italic; }
