@import url('fonts/fonts-seo.css');
:root {
  --bg-primary: #0A0A0B;
  --bg-secondary: #111113;
  --bg-card: #161618;
  --bg-card-hover: #1C1C1F;
  --bg-elevated: #1E1E21;
  --text-primary: #F5F5F7;
  --text-secondary: #A1A1A6;
  --text-muted: #6E6E73;
  --accent: #C2410C;
  --accent-hover: #EA580C;
  --accent-glow: rgba(194, 65, 12, 0.15);
  --accent-subtle: rgba(194, 65, 12, 0.08);
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --success: #30D158;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: 'Nunito', -apple-system, system-ui, sans-serif;
  --font-display: 'Nunito', -apple-system, system-ui, sans-serif;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-elevated: 0 4px 16px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 600px; line-height: 1.6; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius-md); font-family: var(--font-body); font-size: 15px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 12px rgba(194, 65, 12, 0.3); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #20BD5A; transform: translateY(-1px); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-secondary:hover { background: var(--bg-card-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.nav.scrolled { background: rgba(10,10,11,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.nav-logo .logo-accent { color: var(--accent); }
.nav-logo svg { width: 36px; height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.mobile-menu { position: fixed; inset: 0; background: var(--bg-primary); z-index: 999; padding: 90px 28px 32px; display: flex; flex-direction: column; gap: 6px; opacity: 0; pointer-events: none; transition: opacity .28s ease; overflow-y: auto; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 18px 16px; font-size: 18px; font-weight: 600; color: var(--text-secondary); border-bottom: 1px solid var(--border); transition: var(--transition); }
.mobile-menu a:hover { color: var(--text-primary); }
.mobile-menu .btn-group { margin-top: 28px; flex-direction: column; }
/* Mobile : nav-links reste visible en haut, items scrollables horizontalement (pas de burger) */
/* ─── Nav tablette + mobile : hamburger menu (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 18px; gap: 10px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex !important; }
  /* lang-switcher desktop caché sur mobile/tablette — repris dans .mobile-menu */
  .lang-switcher.lang-desktop { display: none; }
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 14px; gap: 8px; }
  .nav-logo svg { width: 28px; height: 28px; }
  .nav-logo span { font-size: 14px; }
}

/* ─── LANG SWITCHER (commun à toutes les pages métier×ville) ─── */
.lang-switcher { position: relative; display: inline-block; }
.lang-switcher .lang-current { all: unset; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 100px; background: var(--bg-card, #161618); border: 1px solid var(--border, rgba(255, 255, 255, 0.06)); font-size: 12.5px; font-weight: 600; color: var(--text-primary, #F5F5F7); transition: background .2s, border-color .2s, color .2s; font-family: inherit; letter-spacing: .02em; }
.lang-switcher .lang-current:hover { border-color: rgba(194, 65, 12, 0.45); }
.lang-switcher .lang-current svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.lang-switcher .lang-current .lang-arrow { margin-left: 2px; transition: transform .2s ease; }
.lang-switcher .lang-current[aria-expanded="true"] .lang-arrow { transform: rotate(180deg); }
.lang-switcher .lang-dropdown { position: absolute; top: calc(100% + 6px); right: 0; min-width: 150px; background: var(--bg-card-hover, #1C1C1F); border: 1px solid var(--border, rgba(255, 255, 255, 0.06)); border-radius: 12px; padding: 6px; display: none; flex-direction: column; gap: 1px; box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25); z-index: 1100; }
.lang-switcher .lang-dropdown.open { display: flex; animation: lang-in .18s ease; }
.lang-switcher .lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: background .15s, color .15s; letter-spacing: 0; border: none; }
.lang-switcher .lang-dropdown a:hover, .lang-switcher .lang-dropdown a.active { background: rgba(194, 65, 12, 0.1); color: var(--text-primary); }
.lang-switcher .lang-dropdown a .lang-flag { font-size: 16px; line-height: 1; }
.mobile-menu .lang-switcher.lang-mobile { display: block; margin: 24px 0 8px; }
.lang-switcher.lang-mobile { display: none; }
.lang-switcher.lang-mobile .lang-current { width: 100%; justify-content: center; padding: 14px 18px; font-size: 14px; border-radius: 14px; box-sizing: border-box; }
.lang-switcher.lang-mobile .lang-dropdown { top: auto; bottom: calc(100% + 6px); right: 0; left: 0; min-width: 0; }
@keyframes lang-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.page-header { padding: 160px 0 80px; text-align: center; position: relative; }
.page-header::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, var(--accent-glow), transparent 70%); pointer-events: none; }
.page-header > * { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 24px; flex-wrap: wrap; justify-content: center; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr; } .section { padding: 64px 0; } }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); }
.card:hover { background: var(--bg-card-hover); border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.card-icon { width: 48px; height: 48px; background: var(--accent-subtle); border: 1px solid rgba(194, 65, 12, 0.15); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent); font-size: 22px; }
.card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card-text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition); }
.feature-item:hover { border-color: rgba(48, 209, 88, 0.2); background: var(--bg-card-hover); }
.feature-check { width: 28px; height: 28px; border-radius: 50%; background: rgba(48, 209, 88, 0.1); border: 1px solid rgba(48, 209, 88, 0.2); display: flex; align-items: center; justify-content: center; color: var(--success); flex-shrink: 0; }
.feature-check svg { width: 14px; height: 14px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--border); }
.trust-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-subtle); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--accent); font-size: 24px; }
.trust-title { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.trust-text { font-size: 14px; color: var(--text-muted); }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; transition: var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.pricing-card.recommended { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(194, 65, 12, 0.15); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; margin-top: 8px; }
.pricing-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price .amount { font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.pricing-price .period { font-size: 14px; color: var(--text-muted); }
.pricing-setup { font-size: 13px; color: var(--text-secondary); margin-bottom: 4px; }
.pricing-alt { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.pricing-feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-result { font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 20px; padding: 10px 14px; background: var(--accent-subtle); border-radius: var(--radius-sm); }
.pricing-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 24px; line-height: 1.5; }
.cta-banner { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 500px; height: 300px; background: radial-gradient(ellipse, var(--accent-glow), transparent 70%); pointer-events: none; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .section-title { margin-bottom: 12px; }
.cta-banner .section-subtitle { margin: 0 auto 32px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 12px; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: var(--bg-card); border: none; color: var(--text-primary); font-family: var(--font-body); font-size: 16px; font-weight: 600; cursor: pointer; text-align: left; transition: var(--transition); gap: 16px; }
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 20px 24px; background: var(--bg-secondary); font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.seo-text-section { padding: 80px 0; background: var(--bg-secondary); }
.seo-text-section h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 20px; color: var(--text-primary); }
.seo-text-section h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin: 32px 0 12px; color: var(--text-primary); }
.seo-text-section p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.related-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--border-light); border-radius: 100px; font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.related-link:hover { border-color: var(--accent); color: var(--accent); }
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand { max-width: 280px; }
.footer-brand p { margin-top: 16px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
@media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

  @media (max-width: 1100px) { .stagger[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; } }
  @media (max-width: 600px) { .stagger[style*="repeat(4"] { grid-template-columns: 1fr !important; } }
