/* =====================================================
   SERRURIER PARIS 12e — STYLES
   Brand: Warm gradient — Orange #F2673A → Coral #E8456B → Violet #7B3FE4
   Typography: Playfair Display (headings) + DM Sans (body) + Space Mono (accents)
===================================================== */

/* ---- Variables ---- */
:root {
  --orange: #F2673A;
  --coral: #E8456B;
  --violet: #7B3FE4;
  --lavender: #A066F0;
  --peach: #FDE8D8;
  --cream: #FFF8F4;
  --sand: #F7EFE8;
  --text: #1A1218;
  --text-2: #4A3F47;
  --text-3: #8A7A86;
  --border: #E8DDD7;
  --white: #FFFFFF;

  --grad-main: linear-gradient(135deg, var(--orange) 0%, var(--coral) 50%, var(--violet) 100%);
  --grad-soft: linear-gradient(135deg, #FDE8D8 0%, #FAD4E0 50%, #E8D8FF 100%);

  --nav-h: 74px;
  --r: 14px;
  --r-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(230, 80, 80, 0.10);
  --shadow-md: 0 8px 32px rgba(120, 50, 200, 0.14);
  --shadow-lg: 0 20px 60px rgba(120, 50, 200, 0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ---- Grain overlay ---- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0.025;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ---- Utility ---- */
.section-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.tag-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(232, 69, 107, 0.09);
  border: 1px solid rgba(232, 69, 107, 0.18);
  border-radius: 100px;
  padding: 6px 14px;
}

.tag-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: blink 2s ease-in-out infinite;
}

.tag-label.tag-light {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.tag-label.tag-light::before {
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  margin-top: 16px;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light {
  color: white;
}

.section-title.light em {
  background: linear-gradient(135deg, #FFD4BE 0%, #FFAFC5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  margin-top: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Buttons ---- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad-main);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(242, 103, 58, 0.35);
}

.btn-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(242, 103, 58, 0.45);
}

.btn-main:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.btn-main.btn-sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

.btn-main.btn-lg {
  font-size: 1.05rem;
  padding: 16px 36px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(232, 69, 107, 0.04);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: white;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
}

/* ---- Pulse ---- */
.btn-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: transparent;
  border: 2px solid rgba(242, 103, 58, 0.4);
  animation: ring-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ---- Reveal animations ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 0.7s cubic-bezier(.22, .8, .34, 1) forwards;
  animation-delay: var(--d, 0s);
}

.reveal-fade {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}


/* =====================================================
   NAV
===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(255, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--grad-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.logo-name strong {
  font-weight: 700;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-center a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-center a:hover {
  color: var(--coral);
  background: rgba(232, 69, 107, 0.06);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-phone svg {
  color: var(--orange);
  -webkit-text-fill-color: initial;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.open span:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--cream);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.mesh-blob.b1 {
  width: 700px;
  height: 600px;
  top: -150px;
  left: -200px;
  background: radial-gradient(circle, #FDE8D8, #F2C4A0);
  animation: driftA 18s ease-in-out infinite alternate;
}

.mesh-blob.b2 {
  width: 500px;
  height: 500px;
  top: 100px;
  right: -100px;
  background: radial-gradient(circle, #E8D4FF, #B8A0FF);
  animation: driftB 22s ease-in-out infinite alternate;
}

.mesh-blob.b3 {
  width: 400px;
  height: 350px;
  bottom: 80px;
  left: 30%;
  background: radial-gradient(circle, #FFD4DF, #FFB0C8);
  animation: driftA 16s ease-in-out infinite alternate-reverse;
}

.mesh-blob.b4 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: 20%;
  background: radial-gradient(circle, #FBD8A0, #F8C070);
  animation: driftB 20s ease-in-out infinite alternate;
}

@keyframes driftA {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -30px) scale(1.1);
  }
}

@keyframes driftB {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-30px, 40px) scale(0.95);
  }
}

.hero-inner {
  flex: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 28px;
}

.title-line {
  display: block;
}

.title-accent {
  display: block;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  padding-right: 0;
}

.stat-n {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-l {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 4px;
  white-space: nowrap;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vis-card-main {
  width: 100%;
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.vis-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.vis-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
}

.vis-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
}

.vis-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.vis-sub {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 20px;
}

.vis-bar {
  height: 5px;
  background: var(--sand);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.vis-bar-fill {
  height: 100%;
  width: 65%;
  background: var(--grad-main);
  border-radius: 10px;
  animation: barLoad 1.8s ease-out 0.5s both;
}

@keyframes barLoad {
  from {
    width: 0;
  }

  to {
    width: 65%;
  }
}

.vis-eta {
  font-size: 0.78rem;
  color: var(--text-3);
}

.vis-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 3;
  animation: floatY 3s ease-in-out infinite alternate;
}

.vis-badge.badge-orange {
  background: white;
  color: var(--orange);
  border: 1px solid rgba(242, 103, 58, 0.2);
  top: -16px;
  right: -20px;
}

.vis-badge.badge-orange svg {
  color: var(--orange);
}

.vis-badge.badge-purple {
  background: white;
  color: var(--violet);
  border: 1px solid rgba(123, 63, 228, 0.2);
  bottom: -16px;
  left: -20px;
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.vis-badge.badge-purple svg {
  color: var(--violet);
}

@keyframes floatY {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

/* Ticker */
.ticker-wrap {
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  background: white;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--text-3);
  padding: 0 24px;
  flex-shrink: 0;
}

.ticker-track .ticker-sep {
  color: var(--orange);
  font-weight: 700;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* =====================================================
   SERVICES
===================================================== */
.services {
  padding: 120px 0;
  background: white;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.srv-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.srv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 69, 107, 0.2);
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card.srv-featured {
  background: var(--grad-soft);
  border-color: rgba(232, 69, 107, 0.2);
  grid-row: span 1;
}

.srv-card.srv-featured::before {
  transform: scaleX(1);
}

.srv-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.srv-icon-wrap {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.srv-featured .srv-icon-wrap {
  background: white;
  color: var(--coral);
}

.srv-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.srv-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.srv-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.srv-footer span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(242, 103, 58, 0.09);
  border: 1px solid rgba(242, 103, 58, 0.18);
  border-radius: 100px;
  padding: 5px 12px;
}


/* =====================================================
   METHODE
===================================================== */
.methode {
  padding: 120px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.methode-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.md-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.md1 {
  width: 600px;
  height: 500px;
  top: -100px;
  left: -100px;
  background: var(--orange);
}

.md2 {
  width: 500px;
  height: 400px;
  bottom: -50px;
  right: -80px;
  background: var(--violet);
}

.methode-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.methode-left {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.methode-left .section-title {
  margin-top: 16px;
}

.methode-left .section-sub {
  margin: 0;
  text-align: left;
}

.methode-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mstep {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.mstep:last-child {
  border-bottom: none;
}

.mstep-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  padding-top: 4px;
}

.mstep-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mstep-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.mstep-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
}

.mstep-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}


/* =====================================================
   FOCUS — Paris 12e
===================================================== */
.focus {
  padding: 120px 0;
  background: var(--sand);
  position: relative;
}

.focus-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.focus-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 16px 0 24px;
  color: var(--text);
}

.focus-text h2 em {
  font-style: italic;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.focus-text p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.focus-text p strong {
  color: var(--text);
  font-weight: 600;
}

.focus-zones {
  background: white;
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.focus-zones h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.zones-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.zone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.zone-item svg {
  color: var(--coral);
  flex-shrink: 0;
}

.focus-card-cta {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.focus-card-cta p {
  font-size: 0.85rem;
  color: var(--text-3);
}


/* =====================================================
   TARIFS
===================================================== */
.tarifs {
  padding: 120px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.tarifs-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.tb-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.tb1 {
  width: 500px;
  height: 400px;
  top: -80px;
  right: -80px;
  background: var(--violet);
}

.tb2 {
  width: 400px;
  height: 300px;
  bottom: -60px;
  left: -60px;
  background: var(--orange);
}

.tarifs-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.tarif-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tarif-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.tarif-card:first-child {
  border-top: 1px solid var(--border);
}

.tarif-card:hover {
  background: var(--cream);
}

.tarif-card.tarif-highlight {
  background: var(--grad-soft);
  border-radius: var(--r-sm);
}

.tarif-card.tarif-highlight:hover {
  background: var(--grad-soft);
}

.tc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  flex-shrink: 0;
}

.tarif-highlight .tc-icon {
  background: white;
  color: var(--coral);
}

.tc-content {
  flex: 1;
}

.tc-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.tc-cond {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 2px;
}

.tc-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  background: rgba(242, 103, 58, 0.08);
  border: 1px solid rgba(242, 103, 58, 0.15);
  border-radius: 100px;
  padding: 5px 12px;
}

.tarif-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--r-sm);
}

.tarif-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-3);
}

.tarif-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.tarif-guarantee {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
}

.tarif-guarantee h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

.tarif-guarantee ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tarif-guarantee li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-2);
}

.tarif-guarantee li svg {
  color: var(--coral);
  flex-shrink: 0;
}

.tarif-cta-card {
  background: var(--grad-main);
  border-radius: var(--r);
  padding: 28px;
  color: white;
}

.tcc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tcc-sub {
  font-size: 0.85rem;
  opacity: 0.82;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tarif-cta-card .btn-main {
  background: white;
  color: var(--orange);
  box-shadow: none;
  -webkit-text-fill-color: var(--orange);
}

.tarif-cta-card .btn-main:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   AVIS
===================================================== */
.avis {
  padding: 120px 0;
  background: var(--sand);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.avis-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.avis-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.avis-card.avis-featured {
  background: var(--grad-main);
  border: none;
  color: white;
}

.avis-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
}

.avis-featured .stars {
  color: rgba(255, 255, 255, 0.9);
}

.avis-tag-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  background: var(--cream);
  border-radius: 100px;
  padding: 4px 10px;
}

.avis-featured .avis-tag-label {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.avis-card blockquote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-2);
  flex: 1;
}

.avis-featured blockquote {
  color: rgba(255, 255, 255, 0.9);
}

.avis-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.avis-featured footer {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.avis-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-main);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.avis-featured .avis-avatar {
  background: rgba(255, 255, 255, 0.25);
}

.avis-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.avis-featured .avis-name {
  color: white;
}

.avis-loc {
  font-size: 0.78rem;
  color: var(--text-3);
}

.avis-featured .avis-loc {
  color: rgba(255, 255, 255, 0.7);
}


/* =====================================================
   FAQ
===================================================== */
.faq {
  padding: 120px 0;
  background: var(--text);
  position: relative;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.faq-o1 {
  width: 600px;
  height: 500px;
  top: -100px;
  right: -100px;
  background: var(--coral);
}

.faq-o2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -60px;
  background: var(--violet);
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.faq-left {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-left .section-title {
  margin-top: 12px;
}

.faq-left .section-sub {
  margin: 0;
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 28px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.faq-q:hover {
  opacity: 0.8;
}

.fq-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
}

.fq-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-align: left;
  line-height: 1.3;
}

.fq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-q[aria-expanded="true"] .fq-icon {
  background: var(--coral);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a.open {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 52px 24px;
}

.faq-a-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

.faq-a-inner a {
  color: var(--peach);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =====================================================
   CONTACT
===================================================== */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fi {
  position: absolute;
  left: 14px;
  color: var(--text-3);
  pointer-events: none;
  z-index: 1;
}

.input-wrap input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: white;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-form textarea {
  padding: 13px 16px;
  resize: vertical;
  min-height: 110px;
}

.input-wrap input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.12);
}

.input-wrap input[readonly] {
  background: var(--cream);
  color: var(--text-3);
}

.field-hint {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.5;
}

.field-hint.is-error {
  color: #EF4444;
}

/* Select */
.select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.select-wrap .fi {
  left: 14px;
  z-index: 1;
}

.select-wrap select {
  width: 100%;
  padding: 13px 40px 13px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: white;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.select-wrap select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 69, 107, 0.12);
}

.sel-chev {
  position: absolute;
  right: 14px;
  color: var(--text-3);
  pointer-events: none;
}

/* Checkbox */
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.check-label input:checked+.check-box {
  background: var(--coral);
  border-color: var(--coral);
}

.check-label input:checked+.check-box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 2px;
  width: 8px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.check-label span:last-child {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Address autocomplete */
.address-wrap {
  position: relative;
}

.addr-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.addr-suggestions.is-visible {
  display: block;
}

.addr-suggestions li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
}

.addr-suggestions li:last-child {
  border-bottom: none;
}

.addr-suggestions li:hover,
.addr-suggestions li.is-highlighted {
  background: var(--cream);
}

.sug-main {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.sug-extra {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 1px;
}

.sug-dept {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--violet);
  background: rgba(123, 63, 228, 0.08);
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}

/* Form actions */
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-feedback {
  font-size: 0.85rem;
  line-height: 1.5;
  min-height: 20px;
}

.form-feedback.is-error {
  color: #EF4444;
}

.form-feedback.is-success {
  color: #22C55E;
}

/* Contact aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.aside-phone-card {
  background: var(--grad-main);
  border-radius: var(--r);
  padding: 28px;
  color: white;
  text-align: center;
}

.apc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.apc-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 8px;
}

.apc-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.apc-number:hover {
  opacity: 0.85;
}

.apc-note {
  font-size: 0.78rem;
  opacity: 0.7;
}

.aside-map-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.amap-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.amap-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

.amap-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--violet);
  background: rgba(123, 63, 228, 0.08);
  border-radius: 4px;
  padding: 2px 7px;
  margin-left: auto;
}

.amap-frame iframe {
  display: block;
  width: 100%;
  height: 200px;
}

.amap-caption {
  font-size: 0.78rem;
  color: var(--text-3);
  padding: 10px 14px;
}


/* =====================================================
   CTA BAND
===================================================== */
.cta-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--grad-main);
}

.cta-band-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ctab-b1, .ctab-b2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.ctab-b1 {
  width: 500px;
  height: 400px;
  top: -100px;
  left: -50px;
  background: #FFB0A0;
}

.ctab-b2 {
  width: 400px;
  height: 300px;
  bottom: -80px;
  right: -60px;
  background: #C0A0FF;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.ctab-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.ctab-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
}

.ctab-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.ctab-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cta-band .btn-main {
  background: white;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.cta-band .btn-main svg {
  -webkit-text-fill-color: initial;
  color: var(--orange);
}


/* =====================================================
   FOOTER
===================================================== */
.footer {
  padding: 80px 0 40px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .nav-logo {
  color: white;
}

.footer-brand .logo-name {
  color: white;
}

.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fc-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-bottom nav a:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* =====================================================
   FLOAT ACTIONS
===================================================== */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}

.float-call, .float-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-call:hover, .float-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.float-call {
  background: var(--grad-main);
  color: white;
}

.float-top {
  background: white;
  color: var(--text-2);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}

.float-top.visible {
  opacity: 1;
  pointer-events: all;
}


/* =====================================================
   RESPONSIVE — TABLET (max 1024px)
===================================================== */
@media (max-width: 1024px) {

  /* Nav */
  .nav-center {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255, 248, 244, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .nav-center.open {
    display: flex;
  }

  .nav-center a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .nav-burger {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px 48px;
  }

  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Methode */
  .methode-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .methode-left {
    position: static;
  }

  /* Focus */
  .focus-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Tarifs */
  .tarifs-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tarif-aside {
    position: static;
  }

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-left {
    position: static;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-aside {
    position: static;
  }

  /* CTA Band */
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .ctab-right {
    justify-content: center;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* =====================================================
   RESPONSIVE — MOBILE (max 768px)
===================================================== */
@media (max-width: 768px) {

  /* Global spacing */
  .section-wrap {
    padding: 0 20px;
  }

  /* Sections padding */
  .services,
  .methode,
  .focus,
  .tarifs,
  .avis,
  .faq,
  .contact {
    padding: 80px 0;
  }

  .cta-band {
    padding: 60px 0;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 40px;
  }

  .section-sub {
    font-size: 0.92rem;
  }

  /* Nav */
  :root {
    --nav-h: 64px;
  }

  .nav-inner {
    padding: 0 20px;
    gap: 16px;
  }

  .nav-phone span {
    display: none;
  }

  .nav-phone {
    width: 40px;
    height: 40px;
    background: var(--grad-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-text-fill-color: initial;
    color: white;
    flex-shrink: 0;
  }

  .nav-phone svg {
    color: white;
  }

  .logo-sub {
    display: none;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions .btn-main,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    width: 100%;
    padding: 16px 20px;
    justify-content: space-between;
  }

  .stat {
    padding: 0 16px;
  }

  .stat:first-child {
    padding-left: 0;
  }

  .stat:last-child {
    padding-right: 0;
  }

  .stat-n {
    font-size: 1.5rem;
  }

  .hero-visual {
    display: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .srv-card {
    padding: 24px;
  }

  /* Methode */
  .methode-layout {
    gap: 40px;
  }

  .methode-left {
    gap: 18px;
  }

  .methode-left .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .mstep {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  /* Focus */
  .focus-layout {
    gap: 36px;
  }

  .focus-text h2 {
    font-size: 1.7rem;
  }

  /* Tarifs */
  .tarifs-layout {
    gap: 32px;
  }

  .tarif-card {
    padding: 16px;
    gap: 12px;
  }

  .tc-icon {
    width: 36px;
    height: 36px;
  }

  .tc-price {
    font-size: 12px;
    padding: 4px 10px;
  }

  .tarif-guarantee {
    padding: 22px;
  }

  .tarif-cta-card {
    padding: 22px;
  }

  .tarif-cta-card .btn-main {
    width: 100%;
    justify-content: center;
  }

  /* Avis */
  .avis-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* FAQ */
  .faq-layout {
    gap: 36px;
  }

  .faq-left .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .faq-q {
    grid-template-columns: 30px 1fr 26px;
    gap: 12px;
    padding: 20px 0;
  }

  .fq-text {
    font-size: 0.92rem;
  }

  .faq-a-inner {
    padding: 0 42px 20px;
  }

  .faq-a-inner p {
    font-size: 0.875rem;
  }

  /* Contact */
  .contact-layout {
    gap: 32px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .form-actions .btn-main,
  .form-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* CTA Band */
  .ctab-title {
    font-size: 1.6rem;
  }

  .ctab-right {
    flex-direction: column;
    width: 100%;
  }

  .ctab-right .btn-main,
  .ctab-right .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 60px 0 32px;
  }

  .footer-top {
    gap: 36px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Float actions */
  .float-actions {
    bottom: 20px;
    right: 16px;
  }

  .float-call, .float-top {
    width: 46px;
    height: 46px;
  }
}


/* =====================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
===================================================== */
@media (max-width: 480px) {

  /* Nav */
  .logo-name {
    font-size: 0.875rem;
  }

  /* Hero */
  .hero-inner {
    padding: 40px 16px 32px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .hero-eyebrow {
    font-size: 10px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px;
  }

  .stat-div {
    display: none;
  }

  .stat {
    padding: 8px 16px;
  }

  /* Ticker */
  .ticker-track span {
    padding: 0 16px;
    font-size: 10.5px;
  }

  /* Services */
  .srv-card {
    padding: 20px;
  }

  .srv-card h3 {
    font-size: 1.1rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.7rem;
  }

  /* Methode */
  .mstep {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .mstep-num {
    font-size: 10px;
  }

  /* Focus zones */
  .focus-zones {
    padding: 22px;
  }

  .focus-zones h3 {
    font-size: 1rem;
  }

  /* Tarifs */
  .tarif-card {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tc-icon {
    display: none;
  }

  .tc-price {
    margin-left: auto;
  }

  /* Avis */
  .avis-card {
    padding: 22px;
  }

  /* FAQ */
  .faq-q {
    grid-template-columns: 24px 1fr 24px;
    gap: 10px;
  }

  .fq-text {
    font-size: 0.875rem;
  }

  .faq-a-inner {
    padding: 0 34px 18px;
  }

  /* Contact */
  .section-wrap {
    padding: 0 16px;
  }

  .aside-phone-card {
    padding: 22px;
  }

  .apc-number {
    font-size: 1.35rem;
  }

  /* CTA Band */
  .ctab-title {
    font-size: 1.4rem;
  }

  /* Footer */
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* =====================================================
   RESPONSIVE — EXTRA LARGE (min 1400px)
===================================================== */
@media (min-width: 1400px) {
  .section-wrap {
    max-width: 1280px;
  }

  .hero-inner {
    max-width: 1280px;
    padding: 100px 40px 80px;
  }

  .nav-inner {
    max-width: 1280px;
    padding: 0 40px;
  }

  .hero-title {
    font-size: 5.2rem;
  }

  .section-title {
    font-size: 3.2rem;
  }
}

/* =====================================================
   LEGAL.CSS — Pages CGU / Mentions / Confidentialité
   Serrurier Paris 12e — Complément de styles.css
   À charger APRÈS styles.css sur les pages légales
===================================================== */

/* ---- Layout principal ---- */
.legal-main {
  padding-top: var(--nav-h);
  min-height: 100vh;
  background: var(--cream);
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px 100px;
}

/* ---- Breadcrumb ---- */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 48px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-3);
}

.legal-breadcrumb a {
  color: var(--text-3);
  transition: color 0.2s;
}

.legal-breadcrumb a:hover {
  color: var(--coral);
}

.legal-breadcrumb svg {
  color: var(--border);
  flex-shrink: 0;
}

.legal-breadcrumb span {
  color: var(--text-2);
}

/* ---- Hero légal ---- */
.legal-hero {
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
}

.legal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(232, 69, 107, 0.08);
  border: 1px solid rgba(232, 69, 107, 0.18);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.legal-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.legal-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}

.legal-h1 em {
  font-style: italic;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.legal-date svg {
  color: var(--text-3);
  flex-shrink: 0;
}

.legal-intro {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 680px;
}

.legal-intro strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- Corps légal ---- */
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ---- Section ---- */
.legal-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.legal-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Blocs de contenu ---- */
.legal-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-block p {
  font-size: 0.93rem;
  color: var(--text-2);
  line-height: 1.8;
}

.legal-block p strong {
  color: var(--text);
  font-weight: 600;
}

.legal-block a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232, 69, 107, 0.3);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.legal-block a:hover {
  color: var(--violet);
  text-decoration-color: rgba(123, 63, 228, 0.5);
}

.legal-block ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 0;
  list-style: none;
}

.legal-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 0;
}

.legal-block ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--grad-main);
  flex-shrink: 0;
  margin-top: 9px;
}

.legal-block ul li strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- Notice info ---- */
.legal-notice {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  background: rgba(242, 103, 58, 0.05);
  border: 1px solid rgba(242, 103, 58, 0.15);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 16px !important;
  font-size: 0.875rem !important;
  color: var(--text-2) !important;
  line-height: 1.7 !important;
}

.legal-notice svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Liens croisés (bas de page) ---- */
.legal-links-row {
  display: flex;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.legal-link-card {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.legal-link-card svg {
  color: var(--coral);
  flex-shrink: 0;
}

.legal-link-card:hover {
  border-color: var(--coral);
  color: var(--coral);
  box-shadow: var(--shadow-sm);
}

/* ---- Bouton retour accueil ---- */
.legal-btn-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 13px 24px;
  background: var(--grad-main);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(242, 103, 58, 0.3);
  width: fit-content;
}

.legal-btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242, 103, 58, 0.4);
}


/* =====================================================
   RESPONSIVE LÉGAL
===================================================== */
@media (max-width: 768px) {
  .legal-wrap {
    padding: 0 20px 72px;
  }

  .legal-breadcrumb {
    padding-top: 32px;
    margin-bottom: 24px;
  }

  .legal-h1 {
    font-size: clamp(2.2rem, 8vw, 2.8rem);
  }

  .legal-hero {
    margin-bottom: 48px;
    padding-bottom: 40px;
  }

  .legal-section {
    padding: 32px 0;
  }

  .legal-section h2 {
    font-size: 1.15rem;
    flex-wrap: wrap;
    gap: 10px;
  }

  .legal-links-row {
    flex-direction: column;
    gap: 10px;
  }

  .legal-link-card {
    width: 100%;
    justify-content: flex-start;
  }

  .legal-btn-home {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .legal-wrap {
    padding: 0 16px 60px;
  }

  .legal-h1 {
    font-size: 2rem;
  }

  .legal-block p,
  .legal-block ul li {
    font-size: 0.875rem;
  }

  .legal-notice {
    font-size: 0.825rem !important;
  }
}