/* ================================================================
   Picardo.ch — V4 Production Candidate
   Design tokens clonés depuis V1 exact (#0B0B14 / #FF6B35)
   ================================================================ */

/* --- Custom Properties --------------------------------------- */
:root {
  --bg: #0B0B14;
  --bg2: #111122;
  --accent: #FF6B35;
  --accent2: #FF8F60;
  --accent3: #FFB088;
  --glow: rgba(255,107,53,.5);
  --glow-s: rgba(255,107,53,.08);
  --txt: #FFF;
  --t80: rgba(255,255,255,.8);
  --t60: rgba(255,255,255,.55);
  --t40: rgba(255,255,255,.35);
  --t20: rgba(255,255,255,.18);
  --glass: rgba(255,255,255,.03);
  --glass2: rgba(255,255,255,.06);
  --gb: rgba(255,255,255,.07);
  --gb2: rgba(255,255,255,.14);
  --r: 24px;
  --rs: 16px;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* --- CSS Property for rotating border ----------------------- */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* --- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--txt);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* --- Grain overlay ------------------------------------------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* --- Scroll progress ---------------------------------------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  z-index: 10001;
  transition: width .1s linear;
}

/* --- Preloader ---------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--txt);
  margin-bottom: 44px;
}
.preloader-logo .dot { color: var(--accent); }
.preloader-pct {
  font-size: clamp(80px, 14vw, 128px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  background: linear-gradient(135deg, #FFF 0%, var(--accent) 65%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-align: center;
}
.preloader-bar {
  width: 180px;
  height: 2px;
  background: var(--gb2);
  border-radius: 2px;
  margin-top: 28px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width .12s linear;
}

/* --- Nav ---------------------------------------------------- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  background: rgba(11,11,20,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gb);
}
.logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  flex-shrink: 0;
  color: var(--txt);
}
.logo .dot { color: var(--accent); }
.tab-nav {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: 999px;
  flex: 1;
  max-width: 780px;
  justify-content: center;
  overflow: hidden;
}
.tab-btn {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--t60);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s;
  white-space: nowrap;
  font-family: inherit;
  flex-shrink: 0;
}
.tab-btn.active { background: var(--accent); color: #fff; font-weight: 600; }
.tab-btn:not(.active):hover { color: var(--txt); background: var(--gb); }
.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
  display: inline-block;
}
.nav-cta:hover { background: var(--accent2); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile menu -------------------------------------------- */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  z-index: 999;
  background: rgba(11,11,20,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 24px;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
.mob-tab-btn {
  width: 100%;
  max-width: 300px;
  padding: 14px 24px;
  border: 1px solid var(--gb);
  border-radius: var(--rs);
  background: var(--glass2);
  color: var(--t80);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: background .2s, border-color .2s, color .2s;
}
.mob-tab-btn:hover,
.mob-tab-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.mob-cta {
  margin-top: 12px;
  width: 100%;
  max-width: 300px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--rs);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  display: block;
  transition: background .2s;
}
.mob-cta:hover { background: var(--accent2); }

/* --- Hero --------------------------------------------------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 35%, rgba(255,107,53,.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(255,107,53,.05) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  text-align: center;
}
/* Hero elements start invisible, animate in after preloader */
.hero-content > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.hero-content.hero-animate > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.hero-content.hero-animate > *:nth-child(2) { opacity:1; transform:none; transition-delay:.17s; }
.hero-content.hero-animate > *:nth-child(3) { opacity:1; transform:none; transition-delay:.28s; }
.hero-content.hero-animate > *:nth-child(4) { opacity:1; transform:none; transition-delay:.40s; }
.hero-content.hero-animate > *:nth-child(5) { opacity:1; transform:none; transition-delay:.52s; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--glow-s);
  border: 1px solid rgba(255,107,53,.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.hero-title {
  font-size: clamp(28px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  color: var(--txt);
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--t60);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- Sections ----------------------------------------------- */
.section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--txt);
}
.section-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--t60);
  line-height: 1.75;
  max-width: 540px;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--gb);
  margin: 0;
}

/* --- Glass cards -------------------------------------------- */
.glass-card {
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: var(--r);
  padding: 28px;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
  will-change: transform;
}
.glass-card:hover {
  border-color: var(--gb2);
  box-shadow: 0 0 32px rgba(255,107,53,.06);
}

/* --- Buttons ----------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover { background: var(--accent2); box-shadow: 0 8px 32px rgba(255,107,53,.3); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--t80);
  border: 1px solid var(--gb2);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--glass2); color: var(--txt); border-color: var(--t40); }

.btn-calendly {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: background .2s, transform .15s;
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2.8s ease-in-out infinite;
  text-decoration: none;
  white-space: nowrap;
}
.btn-calendly:hover { background: var(--accent2); transform: translateY(-2px); animation: none; box-shadow: 0 12px 40px rgba(255,107,53,.4); }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,.4); }
  55%       { box-shadow: 0 0 0 16px rgba(255,107,53,0); }
}

.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s;
  text-decoration: none;
}
.btn-text:hover { color: var(--accent2); }

/* --- Ripple ------------------------------------------------- */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transform: scale(0);
  animation: ripple-anim .6s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* --- Pain grid --------------------------------------------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.pain-card-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.pain-card-title { font-size: 16px; font-weight: 700; color: var(--txt); margin-bottom: 8px; }
.pain-card-desc { font-size: 14px; color: var(--t60); line-height: 1.7; }

/* --- FAQ accordion ----------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 720px; }
details.faq-item {
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: var(--rs);
  overflow: hidden;
  transition: border-color .2s;
}
details.faq-item[open] { border-color: rgba(255,107,53,.28); }
summary.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--t80);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color .2s;
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  line-height: 1;
}
details[open] summary.faq-question::after { transform: rotate(45deg); }
summary.faq-question:hover { color: var(--txt); }
.faq-answer { padding: 4px 24px 20px; color: var(--t60); font-size: 14px; line-height: 1.85; }

/* --- Process timeline -------------------------------------- */
.process-timeline { display: flex; flex-direction: column; gap: 0; max-width: 620px; }
.process-step { display: flex; gap: 24px; padding-bottom: 36px; position: relative; }
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 42px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gb2), transparent);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-body { padding-top: 8px; }
.step-body h3 { font-size: 17px; font-weight: 700; color: var(--txt); margin-bottom: 6px; line-height: 1.3; }
.step-body p { font-size: 14px; color: var(--t60); line-height: 1.7; }
.step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: var(--glow-s);
  border: 1px solid rgba(255,107,53,.2);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

/* --- Tools grid -------------------------------------------- */
.tools-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tool-badge {
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--t60);
  white-space: nowrap;
}

/* --- Sector cards ------------------------------------------ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.sector-card {
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: var(--rs);
  padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.sector-card:hover { border-color: var(--gb2); box-shadow: 0 0 24px rgba(255,107,53,.05); }
.sector-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.sector-title { font-size: 15px; font-weight: 700; color: var(--t80); margin-bottom: 8px; }
.sector-quote { font-size: 13px; color: var(--t40); font-style: italic; line-height: 1.6; }

/* --- Cadrage offer box (rotating border) ------------------- */
.cadrage-box {
  max-width: 620px;
  margin: 48px auto 0;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(255,107,53,.08), rgba(255,107,53,.02));
  border: 1px solid var(--accent);
  border-radius: var(--r);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cadrage-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  background: conic-gradient(from var(--border-angle), transparent 30%, var(--accent) 50%, transparent 70%);
  z-index: -1;
  animation: rotate-border 4s linear infinite;
  opacity: .35;
}
@keyframes rotate-border { to { --border-angle: 360deg; } }
.cadrage-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.cadrage-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  color: var(--txt);
}
.cadrage-desc {
  font-size: 16px;
  color: var(--t60);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Pour qui grid ----------------------------------------- */
.pour-qui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 640px;
  margin: 40px auto 0;
  text-align: left;
}
.pour-qui-card { background: var(--glass2); border: 1px solid var(--gb); border-radius: var(--rs); padding: 20px; }
.pour-qui-card h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--t40); margin-bottom: 12px; }
.pour-qui-card ul { display: flex; flex-direction: column; gap: 8px; }
.pour-qui-card li { font-size: 13px; color: var(--t60); line-height: 1.6; padding-left: 14px; position: relative; }
.pour-qui-card li::before { content: '·'; position: absolute; left: 0; color: var(--accent); }

/* --- Partner cards ----------------------------------------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.partner-card { background: var(--glass2); border: 1px solid var(--gb); border-radius: var(--r); padding: 28px; }
.partner-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glow-s), var(--glass2));
  border: 1px solid var(--gb2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.partner-name { font-size: 16px; font-weight: 700; color: var(--txt); margin-bottom: 3px; }
.partner-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 12px; display: block; }
.partner-bio { font-size: 13px; color: var(--t60); line-height: 1.75; }

/* --- Guides teasers ---------------------------------------- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.guide-card {
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s;
}
.guide-card:hover { border-color: var(--gb2); }
.guide-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.guide-title { font-size: 17px; font-weight: 700; color: var(--txt); line-height: 1.3; }
.guide-desc { font-size: 13px; color: var(--t60); line-height: 1.7; flex: 1; }
.guide-status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--t40);
  background: var(--glass);
  border: 1px solid var(--gb);
  border-radius: 999px;
  padding: 4px 12px;
  display: inline-block;
  align-self: flex-start;
}

/* --- RGPD block -------------------------------------------- */
.rgpd-block {
  background: rgba(255,107,53,.04);
  border: 1px solid rgba(255,107,53,.12);
  border-radius: var(--r);
  padding: 28px;
  max-width: 680px;
}
.rgpd-block h3 { font-size: 14px; font-weight: 700; color: var(--t80); margin-bottom: 10px; }
.rgpd-block p { font-size: 13px; color: var(--t60); line-height: 1.85; }

/* --- Contact ----------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: var(--rs);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .2s, background .2s;
  text-decoration: none;
  color: inherit;
}
.contact-item:hover { border-color: rgba(255,107,53,.3); background: rgba(255,107,53,.04); }
.contact-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.contact-text-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--t40); margin-bottom: 3px; display: block; }
.contact-text-value { font-size: 15px; font-weight: 600; color: var(--t80); display: block; }
.contact-map {
  background: var(--glass2);
  border: 1px solid var(--gb);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-map svg { width: 100%; height: auto; display: block; opacity: .7; }

/* --- Footer ------------------------------------------------- */
#footer {
  border-top: 1px solid var(--gb);
  padding: 28px 24px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--t40); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--t40); transition: color .2s; }
.footer-links a:hover { color: var(--t80); }

/* --- Floating CTA ------------------------------------------ */
#floating-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
#floating-cta.visible { opacity: 1; transform: none; pointer-events: all; }
.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(255,107,53,.4);
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.floating-btn:hover { background: var(--accent2); transform: scale(1.04); }

/* --- IO triggers ------------------------------------------- */
.io-trigger {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.io-trigger.io-visible { opacity: 1; transform: translateY(0); }
.io-trigger:nth-child(1) { transition-delay:   0ms; }
.io-trigger:nth-child(2) { transition-delay:  80ms; }
.io-trigger:nth-child(3) { transition-delay: 160ms; }
.io-trigger:nth-child(4) { transition-delay: 240ms; }
.io-trigger:nth-child(5) { transition-delay: 320ms; }
.io-trigger:nth-child(6) { transition-delay: 400ms; }
.io-trigger:nth-child(7) { transition-delay: 480ms; }

/* --- Tab sections ------------------------------------------ */
.tab-section { display: none; }
.tab-section.active { display: block; animation: tab-fade-in .35s var(--ease) forwards; }
@keyframes tab-fade-in { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* --- Informational note ------------------------------------ */
.info-note {
  background: var(--glass);
  border: 1px dashed var(--gb2);
  border-radius: var(--rs);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--t40);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 28px;
}
.text-accent { color: var(--accent); }

/* --- Responsive -------------------------------------------- */
@media (max-width: 1100px) {
  .tab-nav  { display: none; }
  .hamburger { display: flex; }
  .nav-cta  { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 20px; }
  #hero { min-height: 90vh; }
  .hero-content { padding: 60px 20px 80px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pour-qui-grid { grid-template-columns: 1fr; }
  .cadrage-box { padding: 32px 24px; }
  #footer { margin-top: 60px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary, .btn-calendly { width: 100%; max-width: 300px; justify-content: center; }
  .section-title { font-size: clamp(22px, 7vw, 34px); }
  #floating-cta { bottom: 20px; right: 16px; }
  .floating-btn { padding: 11px 18px; font-size: 13px; }
  .pour-qui-grid { grid-template-columns: 1fr; }
  /* SVG carte : pas de scroll horizontal à 390px */
  .contact-map svg { max-width: 100%; overflow: hidden; }
}

/* ── Accessibilité mouvement réduit ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  #preloader { transition: none !important; }
  .badge-dot::after { animation: none; }
  @keyframes cta-pulse { from { box-shadow: none; } to { box-shadow: none; } }
}
