:root {
    --cream: #FBF7F0;
    --warm: #F0E8DA;
    --peach: #F2CDB0;
    --terracotta: #C8603A;
    --rust: #A8472A;
    --sage: #7A9E8E;
    --deep: #1E1812;
    --mid: #4A3728;
    --sand: #B89B80;
    --light: #D4BEA8;
    --fun: #E8834A;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--deep);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--deep);
    padding: 12px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .topbar a {
    color: var(--light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s;
  }
  .topbar a:hover { color: var(--peach); }
  .topbar .sep { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }

  /* ── HERO ── */
  .hero {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(232,131,74,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 48px 52px 60px;
    position: relative;
    z-index: 1;
  }
  .logo-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
  }
  .logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--peach);
    box-shadow: 0 8px 32px rgba(200,96,58,0.2);
    flex-shrink: 0;
  }
  .logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--deep);
    line-height: 1;
    letter-spacing: -0.5px;
  }
  .logo-name span { color: var(--terracotta); }
  .logo-tagline-small {
    font-size: 12px;
    font-weight: 500;
    color: var(--sand);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(200,96,58,0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    color: var(--deep);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--terracotta);
  }
  .hero-lead {
    font-size: 17px;
    color: var(--mid);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terracotta);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(200,96,58,0.3);
  }
  .btn-primary:hover { background: var(--rust); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,96,58,0.4); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--deep);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: 1.5px solid var(--light);
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover { border-color: var(--terracotta); color: var(--terracotta); }
  .btn-ghost {
	  display: inline-flex; align-items: center; gap: 8px;
	  background: rgba(168,212,196,0.15); color: #a8d4c4; font-weight: 600; font-size: 15px;
	  padding: 13px 22px; border-radius: 100px; text-decoration: none;
	  border: 1.5px solid rgba(168,212,196,0.4);
	  transition: background 0.2s, border-color 0.2s, color 0.2s;
	  font-family: 'Cormorant Garamond', serif;
	}
	.btn-ghost:hover { background: rgba(168,212,196,0.28); border-color: #a8d4c4; color: #fff; }
	.btn-ghost .btn-emoji { font-family: 'DM Sans', sans-serif; font-size: 16px; }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
  }
  .hero-right-inner {
    position: relative;
    width: 100%;
    max-width: 420px;
  }
  .hero-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(30,24,18,0.1);
    position: relative;
    z-index: 1;
  }
  .hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 20px;
  }
  .promise-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
  .promise-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--mid); }
  .promise-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
  .promise-list strong { display: block; color: var(--deep); font-weight: 600; font-size: 14px; }
  .hero-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 100px; height: 100px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(200,96,58,0.4);
  }
  .hero-badge span { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 800; line-height: 1; }

  /* ── SECTIONS ── */
  .section { max-width: 1120px; margin: 0 auto; padding: 80px 40px; }
  .section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px;
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700; color: var(--deep);
    line-height: 1.15; margin-bottom: 40px; letter-spacing: -0.5px;
  }
  h2 em { font-style: italic; font-weight: 300; color: var(--terracotta); }

  /* ── STRIPE ── */
  .stripe { background: var(--deep); }
  .stripe .section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; padding: 0; max-width: 100%;
  }
  .stripe-item {
    padding: 56px 48px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
  }
  .stripe-item:last-child { border-right: none; }
  .stripe-item:hover { background: rgba(255,255,255,0.03); }
  .stripe-emoji { font-size: 36px; margin-bottom: 16px; display: block; }
  .stripe-item h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 20px;
    font-weight: 600; color: var(--cream); margin-bottom: 10px;
  }
  .stripe-item p { font-size: 14px; color: var(--sand); line-height: 1.75; }

  /* ── CARDS PRESTATIONS ── */
  .cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .pcard {
    background: #fff; border-radius: 20px; padding: 36px;
    border: 1.5px solid var(--warm);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
  }
  .pcard::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--fun));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
  }
  .pcard:hover { box-shadow: 0 16px 48px rgba(30,24,18,0.1); transform: translateY(-4px); border-color: var(--peach); }
  .pcard:hover::after { transform: scaleX(1); }
  .pcard-icon { font-size: 32px; margin-bottom: 14px; display: block; }
  .pcard h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--deep); margin-bottom: 16px; }
  .pcard ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
  .pcard li { font-size: 14px; color: var(--mid); padding-left: 18px; position: relative; line-height: 1.6; }
  .pcard li::before { content: '🐾'; font-size: 10px; position: absolute; left: 0; top: 3px; }
  .pcard .note { font-style: italic; font-size: 13px; color: var(--sand); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--warm); }

  /* ── PROCESS ── */
  .process-bg { background: var(--warm); }
  .steps-row {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 16px; position: relative; margin-top: 8px;
  }
  .steps-row::before {
    content: ''; position: absolute; top: 36px; left: 48px; right: 48px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--sand) 0, var(--sand) 6px, transparent 6px, transparent 14px);
  }
  .step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
  .step-bubble {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--deep); color: var(--cream);
    font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; box-shadow: 0 4px 16px rgba(30,24,18,0.15); flex-shrink: 0;
  }
  .step h4 { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600; color: var(--deep); margin-bottom: 6px; }
  .step p { font-size: 12.5px; color: var(--mid); line-height: 1.6; }

  /* ── TARIFS ── */
.tarifs-bg { background: var(--deep); }
.tarifs-bg h2 { color: var(--cream); }
.tarifs-bg .section-label { color: var(--peach); }

.tarifs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.tarif-left-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tarif-right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tarif-main {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
}
.tarif-header { background: var(--terracotta); padding: 24px 32px; }
.tarif-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; font-weight: 600; }
.tarif-header p { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 2px; }
.tarif-rows { padding: 8px 0; }
.tarif-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 32px; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-row:hover { background: rgba(255,255,255,0.04); }
.tarif-row-label { font-size: 15px; color: var(--light); }
.tarif-row-price { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,3vw,36px); font-weight: 700; color: var(--peach); letter-spacing: -1px; }
.tarif-row-price small { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; color: var(--sand); }
.tarif-tva { padding: 12px 32px; font-size: 11.5px; color: var(--sand); font-style: italic; border-top: 1px solid rgba(255,255,255,0.06); }

.tarif-promos { display: flex; flex-direction: column; gap: 12px; }
.tarif-promo {
  background: rgba(122,158,142,0.15); border: 1px solid rgba(122,158,142,0.3);
  border-radius: 14px; padding: 20px 22px; color: var(--cream);
  font-size: 13.5px; line-height: 1.65;
  display: grid; grid-template-columns: 1fr auto; column-gap: 20px; align-items: start;
}
.tarif-promo-body { display: flex; flex-direction: column; gap: 4px; }
.tarif-promo-icon { font-size: 20px; margin-bottom: 6px; display: block; }
.tarif-promo strong { display: block; color: #a8d4c4; margin-bottom: 4px; font-size: 15px; font-family: 'Cormorant Garamond', serif; }
.tarif-promo ul { list-style: none; padding: 0; margin: 6px 0; }
.tarif-promo ul li { font-size: 13px; color: var(--light); padding-left: 14px; position: relative; line-height: 1.6; }
.tarif-promo ul li::before { content: '·'; position: absolute; left: 4px; color: #a8d4c4; font-size: 18px; line-height: 1; }
.tarif-promo-note { font-size: 11.5px; color: var(--sand); font-style: italic; margin-top: 6px; }
.tarif-promo-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(168,212,196,0.15); border: 1px solid rgba(168,212,196,0.3);
  border-radius: 12px; padding: 14px 16px; text-align: center;
  min-width: 80px; flex-shrink: 0; align-self: center;
}
.tarif-promo-badge .badge-amount { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 800; color: #a8d4c4; line-height: 1; }
.tarif-promo-badge .badge-label { font-size: 10px; color: var(--sand); font-weight: 500; margin-top: 4px; line-height: 1.3; }

.tarif-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
}
.tarif-info-header { background: var(--terracotta); padding: 24px 32px; }
.tarif-info-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: #fff; }
.tarif-info-header p { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 2px; }
.tarif-info-blocks { padding: 8px 0; }
.tarif-info-block {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tarif-info-block:last-child { border-bottom: none; }
.tarif-info-block-title {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600;
  color: #a8d4c4; margin-bottom: 12px;
}
.tarif-info-block-title .tib-emoji { font-size: 18px; }
.tarif-info-lines { display: flex; flex-direction: column; gap: 8px; }
.tarif-info-line {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 15px; color: var(--light); line-height: 1.6;
}
.tarif-info-line::before { content: '·'; color: var(--terracotta); font-size: 20px; line-height: 0.9; flex-shrink: 0; }
.tarif-info-line em { color: var(--sand); font-style: italic; }

.tarif-info-cta {
  margin-top: auto;
  background: rgba(122,158,142,0.15);
  border: 1px solid rgba(122,158,142,0.3);
  border-radius: 14px; padding: 20px 22px;
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center; justify-content: center;
}

@media (max-width: 1024px) {
  .tarifs-layout { grid-template-columns: 1fr; align-items: start; }
  .tarif-right-wrapper { justify-content: flex-start; }
}

  /* ── CONDITIONS ── */
  .cond-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cond-card { border-radius: 16px; padding: 32px; border: 1.5px solid var(--warm); background: #fff; }
  .cond-card h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600;
    color: var(--deep); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
  }
  .cond-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
  .cond-card li { font-size: 13.5px; color: var(--mid); padding-left: 20px; position: relative; line-height: 1.6; }
  .cond-card li::before { content: '·'; position: absolute; left: 7px; color: var(--terracotta); font-size: 20px; line-height: 1; top: 1px; }

  /* ── CRÉDIBILITÉ ── */
  .cred-bg { background: var(--warm); }
  .cred-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: center; }
  .cred-left { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .cred-photo {
    width: 200px; height: 200px;
    border-radius: 50%; object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 12px 40px rgba(200,96,58,0.25);
  }
  .cred-photo-placeholder {
    width: 200px; height: 200px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 12px 40px rgba(200,96,58,0.25);
    background: var(--warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--sand);
    font-size: 13px;
    font-style: italic;
    text-align: center;
    padding: 20px;
  }
  .cred-photo-placeholder span { font-size: 36px; }
  .cred-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--deep); line-height: 1.2; }
  .cred-role { font-size: 13px; color: var(--sand); font-weight: 500; letter-spacing: 1px; }
  .rc-badge {
    background: var(--deep); color: var(--cream);
    border-radius: 100px; padding: 8px 16px;
    font-size: 11.5px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    text-align: center; line-height: 1.4;
  }
  .cred-quote-text {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 17px; color: var(--mid); line-height: 1.6;
    border-left: 3px solid var(--terracotta); padding-left: 20px;
  }
  .cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
	/* Le 5ème item s'étale sur 2 colonnes pour rester centré */
.cred-item--label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.cred-label-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
  .cred-item {
    background: #fff; border-radius: 14px; padding: 22px;
    border-left: 3px solid var(--terracotta);
  }
  .cred-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 600; color: var(--deep); margin-bottom: 6px; }
  .cred-item p { font-size: 13px; color: var(--mid); line-height: 1.6; }
  .cred-item.full { grid-column: span 2; }

  /* ── CTA ── */
  .cta-section { background: var(--terracotta); text-align: center; padding: 80px 40px; position: relative; overflow: hidden; }
  .cta-section::before { content: '🐾'; position: absolute; font-size: 200px; opacity: 0.06; bottom: -30px; right: -20px; pointer-events: none; }
  .cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 4vw, 44px); font-weight: 700; color: #fff; margin-bottom: 12px; }
  .cta-section p { font-size: 16px; color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 36px; }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--terracotta); font-weight: 600; font-size: 14px;
    padding: 14px 28px; border-radius: 100px; text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
  .cta-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .cta-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; font-weight: 600; font-size: 14px;
    padding: 14px 28px; border-radius: 100px; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.2s, background 0.2s;
  }
  .cta-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

  /* ── FOOTER ── */
  .footer-bar {
    background: var(--deep); padding: 32px 40px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  }
  .footer-logo { display: flex; align-items: center; gap: 12px; }
  .footer-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; opacity: 0.9; }
  .footer-logo span { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--cream); }
  .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-links a { color: var(--sand); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-links a:hover { color: var(--peach); }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* ── SVG ICONS helper ── */
  .ico { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
  .ico-sm { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .tarifs-layout { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .topbar { padding: 10px 20px; gap: 12px; justify-content: center; }
    .topbar .sep { display: none; }
    .topbar a { font-size: 12px; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 48px 24px 32px; }
    .hero-right { padding: 0 24px 48px; }
    .hero-right-inner { max-width: 100%; }
    .hero-badge { bottom: -12px; right: 0; width: 84px; height: 84px; font-size: 10px; }
    .hero-badge span { font-size: 22px; }
    .logo-block { margin-bottom: 32px; }
    .logo-img { width: 70px; height: 70px; }
    .logo-name { font-size: 26px; }

    .stripe .section { grid-template-columns: 1fr; padding: 0; }
    .stripe-item { padding: 36px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .stripe-item:last-child { border-bottom: none; }

    .section { padding: 56px 24px; }

    .cards-grid { grid-template-columns: 1fr; }

    .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; }
    .steps-row::before { display: none; }

    .tarif-boxes { gap: 10px; }

    .cond-grid { grid-template-columns: 1fr; }

    .cred-layout { grid-template-columns: 1fr; gap: 36px; }
    .cred-grid { grid-template-columns: 1fr; }
    .cred-item.full { grid-column: span 1; }

    .footer-bar { flex-direction: column; text-align: center; padding: 24px 20px; }
    .footer-links { justify-content: center; }

    h2 { margin-bottom: 28px; }
  }

  @media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .steps-row { grid-template-columns: 1fr; }
    .tarif-boxes { gap: 8px; }
    .cta-btns { flex-direction: column; align-items: center; }
    .hero-card { padding: 24px; }
    .topbar { gap: 8px; }
    .topbar a span { display: none; }
  }

  /* ── Pattes dans tarif-box sans modifier le design existant ── */
.tarif-box .tbox-lines {
  margin: 0;
}

.tarif-box .tbox-lines span {
  display: block;
  position: relative;
  padding-left: 18px;
}

.tarif-box .tbox-lines span::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 10px;
  color: var(--peach);
  opacity: 0.85;
}
.footer-legal {
  margin-top: 8px;
  font-size: 0.8em;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-legal a { color: var(--sand); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-legal a:hover { color: var(--peach); }
/* MIAOUCRATIE-REFINED-OVERRIDES */
.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px 16px;
  flex-wrap: wrap;
}
.site-header .nav-links {
  display: none !important;
}
.site-menu {
  position: relative;
  flex-shrink: 0;
}
.site-menu > summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--sand, #E8DDD0);
  background: var(--W, #FFFFFF);
  border-radius: 12px;
  color: var(--N, #1A1A1A);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}
.site-menu > summary::-webkit-details-marker {
  display: none;
}
.site-menu[open] > summary,
.site-menu > summary:hover {
  border-color: var(--T, #A8472A);
}
.site-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--sand, #E8DDD0);
  background: var(--W, #FFFFFF);
  box-shadow: 0 16px 38px rgba(30,24,18,0.14);
  z-index: 1000;
  display: grid;
  gap: 6px;
}
.site-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--mid, #4A3728);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.site-menu-panel a:hover {
  background: rgba(168,71,42,0.06);
  color: var(--T, #A8472A);
}
.site-menu-panel a.is-current {
  background: rgba(168,71,42,0.10);
  color: var(--T, #A8472A);
}
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--sand, #E8DDD0);
  background: var(--W, #FFFFFF);
  color: var(--T, #A8472A);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
}
.inline-cta:hover {
  border-color: var(--T, #A8472A);
  background: rgba(168,71,42,0.04);
}
.tarifs-page .tarifs-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 40px 18px;
}
.tarifs-page .tarifs-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--deep, #1E1812);
  margin: 10px 0 14px;
}
.tarifs-page .tarifs-hero-sub {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--mid, #4A3728);
  margin-bottom: 24px;
}
.tarifs-page .tarifs-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tarifs-page .tarifs-hero-cta .btn-primary,
.tarifs-page .tarifs-hero-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.tarifs-page .tarifs-bg {
  background: var(--cream, #FBF7F0) !important;
}
.tarifs-page .tarifs-bg h2,
.tarifs-page .tarifs-bg .section-label {
  color: var(--deep, #1E1812) !important;
}
.tarifs-page .tarifs-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 32px;
}
.tarifs-page .tarif-main,
.tarifs-page .tarif-info-card {
  background: #fff !important;
  border-color: var(--warm, #F0E8DA) !important;
}
.tarifs-page .tarif-header,
.tarifs-page .tarif-info-header {
  background: var(--terracotta, #C8603A) !important;
}
.tarifs-page .tarif-row-label,
.tarifs-page .tarif-info-line,
.tarifs-page .tarif-promo,
.tarifs-page .tarif-promo-body,
.tarifs-page .tarif-promo-note {
  color: var(--mid, #4A3728) !important;
}
.tarifs-page .tarif-row-price,
.tarifs-page .badge-amount {
  color: var(--terracotta, #C8603A) !important;
}
.tarifs-page .tarif-promo strong,
.tarifs-page .tarif-info-block-title {
  color: var(--deep, #1E1812) !important;
}
.tarifs-page .tarif-promo ul li {
  color: var(--mid, #4A3728) !important;
}
.tarifs-page .tarif-promos {
  gap: 14px;
}
.tarifs-page .tarif-promo {
  background: #fff !important;
  border: 1px solid var(--warm, #F0E8DA) !important;
}
.tarifs-page .tarif-promo-badge {
  background: rgba(200,96,58,0.06) !important;
  border-color: rgba(200,96,58,0.16) !important;
}
.tarifs-page .tarif-info-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}
.tarifs-page .tarif-info-block {
  border: 1px solid var(--warm, #F0E8DA);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  border-bottom: none !important;
}
.tarifs-page .tarif-info-block:last-child {
  border-bottom: 1px solid var(--warm, #F0E8DA) !important;
}
.tarifs-page .tarif-info-cta {
  display: none !important;
}
.tarifs-page .tarif-right-wrapper {
  gap: 0;
}
@media (max-width: 1024px) {
  .tarifs-page .tarifs-layout {
    grid-template-columns: 1fr;
  }
  .tarifs-page .tarif-info-blocks {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0 24px;
  }
  .site-menu-panel {
    min-width: 190px;
  }
  .tarifs-page .tarifs-hero {
    padding: 44px 24px 14px;
  }
}
/* MIAOUCRATIE-IMPECCABLE-MENU */
.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px 16px;
  flex-wrap: wrap;
}
.site-header .nav-links,
.site-header .miaou-topnav {
  display: none !important;
}
.site-menu {
  position: relative;
  flex-shrink: 0;
}
.site-menu > summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--sand, #E8DDD0);
  background: var(--W, #FFFFFF);
  border-radius: 12px;
  color: var(--N, #1A1A1A);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}
.site-menu > summary::-webkit-details-marker {
  display: none;
}
.site-menu[open] > summary,
.site-menu > summary:hover {
  border-color: var(--T, #A8472A);
}
.site-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--sand, #E8DDD0);
  background: var(--W, #FFFFFF);
  box-shadow: 0 16px 38px rgba(30,24,18,0.14);
  z-index: 1000;
  display: grid;
  gap: 6px;
}
.site-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--mid, #4A3728);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.site-menu-panel a:hover {
  background: rgba(168,71,42,0.06);
  color: var(--T, #A8472A);
}
.site-menu-panel a.is-current {
  background: rgba(168,71,42,0.10);
  color: var(--T, #A8472A);
}
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--sand, #E8DDD0);
  background: var(--W, #FFFFFF);
  color: var(--T, #A8472A);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
}
.inline-cta:hover {
  border-color: var(--T, #A8472A);
  background: rgba(168,71,42,0.04);
}
@media (max-width: 768px) {
  .site-header {
    padding: 0 24px;
  }
  .site-menu-panel {
    min-width: 190px;
  }
}

/* MIAOUCRATIE-CLEANUP */
.site-header {
  border-bottom: none !important;
}
.site-header::after {
  content: '';
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 0;
  height: 1px;
  background: rgba(184,155,128,0.18);
}
@media (max-width: 768px) {
  .site-header::after {
    left: 24px;
    right: 24px;
  }
}

/* MIAOUCRATIE-TOPBAR-V2 */
.topbar {
  width: 100%;
  align-self: stretch;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep, #1E1812);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}
.topbar a {
  color: var(--light, #D4BEA8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.topbar a:hover {
  color: var(--peach, #F2CDB0);
}
.topbar .sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}
.topbar-menu {
  position: relative;
  flex-shrink: 0;
}
.topbar-menu > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--light, #D4BEA8);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}
.topbar-menu > summary::before {
  content: '☰';
  font-size: 16px;
  line-height: 1;
  color: var(--peach, #F2CDB0);
}
.topbar-menu > summary::-webkit-details-marker {
  display: none;
}
.topbar-menu[open] > summary,
.topbar-menu > summary:hover {
  color: var(--peach, #F2CDB0);
}
.topbar-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--deep, #1E1812);
  box-shadow: none;
  z-index: 1000;
  display: grid;
  gap: 4px;
}
.topbar-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--light, #D4BEA8);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.topbar-menu-panel a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--peach, #F2CDB0);
}
.topbar-menu-panel a.is-current {
  background: rgba(255,255,255,0.06);
  color: var(--peach, #F2CDB0);
}
.topbar-menu-panel a:focus-visible,
.topbar a:focus-visible {
  outline: 2px solid rgba(242,205,176,0.8);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .topbar {
    padding: 12px 20px;
    gap: 12px 14px;
  }
  .topbar-links {
    gap: 12px;
  }
  .topbar-menu-panel {
    min-width: 190px;
  }
}

/* MIAOUCRATIE-TITLE-V2 */
body .faq-hero .hero-title,
body .tarifs-hero h1,
body.carte-page .zone-header h2,
body .cgv-title,
body .container > header h1,
body .hero-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700 !important;
  letter-spacing: -3px !important;
  line-height: 1 !important;
  color: var(--deep, #1E1812) !important;
}
body .faq-hero .hero-title,
body .tarifs-hero h1,
body .container > header h1,
body .hero-title {
  font-size: clamp(52px, 7vw, 88px) !important;
}
body.carte-page .zone-header h2,
body .cgv-title {
  font-size: clamp(32px, 5vw, 64px) !important;
}
body .faq-hero .hero-sub,
body .tarifs-hero-sub,
body.carte-page .zone-desc,
body .cgv-header p,
body .container .subtitle {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--muted, #7A6B5E) !important;
  line-height: 1.8 !important;
}

/* MIAOUCRATIE-TARIFS-V2 */
body.tarifs-page {
  background: var(--cream, #FBF7F0);
}
body.tarifs-page .tarifs-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 44px 40px 16px;
}
body.tarifs-page .tarifs-hero h1 {
  margin: 0 0 12px;
}
body.tarifs-page .tarifs-hero-sub {
  max-width: 760px;
  font-size: 16px;
  margin-bottom: 24px;
}
body.tarifs-page .tarifs-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.tarifs-page .tarifs-hero-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
body.tarifs-page .tarifs-hero-cta .btn-secondary {
  display: none !important;
}
body.tarifs-page .tarifs-bg {
  background: var(--cream, #FBF7F0) !important;
}
body.tarifs-page .tarifs-bg > .section > h2,
body.tarifs-page .tarifs-bg h2.tarifs-duplicate-title {
  display: none !important;
}
body.tarifs-page .tarifs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}
body.tarifs-page .tarif-left-col,
body.tarifs-page .tarif-right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.tarifs-page .tarif-main,
body.tarifs-page .tarif-info-card,
body.tarifs-page .tarif-promo {
  background: #fff !important;
  border-color: var(--warm, #F0E8DA) !important;
}
body.tarifs-page .tarif-header,
body.tarifs-page .tarif-info-header {
  background: var(--terracotta, #C8603A) !important;
}
body.tarifs-page .tarif-header h3,
body.tarifs-page .tarif-info-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
body.tarifs-page .tarif-row-label,
body.tarifs-page .tarif-info-line,
body.tarifs-page .tarif-promo-body {
  color: var(--mid, #4A3728) !important;
}
body.tarifs-page .tarif-row-price {
  color: var(--terracotta, #C8603A) !important;
}
body.tarifs-page .badge-amount,
body.tarifs-page .tarif-promo strong,
body.tarifs-page .tarif-info-block-title {
  color: var(--sage, #7A9E8E) !important;
}
body.tarifs-page .tarif-tva,
body.tarifs-page .tarif-promo-note {
  color: var(--sand, #B89B80) !important;
  font-style: italic;
}
body.tarifs-page .tarif-promo-badge {
  background: rgba(122,158,142,0.08) !important;
  border-color: rgba(122,158,142,0.18) !important;
}
body.tarifs-page .tarif-info-blocks {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 12px;
  padding: 18px;
}
body.tarifs-page .tarif-info-block {
  border: 1px solid var(--warm, #F0E8DA);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  border-bottom: none !important;
}
body.tarifs-page .tarif-info-block:last-child {
  border-bottom: 1px solid var(--warm, #F0E8DA) !important;
}
body.tarifs-page .tarif-info-cta {
  display: none !important;
}
body.tarifs-page .tarif-info-header p,
body.tarifs-page .tarif-header p {
  color: rgba(255,255,255,0.88) !important;
}
@media (max-width: 1024px) {
  body.tarifs-page .tarifs-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  body.tarifs-page .tarifs-hero {
    padding: 36px 24px 12px;
  }
}

/* MIAOUCRATIE-CARTE-V2 */
body.carte-page {
  background: var(--cream, #FBF7F0) !important;
}
body.carte-page .zone-section {
  background: var(--cream, #FBF7F0) !important;
}
body.carte-page .zone-header {
  padding-top: 0;
}

/* MIAOUCRATIE-STANDALONE-V2 */
body.standalone-page {
  background: var(--cream, #FBF7F0);
  color: var(--deep, #1E1812);
}
/* MIAOUCRATIE-FADE-V4 */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body > *:not(script):not(style):not(link):not(meta):not(title) {
  animation: fadeUp .7s ease both;
}
body > *:nth-child(2) { animation-delay: .03s; }
body > *:nth-child(3) { animation-delay: .06s; }
body > *:nth-child(4) { animation-delay: .09s; }
body > *:nth-child(5) { animation-delay: .12s; }
body > *:nth-child(6) { animation-delay: .15s; }

/* MIAOUCRATIE-TOPBAR-V4 */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}
body {
  background: var(--cream, #FBF7F0);
  color: var(--N, #1A1A1A);
  overflow-x: hidden;
}
.topbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--deep, #1E1812);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}
.topbar a {
  color: var(--light, #D4BEA8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.topbar a:hover {
  color: var(--peach, #F2CDB0);
}
.topbar .sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}
.topbar-menu {
  position: relative;
  flex-shrink: 0;
}
.topbar-menu > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--light, #D4BEA8);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}
.topbar-menu > summary::before {
  content: '☰';
  font-size: 16px;
  line-height: 1;
  color: var(--peach, #F2CDB0);
}
.topbar-menu > summary::-webkit-details-marker {
  display: none;
}
.topbar-menu[open] > summary,
.topbar-menu > summary:hover {
  color: var(--peach, #F2CDB0);
}
.topbar-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--deep, #1E1812);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  z-index: 1000;
  display: grid;
  gap: 4px;
}
.topbar-menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--light, #D4BEA8);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.topbar-menu-panel a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--peach, #F2CDB0);
}
.topbar-menu-panel a.is-current {
  background: rgba(255,255,255,0.06);
  color: var(--peach, #F2CDB0);
}
.topbar a:focus-visible,
.topbar-menu > summary:focus-visible,
.topbar-menu-panel a:focus-visible {
  outline: 2px solid rgba(242,205,176,0.8);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .topbar {
    padding: 12px 20px;
    gap: 12px 14px;
  }
  .topbar-links {
    gap: 12px;
  }
  .topbar-menu-panel {
    min-width: 190px;
  }
}

/* MIAOUCRATIE-TITLES-V5 */
body h1,
body h2,
body h3,
body .hero-title,
body .section-title,
body .acc-question,
body .cgv-title,
body.carte-page .zone-header h2,
body.calculateur-page h1,
body .tarifs-hero h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.08 !important;
  color: var(--N, #1A1A1A) !important;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}
body .hero-title,
body .tarifs-hero h1,
body .cgv-title,
body.carte-page .zone-header h2,
body.calculateur-page h1 {
  font-size: clamp(52px, 7vw, 88px) !important;
}
body h2,
body .section-title,
body .acc-question {
  font-size: clamp(22px, 2.3vw, 30px) !important;
}
body h3 {
  font-size: clamp(18px, 1.8vw, 24px) !important;
}
body .hero-title em,
body .tarifs-hero h1 em,
body .cgv-title em,
body.carte-page .zone-header h2 em,
body.calculateur-page h1 em {
  color: var(--T, #A8472A) !important;
  font-style: italic !important;
}
body .hero-sub,
body .tarifs-hero-sub,
body .subtitle,
body .cgv-header p,
body.carte-page .zone-desc,
body.calculateur-page .subtitle {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--muted, #7A6B5E) !important;
  line-height: 1.8 !important;
}
body .section-label,
body .hero-eyebrow,
body .cta-eyebrow {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--T, #A8472A) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* MIAOUCRATIE-TARIFS-V4 */
body.tarifs-page {
  background: var(--cream, #FBF7F0);
}
body.tarifs-page .tarifs-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 40px 16px;
}
body.tarifs-page .tarifs-hero h1 {
  margin: 0 0 12px;
}
body.tarifs-page .tarifs-hero-sub {
  max-width: 760px;
  font-size: 16px;
  margin-bottom: 18px;
}
body.tarifs-page .tarifs-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.tarifs-page .tarifs-hero-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
body.tarifs-page .tarifs-hero-cta .btn-secondary {
  display: none !important;
}
body.tarifs-page .tarifs-summary {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px 18px;
}
body.tarifs-page .tarifs-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
body.tarifs-page .tarifs-summary-item {
  background: #fff;
  border: 1px solid var(--warm, #F0E8DA);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--mid, #4A3728);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
body.tarifs-page .tarifs-summary-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--N, #1A1A1A);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
body.tarifs-page .tarifs-bg {
  background: var(--cream, #FBF7F0) !important;
}
body.tarifs-page .tarifs-bg > .section > h2,
body.tarifs-page .tarifs-bg .section-label {
  display: none !important;
}
body.tarifs-page .tarifs-layout {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 18px;
  align-items: start;
}
body.tarifs-page .tarif-left-col,
body.tarifs-page .tarif-right-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.tarifs-page .tarif-main,
body.tarifs-page .tarif-info-card,
body.tarifs-page .tarif-promo {
  background: #fff !important;
  border-color: var(--warm, #F0E8DA) !important;
  border-radius: 22px;
}
body.tarifs-page .tarif-header,
body.tarifs-page .tarif-info-header {
  background: var(--terracotta, #C8603A) !important;
}
body.tarifs-page .tarif-header h3,
body.tarifs-page .tarif-info-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
body.tarifs-page .tarif-header p,
body.tarifs-page .tarif-info-header p {
  color: rgba(255,255,255,0.88) !important;
}
body.tarifs-page .tarif-row-label,
body.tarifs-page .tarif-info-line,
body.tarifs-page .tarif-promo-body {
  color: var(--mid, #4A3728) !important;
}
body.tarifs-page .tarif-row-price {
  color: var(--terracotta, #C8603A) !important;
  font-weight: 700;
}
body.tarifs-page .badge-amount,
body.tarifs-page .tarif-promo strong,
body.tarifs-page .tarif-info-block-title {
  color: var(--sage, #6E8E7C) !important;
  font-weight: 700;
}
body.tarifs-page .tarif-tva,
body.tarifs-page .tarif-promo-note {
  color: var(--sand, #B89B80) !important;
  font-style: italic;
}
body.tarifs-page .tarif-promo-badge {
  background: rgba(110,142,124,0.08) !important;
  border-color: rgba(110,142,124,0.18) !important;
}
body.tarifs-page .tarif-info-blocks {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 12px;
  padding: 18px;
}
body.tarifs-page .tarif-info-block {
  border: 1px solid var(--warm, #F0E8DA);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  border-bottom: none !important;
}
body.tarifs-page .tarif-info-block:last-child {
  border-bottom: 1px solid var(--warm, #F0E8DA) !important;
}
body.tarifs-page .tarif-info-cta {
  display: none !important;
}
body.tarifs-page .tarif-right-wrapper {
  gap: 0;
}
body.tarifs-page .tarif-info-lines {
  display: grid;
  gap: 10px;
}
body.tarifs-page .tarif-info-line em,
body.tarifs-page .tarif-promo-note em {
  color: var(--muted, #7A6B5E);
}
body.tarifs-page .tarifs-summary + .tarifs-bg {
  margin-top: 10px;
}
@media (max-width: 1024px) {
  body.tarifs-page .tarifs-summary-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  body.tarifs-page .tarifs-hero {
    padding: 38px 24px 12px;
  }
  body.tarifs-page .tarifs-summary {
    padding: 0 24px 16px;
  }
}

/* MIAOUCRATIE-STANDALONE-V4 */
body.standalone-page,
body.calculateur-page,
body.cgv-page,
body.carte-page {
  background: var(--cream, #FBF7F0);
  color: var(--deep, #1E1812);
}
body.standalone-page,
body.calculateur-page,
body.cgv-page,
body.carte-page {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
body.standalone-page .topbar,
body.calculateur-page .topbar,
body.cgv-page .topbar,
body.carte-page .topbar {
  position: sticky;
  top: 0;
}
body.calculateur-page .container {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  position: relative;
  z-index: 1;
}
body.calculateur-page header {
  text-align: center;
  margin-bottom: 48px;
}
body.cgv-page .cgv-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
body.cgv-page .cgv-header {
  text-align: center;
}
body.cgv-page .cgv-brand {
  margin-left: auto;
  margin-right: auto;
}
body.cgv-page .brand-rule {
  margin-left: auto;
  margin-right: auto;
}
body.carte-page .zone-section {
  width: 100%;
  background: var(--cream, #FBF7F0) !important;
  padding: 0 0 80px;
  overflow: hidden;
}
body.carte-page .zone-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 44px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 820px) {
  body.carte-page .zone-header {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 24px 40px;
  }
}

/* Tarifs : réduire l'air dans les lignes */
body.tarifs-page .tarif-row { padding: 12px 28px; }
body.tarifs-page .tarif-main .tarif-rows { padding: 4px 0; }

/* ── TOPBAR menu déroulant ────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--deep, #1E1812);
  display: flex; align-items: center;
  padding: 0 40px; min-height: 50px;
  animation: none !important;
}
.tmenu-wrap { position: relative; flex-shrink: 0; }
.tmenu-btn {
  background: none; border: none; cursor: pointer;
  color: var(--light, #D4BEA8);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 0; transition: color 0.2s;
}
.tmenu-btn:hover { color: var(--peach, #F2CDB0); }
.tmenu-panel {
  /* display géré via style inline JS */
  flex-direction: column; gap: 2px;
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 200px; padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--deep, #1E1812);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  z-index: 1000;
}
.tmenu-panel a {
  display: block; padding: 9px 14px; border-radius: 8px;
  color: var(--light, #D4BEA8);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 400;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.tmenu-panel a:hover { background: rgba(255,255,255,0.07); color: var(--cream,#FBF7F0); }
.tmenu-panel a.is-current { color: var(--peach,#F2CDB0); background: rgba(242,205,176,0.08); }
.topbar-links {
  margin-left: auto; display: flex; align-items: center; gap: 16px;
}
.topbar-links a {
  color: var(--light,#D4BEA8); text-decoration: none; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s; font-family: 'DM Sans', sans-serif;
}
.topbar-links a:hover { color: var(--peach,#F2CDB0); }
.tsep { width: 1px; height: 16px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
/* Footer logo em */
.footer-bar .footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; letter-spacing: -0.5px; color: var(--cream,#FBF7F0);
}
.footer-bar .footer-logo em { color: var(--terracotta,#C8603A); font-style: italic; }
/* Sections sombres : titres blancs */
.stripe-item h3, .cta-section h2 { color: #fff !important; }
.tarifs-bg h2 { color: var(--cream,#FBF7F0) !important; }
/* FAQ CTA */
.faq-cta .cta-title { color: #fff !important; }
/* Responsive topbar */
@media (max-width: 900px) {
  .topbar { padding: 0 24px; }
}
@media (max-width: 600px) {
  .topbar-links { gap: 8px; }
  .tsep { display: none; }
  .topbar-links a[href^="mailto"] { display: none; }
  .topbar-links a span { display: none; }
}


/* ── FAQ final CTA secondary button ── */
.faq-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  padding: 14px 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06) !important;
  color: #F6E8DB !important;
  border: 1.5px solid rgba(242,205,176,0.42) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.faq-cta-secondary:hover,
.faq-cta-secondary:focus-visible {
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(242,205,176,0.72) !important;
  color: #FFF8F2 !important;
  transform: translateY(-1px);
}
