/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== THEME SYSTEM ===== */
:root {
  --accent: #C9A96E;
  --accent-light: rgba(201,169,110,0.12);
  --accent-dark: #A07840;
  --bg-hero: #F8F4EE;
  --bg-section: #F5F2EC;
  --card-border: rgba(201,169,110,0.2);
  --transition-theme: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

/* Mariage : or chaud */
.theme-mariage {
  --accent: #C9A96E;
  --accent-light: rgba(201,169,110,0.12);
  --accent-dark: #A07840;
  --bg-hero: #F8F4EE;
  --bg-section: #F5F2EC;
  --card-border: rgba(201,169,110,0.2);
}

/* Naissance : vert sauge doux */
.theme-naissance {
  --accent: #7AAE9A;
  --accent-light: rgba(122,174,154,0.12);
  --accent-dark: #4E8C76;
  --bg-hero: #F1F7F4;
  --bg-section: #EBF4F0;
  --card-border: rgba(122,174,154,0.25);
}

/* Anniversaire : violet prune */
.theme-anniversaire {
  --accent: #9B72B0;
  --accent-light: rgba(155,114,176,0.12);
  --accent-dark: #7A4E94;
  --bg-hero: #F5F0FA;
  --bg-section: #F0E9F6;
  --card-border: rgba(155,114,176,0.22);
}

/* Bar-mitzvah : bleu nuit + or */
.theme-barmitzvah {
  --accent: #3A6EA8;
  --accent-light: rgba(58,110,168,0.1);
  --accent-dark: #1E4E82;
  --bg-hero: #EEF3FA;
  --bg-section: #E8EFF7;
  --card-border: rgba(58,110,168,0.2);
}

/* Deuil : ardoise sobre */
.theme-deuil {
  --accent: #6B7F8A;
  --accent-light: rgba(107,127,138,0.1);
  --accent-dark: #4A5C66;
  --bg-hero: #F2F4F5;
  --bg-section: #ECEEF0;
  --card-border: rgba(107,127,138,0.2);
}

/* ===== GLOBAL ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: var(--transition-theme);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 40%, transparent);
}
.btn--ghost {
  background: transparent;
  color: #1A1A1A;
  border: 1.5px solid rgba(0,0,0,0.15);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--white { background: #fff; color: #1A1A1A; }
.btn--white:hover { background: #f5f5f5; }
.btn--lg { padding: 16px 32px; font-size: 1rem; border-radius: 10px; }

/* ===== SECTIONS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  transition: var(--transition-theme);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6B6B6B;
  max-width: 520px;
  margin: 0 auto;
}
.stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; transition: var(--transition-theme); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1A2E1A;
  flex-shrink: 0;
}
.logo span { color: var(--accent); transition: var(--transition-theme); }
.logo--white { color: rgba(255,255,255,0.9); }
.logo--white span { color: rgba(255,255,255,0.65); }

.nav { display: flex; gap: 32px; flex: 1; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #6B6B6B;
  transition: color 0.2s;
}
.nav a:hover { color: #1A1A1A; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 500; }
.nav-mobile .btn { align-self: flex-start; }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 100px;
  background: var(--bg-hero);
  transition: var(--transition-theme);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
  transition: var(--transition-theme);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1A2E1A;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  transition: var(--transition-theme);
}
.hero__subtitle {
  font-size: 1.05rem;
  color: #5A6B5A;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__social-proof {
  font-size: 0.88rem;
  color: #6B6B6B;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Phone mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 280px;
  background: #1A2E1A;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 32px 80px rgba(26,46,26,0.25), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  z-index: 3;
}
.phone-mockup__screen {
  background: var(--bg-hero);
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  transition: var(--transition-theme);
}
.fairepart-preview {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  background: var(--bg-hero);
  transition: var(--transition-theme);
}
.fairepart-preview__header {
  padding: 20px 20px 8px;
  display: flex;
  gap: 6px;
}
.fp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transition: var(--transition-theme);
}
.fp-dot--1 { opacity: 0.8; animation: pulse 2s ease-in-out infinite; }
.fp-dot--2 { opacity: 0.5; animation: pulse 2s ease-in-out 0.4s infinite; }
.fp-dot--3 { opacity: 0.3; animation: pulse 2s ease-in-out 0.8s infinite; }

.fairepart-preview__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  gap: 8px;
}
.fp-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: var(--transition-theme);
}
.fp-names {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #1A2E1A;
}
.fp-names span { font-style: italic; color: var(--accent); font-size: 1.1rem; transition: var(--transition-theme); }
.fp-date { font-size: 0.82rem; color: #6B6B6B; font-weight: 500; margin-top: 4px; }
.fp-lieu { font-size: 0.75rem; color: #6B6B6B; opacity: 0.8; }
.fp-rsvp {
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition-theme);
}

.hero__badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.hero__badge strong { display: block; font-size: 0.88rem; color: #1A1A1A; }
.hero__badge span { color: #6B6B6B; font-size: 0.78rem; }
.badge-icon { font-size: 1.4rem; flex-shrink: 0; }
.hero__badge--1 { top: 60px; right: -24px; animation-delay: 0s; }
.hero__badge--2 { bottom: 80px; left: -24px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.9; }
}

/* ===== REASSURANCE ===== */
.reassurance {
  background: #1A2E1A;
  padding: 28px 0;
}
.reassurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.reassurance__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: #fff;
}
.reassurance__item:last-child { border-right: none; }
.reassurance__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--accent);
  transition: var(--transition-theme);
}
.reassurance__item strong { display: block; font-size: 0.92rem; }
.reassurance__item span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ===== CREATIONS ===== */
.creations {
  padding: 100px 0;
  background: #fff;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.filter {
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid rgba(0,0,0,0.1);
  color: #6B6B6B;
  transition: all 0.2s ease;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.creations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.creation-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
  border: 1px solid var(--card-border);
}
.creation-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.creation-card[style*="display: none"] { display: none !important; }

.creation-card { text-decoration: none; color: inherit; display: block; }

.creation-card__preview {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.creation-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 10;
}
.creation-card:hover .creation-card__overlay { opacity: 1; }

/* ===== MINI TEMPLATES ===== */
.tpl {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 5px;
}
.tpl__deco {
  position: absolute; inset: 0;
  pointer-events: none;
}
.tpl__petal {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.25;
  top: 10%; left: 8%;
}
.tpl__petal--r { top: 12%; right: 8%; left: auto; }
.tpl__tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tpl__names {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 4px;
}
.tpl__names em { font-style: italic; }
.tpl__date { font-size: 0.72rem; font-weight: 500; opacity: 0.7; }
.tpl__lieu { font-size: 0.66rem; opacity: 0.55; margin-top: 2px; }
.tpl__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.66rem;
  font-weight: 600;
}

/* ROMANTIQUE */
.tpl--romantique {
  background: linear-gradient(160deg, #F8F0E8 0%, #EDD8C8 100%);
}
.tpl--romantique .tpl__tag { color: #C9A96E; }
.tpl--romantique .tpl__names { color: #2C1810; }
.tpl--romantique .tpl__names em { color: #C9A96E; }
.tpl--romantique .tpl__date { color: #6B4E3A; }
.tpl--romantique .tpl__lieu { color: #8B6E5A; }
.tpl--romantique .tpl__btn { background: #C9A96E; color: #fff; }

/* MODERNE */
.tpl--moderne {
  background: #0E0E1E;
  justify-content: flex-end;
  padding-bottom: 28px;
}
.tpl__moderne-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A96E, #fff);
  opacity: 0.7;
}
.tpl__moderne-bar {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 6px 0;
}
.tpl--moderne .tpl__tag { color: rgba(255,255,255,0.4); letter-spacing: 0.25em; font-size: 0.55rem; }
.tpl--moderne .tpl__names { color: #fff; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.tpl--moderne .tpl__names em { color: #C9A96E; font-style: normal; }
.tpl--moderne .tpl__date { color: rgba(255,255,255,0.5); font-family: monospace; letter-spacing: 0.08em; }
.tpl--moderne .tpl__btn { background: transparent; color: #C9A96E; border: 1px solid #C9A96E; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* CHAMPETRE */
.tpl--champetre {
  background: linear-gradient(160deg, #EFF5EA 0%, #DAE8D0 100%);
}
.tpl--champetre .tpl__tag { color: #5A8A4A; }
.tpl--champetre .tpl__names { color: #2A3A1A; }
.tpl--champetre .tpl__names em { color: #7AAE5A; }
.tpl--champetre .tpl__date { color: #4A6A3A; }
.tpl--champetre .tpl__lieu { color: #6A8A5A; }
.tpl--champetre .tpl__btn { background: #5A8A4A; color: #fff; }

/* NAISSANCE */
.tpl--naissance {
  background: linear-gradient(160deg, #FFF0F5 0%, #FFD6E8 100%);
}
.tpl--naissance .tpl__tag { color: #D4607A; }
.tpl--naissance .tpl__names { color: #2A1018; font-size: 1rem; }
.tpl--naissance .tpl__names em { color: #D4607A; font-size: 1.4rem; display: block; }
.tpl--naissance .tpl__date { color: #8A4060; }
.tpl--naissance .tpl__lieu { color: #AA6080; }
.tpl--naissance .tpl__btn { background: #D4607A; color: #fff; font-size: 0.62rem; }

/* NAISSANCE NATURE */
.tpl--naissance-nature {
  background: linear-gradient(160deg, #EEF5EA 0%, #D4E8CA 100%);
}
.tpl--naissance-nature .tpl__tag { color: #4A7A3A; }
.tpl--naissance-nature .tpl__names { color: #1A2A10; font-size: 1rem; }
.tpl--naissance-nature .tpl__names em { color: #4A7A3A; font-size: 1.4rem; display: block; }
.tpl--naissance-nature .tpl__date { color: #3A5A2A; }
.tpl--naissance-nature .tpl__lieu { color: #5A7A4A; }
.tpl--naissance-nature .tpl__btn { background: #4A7A3A; color: #fff; font-size: 0.62rem; }

/* BAR MITZVAH */
.tpl--barmitzvah {
  background: linear-gradient(160deg, #0A1428 0%, #142040 100%);
}
.tpl__bm-star {
  font-size: 1.6rem;
  opacity: 0.3;
  margin-bottom: 4px;
  color: #C9A96E;
}
.tpl--barmitzvah .tpl__tag { color: rgba(201,169,110,0.7); letter-spacing: 0.15em; }
.tpl--barmitzvah .tpl__names { color: #fff; }
.tpl--barmitzvah .tpl__names em { color: #C9A96E; }
.tpl--barmitzvah .tpl__date { color: rgba(255,255,255,0.5); }
.tpl--barmitzvah .tpl__lieu { color: rgba(255,255,255,0.35); }
.tpl--barmitzvah .tpl__btn { background: #C9A96E; color: #0A1428; font-weight: 700; }

/* ANNIVERSAIRE */
.tpl--anniversaire {
  background: linear-gradient(160deg, #F5EAFF 0%, #E0C8FF 100%);
}
.tpl__confetti {
  position: absolute;
  top: 12px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 1.1rem;
  opacity: 0.6;
}
.tpl--anniversaire .tpl__tag { color: #7A3AAA; }
.tpl--anniversaire .tpl__names { color: #2A1040; font-size: 1rem; }
.tpl--anniversaire .tpl__names em { color: #9B52CC; font-size: 1.5rem; display: block; }
.tpl--anniversaire .tpl__date { color: #5A2A80; }
.tpl--anniversaire .tpl__btn { background: #9B52CC; color: #fff; }

/* ANNIVERSAIRE ENFANT */
.tpl--enfant {
  background: linear-gradient(160deg, #FFF8E0 0%, #FFE8A0 100%);
}
.tpl--enfant .tpl__confetti { opacity: 0.8; font-size: 1.3rem; }
.tpl--enfant .tpl__tag { color: #C07020; }
.tpl--enfant .tpl__names { color: #402010; font-size: 1rem; }
.tpl--enfant .tpl__names em { color: #E08020; font-size: 1.4rem; display: block; }
.tpl--enfant .tpl__date { color: #805030; }
.tpl--enfant .tpl__btn { background: #E08020; color: #fff; }

/* DEUIL */
.tpl--deuil {
  background: linear-gradient(160deg, #282828 0%, #383838 100%);
}
.tpl__deuil-line {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 30px;
  background: rgba(255,255,255,0.15);
}
.tpl--deuil .tpl__tag { color: rgba(255,255,255,0.4); letter-spacing: 0.2em; font-size: 0.55rem; }
.tpl--deuil .tpl__names { color: #fff; font-size: 1.1rem; }
.tpl--deuil .tpl__names em { color: rgba(255,255,255,0.85); }
.tpl--deuil .tpl__date { color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.08em; }
.tpl--deuil .tpl__lieu { color: rgba(255,255,255,0.3); }
.tpl--deuil .tpl__btn { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); font-size: 0.62rem; }

/* Card info */
.tpl-cat {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  transition: var(--transition-theme);
}

/* CTA double */
.creations__cta { text-align: center; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== TARIFS ===== */
.tarifs {
  padding: 100px 0;
  background: #fff;
  transition: var(--transition-theme);
}
.tarifs__header {
  text-align: center;
  margin-bottom: 56px;
}
.tarifs__intro {
  font-size: 1rem;
  color: #6B6B6B;
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.tarifs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.tarifs__base {
  background: var(--bg-section, #F7F3EE);
  border: 1px solid var(--card-border, #E8E0D8);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tarifs__base-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tarifs__base-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #4A7C5C);
  background: rgba(74,124,92,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}
.tarifs__base-tag--alt {
  background: rgba(74,124,92,0.05);
}
.tarifs__price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1;
  margin: 4px 0;
}
.tarifs__price strong { font-weight: 800; }
.tarifs__base-header p {
  font-size: 0.9rem;
  color: #6B6B6B;
  line-height: 1.5;
}
.tarifs__included {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tarifs__included li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.91rem;
  color: #3A3A3A;
  line-height: 1.5;
}
.tarifs__included li span:first-child {
  color: var(--accent, #4A7C5C);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.tarifs__base .btn {
  margin-top: 4px;
  text-align: center;
}
.tarifs__options {
  background: #fff;
  border: 1px solid var(--card-border, #E8E0D8);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tarifs__options-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tarifs__options-header p {
  font-size: 0.9rem;
  color: #6B6B6B;
  line-height: 1.5;
}
.tarifs__options-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tarifs__options-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border, #E8E0D8);
}
.tarifs__options-list li:last-child { border-bottom: none; }
.tarifs__option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tarifs__option-info strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1A1A1A;
}
.tarifs__option-info span {
  font-size: 0.82rem;
  color: #8B8B8B;
  line-height: 1.4;
}
.tarifs__option-price {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent, #4A7C5C);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tarifs__grid { grid-template-columns: 1fr; }
}

/* ===== CTA MID PAGE ===== */
.cta-mid {
  padding: 72px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition-theme);
}
.cta-mid__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-mid__content .section-tag { display: block; text-align: left; margin-bottom: 8px; }
.cta-mid__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #1A2E1A;
  margin-bottom: 8px;
}
.cta-mid__content p { font-size: 0.96rem; color: #5A6B5A; }
.cta-mid__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.cta-mid__proof { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #6B6B6B; }


.creation-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.creation-card__info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.creation-card__info p { font-size: 0.84rem; color: #6B6B6B; line-height: 1.6; }
.creation-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.creation-card__badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0,0,0,0.05);
  color: #6B6B6B;
}
.creation-card__badge--anim {
  background: var(--accent-light);
  color: var(--accent-dark);
  transition: var(--transition-theme);
}
.creation-card__price { font-size: 1.1rem; font-weight: 700; color: #1A1A1A; }

.creations__cta { text-align: center; }

/* ===== CRAFT (notre promesse) ===== */
.craft {
  padding: 100px 0;
  background: var(--bg-section);
  transition: var(--transition-theme);
}
.craft__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.craft__content .section-tag { display: block; text-align: left; }
.craft__content .section-title { text-align: left; }
.craft__text {
  font-size: 1rem;
  color: #4A5A4A;
  line-height: 1.8;
  margin-bottom: 16px;
}
.craft__points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.craft__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
  color: #3A4A3A;
  line-height: 1.5;
}
.craft__point span:first-child {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
  transition: var(--transition-theme);
}

.craft__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.craft__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 3px solid var(--accent);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.4s ease;
}
.craft__card-icon { font-size: 1.6rem; flex-shrink: 0; }
.craft__card strong { display: block; font-size: 0.96rem; font-weight: 600; margin-bottom: 4px; color: #1A1A1A; }
.craft__card p { font-size: 0.85rem; color: #6B6B6B; line-height: 1.6; }

/* ===== COMMENT CA MARCHE ===== */
.comment {
  padding: 100px 0;
  background: #fff;
}
.steps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.step {
  flex: 1;
  background: var(--bg-section);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-theme);
  border: 1px solid var(--card-border);
}
.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
  transition: var(--transition-theme);
}
.step__icon { font-size: 2rem; margin-bottom: 16px; }
.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: #1A1A1A; }
.step p { font-size: 0.88rem; color: #6B6B6B; line-height: 1.65; }
.step__arrow { font-size: 1.8rem; color: var(--accent); opacity: 0.4; flex-shrink: 0; transition: var(--transition-theme); }

.comment__detail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.comment__detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #5A6B5A;
  background: var(--bg-section);
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  transition: var(--transition-theme);
}
.comment__detail-item span { font-size: 1.3rem; flex-shrink: 0; }

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--bg-section);
  transition: var(--transition-theme);
}
.features__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features__content .section-tag { display: block; text-align: left; }
.features__content .section-title { text-align: left; }
.features__list { display: flex; flex-direction: column; gap: 28px; }
.feature { display: flex; gap: 20px; align-items: flex-start; }
.feature__icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; color: #1A1A1A; }
.feature p { font-size: 0.88rem; color: #6B6B6B; line-height: 1.65; }

/* Dashboard mockup */
.dashboard-mockup {
  background: #1A2E1A;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26,46,26,0.25);
}
.dashboard-mockup__header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.dashboard-mockup__live { font-size: 0.75rem; color: #7AAE9A; font-weight: 500; }
.dashboard-mockup__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.db-stat {
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.db-stat:last-child { border-right: none; }
.db-stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; }
.db-stat span { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.db-stat--green strong { color: #7AAE9A; }
.db-stat--orange strong { color: #E8A84A; }
.db-stat--red strong { color: #D4706A; }
.dashboard-mockup__list { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.db-guest {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
}
.db-guest--confirmed { background: rgba(122,174,154,0.08); }
.db-guest--pending   { background: rgba(232,168,74,0.08); }
.db-guest__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.db-guest__name { flex: 1; font-size: 0.84rem; color: #fff; }
.db-guest__status { font-size: 0.72rem; }
.db-guest--confirmed .db-guest__status { color: #7AAE9A; }
.db-guest--pending .db-guest__status   { color: #E8A84A; }

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; background: #fff; }
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.92rem;
  color: #6B6B6B;
}
.reviews__rating strong { color: #1A1A1A; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-section);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-theme);
}
.review-card__stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; transition: var(--transition-theme); }
.review-card p { font-size: 0.92rem; color: #4A5A4A; line-height: 1.75; font-style: italic; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  color: var(--accent-dark);
  flex-shrink: 0;
  transition: var(--transition-theme);
}
.review-card__author strong { display: block; font-size: 0.92rem; }
.review-card__author span { font-size: 0.8rem; color: #6B6B6B; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--bg-section); transition: var(--transition-theme); }
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.25s ease;
}
.faq__item.open { border-color: var(--accent); }
.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 0.96rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #1A1A1A;
  transition: color 0.25s;
}
.faq__item.open .faq__question { color: var(--accent); }
.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.4s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.faq__answer.open { max-height: 200px; padding: 0 24px 20px; }
.faq__answer p { font-size: 0.92rem; color: #6B6B6B; line-height: 1.7; }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 0;
  background: #1A2E1A;
}
.cta-final__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 600;
}
.cta-final p { color: rgba(255,255,255,0.55); margin-bottom: 36px; font-size: 1rem; }

/* ===== FOOTER ===== */
.footer { background: #0F1F0F; color: rgba(255,255,255,0.55); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding: 64px 24px;
}
.footer__brand { max-width: 320px; }
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer__social { display: flex; gap: 20px; }
.footer__social a { font-size: 0.84rem; transition: color 0.2s; }
.footer__social a:hover { color: #fff; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col a { display: block; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: #fff; }
.footer__pro { color: rgba(201,169,110,0.8) !important; font-weight: 500; margin-top: 6px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner, .craft__inner, .features__inner { gap: 48px; }
}

@media (max-width: 900px) {
  .creations-grid { grid-template-columns: repeat(2, 1fr); }
  .comment__detail { grid-template-columns: repeat(2, 1fr); }
  .reassurance__grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance__item:nth-child(2) { border-right: none; }
  .reassurance__item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .reassurance__item:nth-child(3), .reassurance__item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  .cta-mid__inner { flex-direction: column; align-items: flex-start; }
  .cta-mid__actions { align-items: flex-start; }
  .nav, .header__inner > .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .phone-mockup { width: 230px; }
  .phone-mockup__screen, .fairepart-preview { min-height: 400px; }
  .hero__badge--1 { right: 0; top: 20px; }
  .hero__badge--2 { left: 0; bottom: 40px; }
  .steps { flex-direction: column; }
  .step__arrow { transform: rotate(90deg); }
  .craft__inner, .features__inner { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .creations-grid { grid-template-columns: 1fr; }
  .comment__detail { grid-template-columns: 1fr; }
  .reassurance__grid { grid-template-columns: 1fr; }
  .reassurance__item { border-right: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .dashboard-mockup__stats { grid-template-columns: repeat(2, 1fr); }
  .footer__legal { flex-direction: column; gap: 8px; }
}
