:root {
  --mg-ink: #2b373d;
  --mg-muted: #6f7a80;
  --mg-soft: #fbf8f3;
  --mg-cream: #f2ebdf;
  --mg-line: #eee7db;
  --mg-blue: #5e8088;
  --mg-blue-dark: #2e3f44;
  --mg-peach: #ecc4a0;
  --mg-sage: #7e9a86;
  --mg-white: #fff;
  --mg-shadow: 0 18px 40px -24px rgba(43, 55, 61, .45);
  --mg-radius: 18px;
  --mg-serif: Georgia, "Times New Roman", serif;
  --mg-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--mg-soft);
  color: var(--mg-ink);
  font-family: var(--mg-sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-shell { min-height: 100vh; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 243, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mg-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--mg-serif);
  font-size: 25px;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--mg-blue);
  color: var(--mg-white);
  font-family: var(--mg-sans);
  font-size: 18px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

.nav__list a {
  text-decoration: none;
  color: var(--mg-muted);
  font-weight: 600;
}

.nav__list a:hover { color: var(--mg-ink); }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 0;
  background: var(--mg-blue);
  color: var(--mg-white);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button--secondary {
  background: var(--mg-peach);
  color: #3a2d1e;
}

.button--ghost {
  background: var(--mg-white);
  color: var(--mg-blue);
  border: 1px solid var(--mg-line);
}

.hero {
  background: radial-gradient(120% 80% at 50% 0%, #f2ebdf 0%, #e7e2d8 62%, #fbf8f3 100%);
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2e6d8;
  color: #9a6a43;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1,
.section-title,
.page-title {
  font-family: var(--mg-serif);
  letter-spacing: -.02em;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 680px;
  font-size: clamp(43px, 6vw, 72px);
  line-height: .98;
  font-weight: 600;
}

.hero em {
  color: var(--mg-blue);
  font-style: italic;
}

.hero-copy {
  max-width: 610px;
  margin: 0 0 28px;
  color: var(--mg-muted);
  font-size: 19px;
  line-height: 1.58;
}

.search-card {
  max-width: 620px;
  background: var(--mg-white);
  border: 1px solid var(--mg-line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--mg-shadow);
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.input {
  min-height: 52px;
  width: 100%;
  border: 1px solid #e7dfd2;
  border-radius: 13px;
  background: var(--mg-soft);
  padding: 0 16px;
  color: var(--mg-ink);
  font: inherit;
}

.lp-suggest-wrap {
  position: relative;
}

.lp-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 6px 0 0 0;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e7dfd2;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  z-index: 50;
  max-height: 20rem;
  overflow: auto;
  text-align: left;
}

.lp-suggest[hidden] { display: none; }

.lp-suggest-item {
  padding: 10px 14px;
  cursor: pointer;
  color: var(--mg-ink);
  font-size: 15px;
  line-height: 1.3;
}

.lp-suggest-item strong {
  display: block;
  font-weight: 600;
}

.lp-suggest-item .lp-suggest-ctx {
  display: block;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--mg-muted);
}

.lp-suggest-item:hover,
.lp-suggest-item.is-active {
  background: var(--mg-soft);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  color: var(--mg-muted);
  font-size: 14px;
}

.trust-row span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--mg-sage);
  font-weight: 900;
}

.hero-media {
  min-height: 460px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(43, 55, 61, 0) 45%, rgba(43, 55, 61, .56) 100%),
    url("https://images.unsplash.com/photo-1518791841217-8f162f1e1131?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: var(--mg-shadow);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.media-note {
  background: rgba(251, 248, 243, .92);
  border-radius: 16px;
  padding: 16px;
  max-width: 330px;
  color: var(--mg-muted);
}

.section {
  padding: 66px 0;
}

.section--dark {
  background: var(--mg-blue-dark);
  color: #ebe7de;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
}

.section-copy {
  margin: 0 0 26px;
  max-width: 680px;
  color: var(--mg-muted);
  font-size: 17px;
  line-height: 1.6;
}

.section--dark .section-copy { color: #a9b6b7; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--mg-white);
  border: 1px solid var(--mg-line);
  border-radius: var(--mg-radius);
  padding: 22px;
  box-shadow: 0 10px 30px -28px rgba(43, 55, 61, .5);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--mg-muted);
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 18px;
}

.trust-item strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}

.trust-item span {
  color: #a9b6b7;
  font-size: 14px;
  line-height: 1.45;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e7dfd2;
  background: var(--mg-white);
  border-radius: 11px;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 700;
  color: var(--mg-ink);
}

.pro-cta {
  background: linear-gradient(135deg, var(--mg-blue), #46666d);
  border-radius: 24px;
  color: #fff;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.pro-cta h2 {
  margin: 0 0 8px;
  font-family: var(--mg-serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.pro-cta p {
  margin: 0;
  color: #cddbdb;
  line-height: 1.55;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  display: block;
  min-height: 220px;
  text-decoration: none;
  color: inherit;
}

.guide-card small {
  display: block;
  margin-bottom: 10px;
  color: #b57a47;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.affiliate-box {
  border: 1px dashed #dcd3c4;
  border-radius: 18px;
  padding: 20px;
  background: var(--mg-soft);
}

.faq-list {
  background: var(--mg-white);
  border: 1px solid var(--mg-line);
  border-radius: var(--mg-radius);
  overflow: hidden;
}

.faq-item {
  padding: 20px;
  border-bottom: 1px solid var(--mg-line);
}

.faq-item:last-child { border-bottom: 0; }
.faq-item strong { display: block; margin-bottom: 8px; }
.faq-item p { margin: 0; color: var(--mg-muted); line-height: 1.55; }

.site-footer {
  background: #272f33;
  color: #aeb9bb;
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a {
  color: #aeb9bb;
  text-decoration: none;
}

.legal-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #3a4448;
  color: #6e7a7c;
  font-size: 13px;
}

.page-hero {
  padding: 70px 0 42px;
  background: var(--mg-cream);
}

.page-title {
  margin: 0 0 14px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: var(--mg-white);
  border: 1px solid var(--mg-line);
  border-radius: 20px;
  padding: 24px;
}

.price {
  font-size: 38px;
  font-weight: 900;
  margin: 12px 0;
}

.price small {
  font-size: 15px;
  color: var(--mg-muted);
}

.content {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
}

.content h2 {
  font-family: var(--mg-serif);
  font-size: 34px;
  line-height: 1.12;
  margin-top: 44px;
}

@media (max-width: 860px) {
  .header-inner { min-height: 64px; }
  .nav { display: none; }
  .header-cta { display: none; }
  .hero { padding: 42px 0 34px; }
  .hero-grid,
  .cards,
  .trust-grid,
  .guide-list,
  .pricing,
  .footer-grid,
  .pro-cta {
    grid-template-columns: 1fr;
  }
  .hero-media { min-height: 320px; }
  .search-form { grid-template-columns: 1fr; }
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 46px 0; }
}


/* =========================================================
   DESIGN SYSTEM v2 — Airbnb-inspired tokens & components
   ========================================================= */
:root {
  --mg-coral: #ff5a5f;
  --mg-coral-dark: #e0484d;
  --mg-teal: #00a699;
  --mg-amber: #fc642d;
  --mg-bg-card: #ffffff;
  --mg-border: #ebebeb;
  --mg-text: #222222;
  --mg-text-soft: #717171;
  --mg-text-mute: #b0b0b0;
  --mg-yellow-star: #ff9500;
  --mg-shadow-card: 0 6px 16px rgba(0,0,0,.12);
  --mg-shadow-card-hover: 0 10px 30px rgba(0,0,0,.18);
  --mg-radius-card: 12px;
  --mg-radius-lg: 16px;
}

/* Nav toggle (burger) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mg-border);
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mg-ink);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; width: 100%; }
.nav-toggle span::after  { position: absolute; top:  6px; left: 0; width: 100%; }

/* Hero badges with star prefix */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mg-ink);
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}
.hero-badge::before {
  content: "★";
  color: var(--mg-coral);
  font-size: 14px;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-lg);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--mg-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--mg-coral);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--mg-text-soft);
  font-weight: 600;
}

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-card);
  padding: 22px;
  box-shadow: var(--mg-shadow-card);
}
.review-stars {
  color: var(--mg-coral);
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--mg-ink);
  margin: 0 0 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mg-coral), var(--mg-amber));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Steps counter */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-lg);
  padding: 28px 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mg-coral);
  color: #fff;
  font-family: var(--mg-serif);
  font-weight: 700;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-family: var(--mg-serif);
}
.step p {
  margin: 0;
  color: var(--mg-text-soft);
  line-height: 1.55;
  font-size: 15px;
}

/* Pricing UNIFIED card with tabs */
.pricing-unified {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--mg-shadow-card);
  max-width: 760px;
  margin: 0 auto;
}
.pricing-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f7f7f7;
  border-bottom: 1px solid var(--mg-border);
}
.pricing-tab {
  background: none;
  border: 0;
  padding: 18px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  color: var(--mg-text-soft);
  position: relative;
  border-bottom: 3px solid transparent;
  transition: color .18s, background .18s, border-color .18s;
}
.pricing-tab[aria-selected="true"] {
  color: var(--mg-coral);
  background: #fff;
  border-bottom-color: var(--mg-coral);
}
.pricing-tab .tab-price {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mg-text-mute);
  margin-top: 2px;
}
.pricing-tab[aria-selected="true"] .tab-price { color: var(--mg-text-soft); }
.badge-pop {
  display: inline-block;
  margin-left: 6px;
  background: var(--mg-coral);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  vertical-align: middle;
}
.pricing-body { padding: 34px 32px; }
.tier-panel { display: none; }
.tier-panel[data-active] { display: block; }
.tier-headline {
  font-family: var(--mg-serif);
  font-size: 30px;
  margin: 0 0 4px;
  line-height: 1.1;
}
.tier-sub {
  color: var(--mg-text-soft);
  margin: 0 0 22px;
  font-size: 15px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.tier-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.5;
}
.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--mg-teal);
  font-weight: 800;
}
.tier-features li.locked {
  color: var(--mg-text-mute);
}
.tier-features li.locked::before {
  content: "✗";
  color: var(--mg-text-mute);
}
.tier-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.tier-cta {
  flex: 1;
  min-width: 200px;
}

/* Upsell strip (99€ contextuel) */
.upsell-strip {
  background: linear-gradient(135deg, #1a1a1a 0%, #2b373d 100%);
  color: #fff;
  border-radius: var(--mg-radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.upsell-strip h3 {
  margin: 0 0 8px;
  font-family: var(--mg-serif);
  font-size: 26px;
  color: #fff;
}
.upsell-strip p {
  margin: 0;
  color: #c9d1d3;
  line-height: 1.55;
  font-size: 15px;
}
.price-old {
  color: #8a949a;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 18px;
}
.price-new {
  color: var(--mg-coral);
  font-weight: 800;
  font-size: 28px;
}

/* Downsell banner */
.downsell-banner {
  background: #fff5e6;
  border: 1px solid #ffd9a8;
  border-radius: var(--mg-radius-lg);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.downsell-banner strong {
  font-size: 17px;
  color: var(--mg-amber);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop[data-open] { display: flex; }
.modal-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.modal-card h3 {
  font-family: var(--mg-serif);
  margin: 0 0 8px;
  font-size: 26px;
}
.modal-card p { color: var(--mg-text-soft); line-height: 1.55; margin: 0 0 18px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: #f7f7f7;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.price-row .strike {
  color: var(--mg-text-mute);
  text-decoration: line-through;
  font-size: 20px;
}
.price-row .new {
  font-family: var(--mg-serif);
  font-weight: 700;
  color: var(--mg-coral);
  font-size: 36px;
}

/* PWA banner */
.pwa-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  display: none;
  align-items: center;
  gap: 14px;
  z-index: 1000;
  max-width: 460px;
  margin: 0 auto;
}
.pwa-banner[data-show] { display: flex; }
.pwa-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--mg-coral);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.pwa-text { flex: 1; font-size: 14px; line-height: 1.35; }
.pwa-text strong { display: block; color: var(--mg-ink); }
.pwa-text span { color: var(--mg-text-soft); }
.pwa-install {
  background: var(--mg-coral);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}
.pwa-close {
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
  color: var(--mg-text-soft);
  padding: 4px 8px;
  touch-action: manipulation;
}

.checkout-grid,
.auth-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.checkout-box,
.auth-card,
.plan-scope-note {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-lg);
  padding: 24px;
  box-shadow: var(--mg-shadow);
}

.checkout-box h2,
.auth-card h2 {
  margin-top: 0;
}

.checkout-line,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mg-border);
}

.checkout-total {
  border-bottom: 0;
  font-size: 20px;
  font-weight: 800;
}

.checkout-line--note { color: #7a6f63; font-size: 14px; }
.checkout-line--note s { color: #b9a9a0; }
.checkout-fineprint { color: #7a6f63; font-size: 13px; margin: 12px 0 0; }

.checkout-next {
  justify-content: center;
  margin-top: 18px;
}

.checkout-upsell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: #fff8f2;
  border: 1px solid #ffd6c6;
  border-radius: var(--mg-radius-lg);
  padding: 16px;
  margin: 18px 0;
}

.checkout-upsell input {
  margin-top: 4px;
}

.simple-steps {
  padding-left: 20px;
  margin: 0 0 18px;
}

.simple-steps li {
  margin: 8px 0;
  color: var(--mg-text-soft);
}

.auth-card {
  max-width: 620px;
}

.auth-card label,
.onboarding-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
}

.onboarding-form {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-lg);
  padding: 24px;
  box-shadow: var(--mg-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plan-scope-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.is-plan-locked {
  opacity: .55;
}

.is-plan-locked::after {
  content: "Verrouillé pour ce forfait";
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 5px 9px;
  background: #f2eee8;
  color: var(--mg-text-soft);
  font-size: 12px;
  font-weight: 900;
}

/* FAQ accordion */
.faq-accordion {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-lg);
  overflow: hidden;
}
.faq-accordion details {
  border-bottom: 1px solid var(--mg-border);
}
.faq-accordion details:last-child { border-bottom: 0; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: 17px;
  color: var(--mg-ink);
  padding: 20px 56px 20px 22px;
  cursor: pointer;
  position: relative;
  display: block;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--mg-coral);
  font-weight: 400;
}
.faq-q[aria-expanded="true"]::after { content: "−"; }
.faq-a {
  padding: 0 22px 20px;
  color: var(--mg-text-soft);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
}
.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 600px;
  padding-bottom: 22px;
}

/* Pro listing & card */
.pro-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pro-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--mg-shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.pro-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--mg-shadow-card-hover);
}
.pro-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f0f0f0;
}
.pro-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.pro-card-tag {
  display: inline-block;
  background: #fff5e6;
  color: var(--mg-amber);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  align-self: flex-start;
  text-transform: uppercase;
}
.pro-card h3 {
  margin: 0;
  font-family: var(--mg-serif);
  font-size: 19px;
  line-height: 1.2;
}
.pro-card-meta {
  font-size: 13px;
  color: var(--mg-text-soft);
}
.pro-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--mg-ink);
  font-weight: 700;
  font-size: 13px;
}
.pro-card-rating::before { content: "★"; color: var(--mg-coral); }
.pro-card-price {
  margin-top: auto;
  font-weight: 800;
  color: var(--mg-ink);
  font-size: 16px;
}
.pro-card-price small { color: var(--mg-text-soft); font-weight: 600; }

/* Pro profile (Airbnb-style) */
.pro-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: var(--mg-radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.pro-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pro-gallery-img {
  min-height: 100%;
  background-size: cover;
  background-position: center;
}
.pro-gallery img:first-child {
  grid-row: 1 / 3;
  grid-column: 1;
}
.pro-gallery .pro-gallery-img:first-child {
  grid-row: 1 / 3;
  grid-column: 1;
}
.pro-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.pro-main { min-width: 0; }
.pro-subhead {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  font-size: 15px;
  color: var(--mg-ink);
  font-weight: 600;
  margin: 8px 0 22px;
}
.pro-subhead .star { color: var(--mg-coral); }
.pro-subhead .dot { color: var(--mg-text-mute); }
.pro-subhead .superhost {
  background: #fff5e6;
  color: var(--mg-amber);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.superhost-badge {
  background: #fff5e6;
  color: var(--mg-amber);
  border: 1px solid #f8d99b;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.superhost-badge--inline {
  display: inline-flex;
  align-items: center;
}
.pro-section {
  padding: 32px 0;
  border-top: 1px solid var(--mg-border);
}
.pro-section h2 {
  font-family: var(--mg-serif);
  margin: 0 0 16px;
  font-size: 24px;
}
.pro-host {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}
.pro-host .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mg-coral), var(--mg-amber));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--mg-serif);
}
.pro-host h3 { margin: 0 0 4px; font-size: 18px; }
.pro-host p { margin: 0; color: var(--mg-text-soft); font-size: 14px; }
.pro-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pro-amenities li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 15px;
}
.pro-amenities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--mg-teal);
  font-weight: 800;
}
.pro-reviews { display: grid; gap: 16px; }
.pro-review {
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius);
  padding: 16px;
}
.pro-review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 8px;
  font-size: 14px;
}
.pro-review-stars { color: #f59e0b; letter-spacing: 2px; }
.pro-review-city { color: var(--mg-text-soft); }
.pro-review-badge {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #2e7d32;
  background: #e8f5e9;
  border-radius: 999px;
  padding: 2px 10px;
}
.pro-review-text { margin: 0; line-height: 1.6; }
.demo-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-left: 8px;
}

/* Booking card */
.booking-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-lg);
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.booking-card .price-row { margin-bottom: 18px; }
.booking-card .price-main {
  font-family: var(--mg-serif);
  font-size: 26px;
  font-weight: 700;
}
.booking-card .price-main small {
  font-family: var(--mg-sans);
  font-size: 14px;
  color: var(--mg-text-soft);
  font-weight: 600;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--mg-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.booking-grid label {
  padding: 10px 12px;
  border-right: 1px solid var(--mg-border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.booking-grid label:last-child { border-right: 0; }
.booking-grid span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--mg-text-soft);
}
.booking-grid input {
  border: 0;
  padding: 0;
  font: inherit;
  background: transparent;
}
.booking-breakdown {
  margin: 18px 0 0;
  border-top: 1px solid var(--mg-border);
  padding-top: 14px;
  font-size: 14px;
}
.booking-breakdown .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--mg-text-soft);
}
.booking-breakdown .total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--mg-border);
  margin-top: 6px;
  font-weight: 800;
  color: var(--mg-ink);
  font-size: 16px;
}

/* Guide layout */
.guide-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.guide-toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--mg-border);
  border-radius: var(--mg-radius-card);
  padding: 18px;
  font-size: 14px;
}
.guide-toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mg-text-soft);
}
.guide-toc ul { list-style: none; padding: 0; margin: 0; }
.guide-toc li { padding: 6px 0; }
.guide-toc a {
  text-decoration: none;
  color: var(--mg-text-soft);
  border-left: 2px solid transparent;
  padding-left: 10px;
  display: block;
}
.guide-toc a.active {
  color: var(--mg-coral);
  border-left-color: var(--mg-coral);
  font-weight: 700;
}
.city-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 14px;
  color: var(--mg-text-soft);
  margin: 14px 0 26px;
}
.city-meta strong { color: var(--mg-ink); }

/* Coral buttons */
.button--coral {
  background: var(--mg-coral);
  color: #fff;
}
.button--coral:hover { background: var(--mg-coral-dark); }
.button--block { display: flex; width: 100%; }

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s, transform .6s;
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
}

/* Nav open state (mobile) */
.nav.is-open {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--mg-border);
  padding: 18px 24px;
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}
.nav.is-open .nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* Section variants */
.section-cream { background: var(--mg-cream); }
.section-soft { background: var(--mg-soft); }

/* Mobile breakpoints */
@media (max-width: 960px) {
  .stats-strip,
  .reviews-grid,
  .steps,
  .pro-listing,
  .pro-layout,
  .pro-gallery,
  .guide-layout,
  .upsell-strip {
    grid-template-columns: 1fr;
  }
  .pro-gallery { grid-template-rows: 220px; }
  .pro-gallery img:first-child { grid-row: auto; grid-column: auto; }
  .pro-gallery .pro-gallery-img:first-child { grid-row: auto; grid-column: auto; }
  .pro-gallery img:nth-child(n+3) { display: none; }
  .pro-gallery .pro-gallery-img:nth-child(n+3) { display: none; }
  .booking-card,
  .guide-toc { position: static; top: auto; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; }
  .pro-amenities { grid-template-columns: 1fr; }
  .checkout-grid,
  .auth-wrap,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .pro-card { grid-template-columns: 1fr; }
  .pro-card-img { height: 200px; }
  .pricing-tabs { grid-template-columns: 1fr; }
  .stat-num { font-size: 34px; }
  .hero-badges { gap: 6px; }
  .hero-badge { font-size: 12px; padding: 6px 10px; }
}

/* =========================================================
   MiaouGarde visual reset v3 - clean marketplace UI
   ========================================================= */
:root {
  --mg-ink: #24323a;
  --mg-muted: #66747c;
  --mg-soft: #f6f8f7;
  --mg-cream: #eef5f2;
  --mg-line: #dfe8e4;
  --mg-blue: #2f6f73;
  --mg-blue-dark: #17363a;
  --mg-peach: #ffb38a;
  --mg-sage: #6fa888;
  --mg-coral: #ff6b5f;
  --mg-coral-dark: #e85449;
  --mg-teal: #1f9d8a;
  --mg-amber: #f59e0b;
  --mg-white: #fff;
  --mg-shadow: 0 24px 70px -38px rgba(20, 45, 49, .38);
  --mg-shadow-card: 0 14px 42px -30px rgba(20, 45, 49, .42);
  --mg-shadow-card-hover: 0 24px 62px -34px rgba(20, 45, 49, .5);
  --mg-radius: 16px;
  --mg-radius-card: 16px;
  --mg-radius-lg: 24px;
  --mg-serif: Georgia, "Times New Roman", serif;
  --mg-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(111, 168, 136, .15), transparent 34%),
    linear-gradient(180deg, #f8fbfa 0%, #ffffff 44%, #f7faf9 100%);
  color: var(--mg-ink);
}

.container { width: min(1180px, calc(100% - 40px)); }
.site-header {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36,50,58,.08);
  box-shadow: 0 10px 30px -28px rgba(36,50,58,.35);
}
.header-inner { min-height: 76px; }
.brand { font-family: var(--mg-sans); font-size: 22px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--mg-blue-dark), var(--mg-blue));
  box-shadow: inset 0 -10px 18px rgba(255,255,255,.08), 0 12px 28px -18px rgba(23,54,58,.8);
  font-family: var(--mg-serif);
  font-size: 21px;
  font-weight: 800;
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 12px;
  height: 12px;
  background: var(--mg-blue-dark);
  transform: rotate(45deg);
  border-radius: 3px;
  z-index: -1;
}
.brand-mark::before { left: 7px; }
.brand-mark::after { right: 7px; }
.nav__list { gap: 8px; }
.nav__list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #53646c;
  font-weight: 750;
}
.nav__list a:hover { background: #edf5f2; color: var(--mg-blue-dark); }
.header-cta,
.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--mg-blue-dark);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 16px 34px -24px rgba(23,54,58,.75);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.header-cta:hover,
.button:hover { transform: translateY(-1px); box-shadow: 0 20px 42px -26px rgba(23,54,58,.85); }
.button--coral { background: var(--mg-coral); color: #fff; }
.button--coral:hover { background: var(--mg-coral-dark); }
.button--secondary { background: #fff; color: var(--mg-blue-dark); }
.button--ghost { background: #fff; color: var(--mg-blue-dark); border: 1px solid var(--mg-line); box-shadow: none; }

.hero {
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,107,95,.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(47,111,115,.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef8f4 100%);
  overflow: hidden;
}
.hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); gap: 56px; }
.eyebrow {
  background: rgba(47,111,115,.1);
  color: var(--mg-blue-dark);
  border: 1px solid rgba(47,111,115,.14);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--mg-serif);
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: .94;
  letter-spacing: -.045em;
  max-width: 780px;
}
.hero em { color: var(--mg-coral); text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .08em; }
.hero-copy { color: #53646c; font-size: 20px; line-height: 1.55; max-width: 640px; }
.search-card {
  max-width: 660px;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(36,50,58,.09);
  box-shadow: 0 22px 64px -34px rgba(20,45,49,.45);
}
.search-form { grid-template-columns: 1fr auto; gap: 8px; }
.input {
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f7faf9;
  color: var(--mg-ink);
}
.input:focus { outline: 3px solid rgba(47,111,115,.16); border-color: rgba(47,111,115,.32); background: #fff; }
.hero-badges { gap: 8px; }
.hero-badge {
  border: 1px solid rgba(36,50,58,.08);
  background: rgba(255,255,255,.78);
  box-shadow: none;
}
.hero-badge::before { color: var(--mg-sage); }
.hero-media {
  min-height: 540px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(23,54,58,0) 45%, rgba(23,54,58,.72) 100%),
    url("https://images.unsplash.com/photo-1518791841217-8f162f1e1131?auto=format&fit=crop&w=1500&q=85") center / cover;
  box-shadow: 0 34px 90px -48px rgba(23,54,58,.72);
  position: relative;
}
.hero-media::before {
  content: "Cat-sitter vérifiée";
  position: absolute;
  top: 22px;
  left: 22px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.9);
  color: var(--mg-blue-dark);
  font-weight: 900;
  box-shadow: 0 14px 32px -24px rgba(0,0,0,.5);
}
.hero-media-card {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.93);
  color: var(--mg-muted);
  box-shadow: 0 18px 40px -28px rgba(0,0,0,.5);
}
.hero-media-card strong { display: block; color: var(--mg-ink); font-size: 32px; font-family: var(--mg-serif); line-height: 1; }
.hero-media-card span { display: block; margin-top: 6px; line-height: 1.45; }

.stats-strip {
  display: block;
  padding: 0;
  margin: -36px 0 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 24px;
  box-shadow: 0 26px 70px -46px rgba(20,45,49,.55);
}
.stat-item { padding: 26px 20px; border-right: 1px solid var(--mg-line); }
.stat-item:last-child { border-right: 0; }
.stat-num { color: var(--mg-blue-dark); font-family: var(--mg-sans); font-weight: 950; letter-spacing: -.04em; }
.stat-label { color: var(--mg-muted); }

.section { padding: 74px 0; }
.section--dark {
  background: linear-gradient(135deg, #18383c 0%, #10272b 100%);
  color: #fff;
}
.section-title { font-size: clamp(34px, 4.6vw, 56px); letter-spacing: -.035em; }
.section-copy { color: var(--mg-muted); }
.section--dark .section-copy { color: rgba(255,255,255,.68); }
.cards,
.steps,
.reviews-grid,
.guide-list { gap: 20px; }
.card,
.step,
.review-card,
.guide-card {
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 22px;
  box-shadow: var(--mg-shadow-card);
}
.card { padding: 26px; }
.section--dark .card,
.section--dark .review-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: #fff;
  box-shadow: none;
}
.section--dark .card p,
.section--dark .review-text,
.section--dark small { color: rgba(255,255,255,.68); }
.step::before { background: var(--mg-blue-dark); }

.pro-listing { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.pro-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(36,50,58,.08);
  box-shadow: var(--mg-shadow-card);
  background: #fff;
}
.pro-card-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pro-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.22));
}
.demo-badge,
.superhost-badge {
  position: relative;
  z-index: 1;
  margin: 10px 0 0 10px;
  background: rgba(255,255,255,.92);
  border: 0;
  color: var(--mg-blue-dark);
  box-shadow: 0 12px 28px -22px rgba(0,0,0,.45);
}
.superhost-badge { background: #fff7e8; color: #a75a00; }
.pro-card-body { padding: 18px; gap: 9px; }
.pro-card-head { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.pro-card h3 { font-family: var(--mg-sans); font-size: 20px; font-weight: 900; }
.pro-card-tagline { margin: 0; color: var(--mg-muted); line-height: 1.45; }
.pro-card-meta { margin: auto 0 0; color: var(--mg-muted); }
.pro-card-rating { color: var(--mg-ink); white-space: nowrap; }
.pro-card-rating::before { content: none; }

.city-pill {
  border-radius: 999px;
  background: #fff;
  border-color: rgba(36,50,58,.1);
  box-shadow: 0 8px 28px -24px rgba(20,45,49,.45);
}
.city-pill:hover { background: #edf7f3; color: var(--mg-blue-dark); }
.pro-cta {
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.2), transparent 28%),
    linear-gradient(135deg, var(--mg-blue-dark), var(--mg-blue));
  border-radius: 28px;
  box-shadow: 0 30px 80px -50px rgba(23,54,58,.7);
}

.page-hero {
  background:
    radial-gradient(circle at 12% 0%, rgba(255,107,95,.15), transparent 28%),
    linear-gradient(135deg, #fff 0%, #eef8f4 100%);
  padding: 78px 0 52px;
}
.page-title { font-size: clamp(42px, 5.5vw, 70px); letter-spacing: -.045em; }
.pricing-unified {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.pricing-tabs { display: none; }
.tier-panel,
.tier-panel[data-active] {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--mg-shadow-card);
}
.tier-panel[data-active] { border-color: rgba(255,107,95,.45); box-shadow: 0 24px 70px -42px rgba(255,107,95,.42); }
.tier-badge {
  align-self: flex-start;
  background: var(--mg-coral);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}
.tier-panel h3 { margin: 0 0 8px; font-size: 25px; font-family: var(--mg-sans); letter-spacing: -.02em; }
.tier-list { padding: 0; margin: 18px 0 24px; list-style: none; display: grid; gap: 10px; }
.tier-list li { position: relative; padding-left: 26px; color: var(--mg-muted); line-height: 1.45; }
.tier-list li::before { content: "✓"; position: absolute; left: 0; color: var(--mg-teal); font-weight: 900; }
.tier-panel .button { margin-top: auto; }
.tier-decline { border: 0; background: transparent; color: var(--mg-muted); margin-top: 12px; cursor: pointer; font-weight: 800; }

.checkout-grid { grid-template-columns: minmax(0, 1fr) 360px; }
.checkout-box,
.auth-card,
.onboarding-form,
.booking-card {
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 24px;
  box-shadow: var(--mg-shadow-card);
}
.checkout-line,
.checkout-total { border-color: var(--mg-line); }
.checkout-upsell { background: #fff7f2; border-color: #ffd7ca; border-radius: 18px; }

.pro-page { padding-top: 42px; padding-bottom: 80px; }
.pro-header h1 { font-size: clamp(34px, 4.7vw, 58px); line-height: 1; letter-spacing: -.04em; margin: 14px 0 8px; }
.pro-gallery { grid-template-rows: 190px 190px; border-radius: 24px; box-shadow: var(--mg-shadow-card); }
.pro-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 42px; }
.pro-section { border-color: var(--mg-line); }
.pro-amenities li::before { color: var(--mg-teal); }
.booking-card { top: 96px; }
.booking-price strong { font-size: 30px; font-family: var(--mg-serif); }
.booking-form label { display: grid; gap: 6px; color: var(--mg-muted); font-weight: 800; margin-bottom: 12px; }
.booking-form input { min-height: 46px; border: 1px solid var(--mg-line); border-radius: 12px; padding: 0 12px; font: inherit; }

.site-footer { background: #10272b; color: rgba(255,255,255,.7); }
.footer-links a { color: rgba(255,255,255,.72); }
.legal-note { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.45); }

@media (max-width: 960px) {
  .hero-grid,
  .stats-grid,
  .pro-listing,
  .pricing-unified,
  .checkout-grid,
  .pro-layout { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 54px; }
  .hero-media { min-height: 360px; }
  .stats-strip { margin: 0; padding: 18px 0 0; }
  .stat-item { border-right: 0; border-bottom: 1px solid var(--mg-line); }
  .stat-item:last-child { border-bottom: 0; }
  .search-card { border-radius: 22px; }
  .search-form { grid-template-columns: 1fr; }
  .input { border-radius: 16px; }
  .pro-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 180px); }
  .pro-gallery .pro-gallery-img:first-child { grid-row: auto; grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero h1 { font-size: 46px; }
  .section { padding: 52px 0; }
  .cards,
  .steps,
  .reviews-grid,
  .guide-list { grid-template-columns: 1fr; }
  .hero-media { min-height: 300px; border-radius: 24px; }
  .hero-media-card { margin: 0; }
  .pro-card-img { height: 210px; }
}

/* Pro profile refinement v4 */
.pro-header {
  margin-bottom: 20px;
}
.pro-identity {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
.pro-avatar,
.pro-host-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 18px 42px -28px rgba(20,45,49,.7);
  background: #eef5f2;
}
.pro-host-avatar {
  width: 76px;
  height: 76px;
  border-width: 4px;
}
.pro-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.pro-header .demo-badge,
.pro-header .superhost-badge,
.pro-header .heart-pick {
  position: static;
  margin: 0;
}
.heart-pick {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 11px;
  background: #fff1ed;
  color: #b33c31;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.heart-pick::before { content: "♥"; }
.pro-stars {
  color: #ffb000;
  letter-spacing: .04em;
  font-size: 15px;
  text-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.favorite-explain {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 18px 0 24px;
  padding: 16px 18px;
  border: 1px solid #ffd8ce;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8f5, #fff);
  box-shadow: var(--mg-shadow-card);
}
.favorite-explain > span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mg-coral);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 12px 26px -18px rgba(255,107,95,.9);
}
.favorite-explain strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mg-ink);
  font-size: 17px;
}
.favorite-explain p {
  margin: 0;
  color: var(--mg-muted);
  line-height: 1.45;
}
.pro-host {
  grid-template-columns: 76px minmax(0, 1fr);
  padding: 24px 0;
}
.pro-host h2 {
  margin: 0 0 4px;
  font-family: var(--mg-sans);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.02em;
}
.pro-amenities {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pro-amenities li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 16px;
  background: #f8fbfa;
  color: var(--mg-ink);
  font-weight: 750;
  box-shadow: 0 8px 24px -22px rgba(20,45,49,.45);
}
.pro-amenities li::before { content: none; }
.pro-amenities li span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(31,157,138,.12);
  color: var(--mg-teal);
  font-weight: 950;
}
.contact-pro-form textarea {
  width: 100%;
  border: 1px solid var(--mg-line);
  border-radius: 14px;
  padding: 12px;
  font: inherit;
  resize: vertical;
  background: #f8fbfa;
}
.contact-pro-form input:focus,
.contact-pro-form textarea:focus {
  outline: 3px solid rgba(47,111,115,.16);
  border-color: rgba(47,111,115,.34);
  background: #fff;
}
.booking-card::before {
  content: "Demande directe";
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(47,111,115,.1);
  color: var(--mg-blue-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.booking-rating {
  color: var(--mg-muted);
  margin: 8px 0 16px;
}
.booking-price {
  margin-bottom: 4px;
}
.booking-note {
  margin: 14px 0 0;
  color: var(--mg-muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .pro-identity { grid-template-columns: 82px minmax(0, 1fr); gap: 14px; }
  .pro-avatar { width: 82px; height: 82px; }
  .pro-header h1 { font-size: 32px; }
  .pro-amenities { grid-template-columns: 1fr; }
  .favorite-explain { grid-template-columns: 1fr; }
}

/* City pages and Essential preview v5 */
.city-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}
.city-meta div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 38px -30px rgba(20,45,49,.45);
}
.city-meta dt {
  margin: 0 0 7px;
  color: var(--mg-muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.city-meta dd {
  margin: 0;
  color: var(--mg-ink);
  font-weight: 850;
  line-height: 1.35;
}
.city-meta small {
  color: var(--mg-muted);
  font-weight: 700;
}
.city-empty-state {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(255,107,95,.18);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff8f5, #fff);
  box-shadow: var(--mg-shadow-card);
}
.city-empty-state h2 {
  margin: 4px 0 6px;
  font-family: var(--mg-serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}
.city-empty-state p {
  margin: 0;
  color: var(--mg-muted);
  line-height: 1.5;
}
.city-empty-kicker {
  color: var(--mg-coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.nearby-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 20px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--mg-shadow-card);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nearby-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--mg-shadow-card-hover);
}
.nearby-card strong {
  color: var(--mg-ink);
  font-size: 20px;
  letter-spacing: -.02em;
}
.nearby-card span {
  color: var(--mg-blue-dark);
  font-weight: 900;
}
.nearby-card small {
  color: var(--mg-muted);
  line-height: 1.35;
}
.section-soft {
  background: linear-gradient(180deg, #f8fbfa 0%, #eef8f4 100%);
}
.city-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
}
.essential-preview-card {
  overflow: hidden;
  border: 1px solid rgba(36,50,58,.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px -42px rgba(20,45,49,.48);
}
.essential-photo {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.essential-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.24));
}
.essential-photo span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--mg-blue-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.essential-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}
.essential-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}
.essential-head h3 {
  margin: 0 0 4px;
  font-size: 22px;
  letter-spacing: -.02em;
}
.essential-head p,
.essential-meta {
  margin: 0;
  color: var(--mg-muted);
  line-height: 1.4;
}
.essential-head strong {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--mg-ink);
  font-size: 18px;
}
.essential-head strong::before {
  content: "★";
  color: #ffb000;
}
.essential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.essential-badges span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef8f4;
  color: var(--mg-blue-dark);
  font-size: 12px;
  font-weight: 900;
}
.essential-preview-card .button {
  justify-self: start;
}

@media (max-width: 960px) {
  .city-meta,
  .nearby-grid,
  .city-offer-grid { grid-template-columns: 1fr; }
  .city-empty-state { grid-template-columns: 1fr; }
}

/* ============================================================
   CLIENT LANDING PAGE (.lp-*)
   Self-contained design system, scoped under .lp-page.
   ============================================================ */
.lp-page {
  margin: 0;
  background: var(--lp-bg, #fbf6ef);
  color: var(--lp-ink, #2a2018);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.lp-page * { box-sizing: border-box; }
.lp-page img { max-width: 100%; display: block; }
.lp-page h1, .lp-page h2, .lp-page h3 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  color: var(--lp-ink);
  margin: 0 0 16px;
}
.lp-page h1 { font-size: clamp(40px, 5.5vw, 64px); line-height: 1.05; font-weight: 600; }
.lp-page h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; font-weight: 600; }
.lp-page h3 { font-size: 22px; line-height: 1.25; font-weight: 600; }
.lp-page p { margin: 0 0 16px; color: var(--lp-ink); }
.lp-page a { color: var(--lp-primary); text-decoration: none; }
.lp-page a:hover { text-decoration: underline; }

.lp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-primary);
  margin-bottom: 14px;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lp-button:hover { transform: translateY(-2px); text-decoration: none; }
.lp-button--primary,
.lp-page a.lp-button--primary {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.25);
}
.lp-button--primary:hover,
.lp-page a.lp-button--primary:hover { background: var(--lp-primary-dark); color: #fff; }
.lp-button--ghost,
.lp-page a.lp-button--ghost {
  background: transparent;
  border-color: var(--lp-ink);
  color: var(--lp-ink);
}
.lp-button--ghost:hover,
.lp-page a.lp-button--ghost:hover { background: var(--lp-ink); color: #fff; }
.lp-button--block { display: flex; width: 100%; }

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.lp-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-brand { display: flex; flex-direction: column; line-height: 1.2; }
.lp-brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--lp-ink);
}
.lp-brand-tag { font-size: 12px; color: var(--lp-muted); }
.lp-nav { display: flex; align-items: center; gap: 24px; }
.lp-nav a {
  color: var(--lp-ink);
  font-size: 14px;
  font-weight: 500;
}
.lp-nav-cta {
  background: var(--lp-primary);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
}
.lp-nav-cta:hover { background: var(--lp-primary-dark); text-decoration: none; }

.lp-hero { padding: 60px 0 40px; }
.lp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lp-hero-text { max-width: 540px; }
.lp-hero-loc { color: var(--lp-primary); font-weight: 500; }
.lp-hero-tagline {
  font-size: 19px;
  line-height: 1.55;
  color: var(--lp-ink);
  margin-bottom: 18px;
}
.lp-hero-zone {
  font-size: 14px;
  color: var(--lp-muted);
  margin-bottom: 28px;
}
.lp-hero-zone strong { color: var(--lp-ink); }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-hero-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.25);
  aspect-ratio: 4 / 5;
}
.lp-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.lp-highlights {
  background: var(--lp-surface);
  padding: 36px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.lp-highlights-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.lp-highlight { display: flex; flex-direction: column; gap: 4px; }
.lp-highlight-icon { font-size: 28px; margin-bottom: 6px; }
.lp-highlight strong { font-size: 15px; color: var(--lp-ink); }
.lp-highlight span { font-size: 13px; color: var(--lp-muted); }

.lp-about, .lp-services, .lp-gallery, .lp-steps, .lp-testimonials, .lp-faq, .lp-contact {
  padding: 80px 0;
}
.lp-about-inner, .lp-services-inner, .lp-gallery-inner, .lp-steps-inner,
.lp-testimonials-inner, .lp-faq-inner, .lp-contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-about-inner { max-width: 760px; text-align: center; }
.lp-about-inner p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lp-ink);
}

.lp-services { background: var(--lp-surface); }
.lp-services-inner h2 { text-align: center; margin-bottom: 48px; }
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-service {
  background: var(--lp-bg);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.lp-service.is-featured {
  background: var(--lp-ink);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
  transform: scale(1.02);
}
.lp-service.is-featured h3,
.lp-service.is-featured .lp-service-meta,
.lp-service.is-featured .lp-service-desc { color: #fff; }
.lp-service.is-featured .lp-service-features li::before { color: var(--lp-primary); }
.lp-service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.lp-service-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 8px 0 18px;
  gap: 12px;
}
.lp-service-duration {
  font-size: 13px;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lp-service-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--lp-primary);
}
.lp-service.is-featured .lp-service-price { color: var(--lp-primary); }
.lp-service-price small { font-size: 13px; font-weight: 400; color: var(--lp-muted); }
.lp-service.is-featured .lp-service-price small { color: rgba(255,255,255,.65); }
.lp-service-desc { font-size: 15px; color: var(--lp-muted); margin-bottom: 18px; }
.lp-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lp-service-features li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}
.lp-service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-primary);
  font-weight: 700;
}

.lp-gallery-inner h2 { text-align: center; margin-bottom: 48px; }
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .3s ease;
}
.lp-gallery-grid img:hover { transform: scale(1.03); }

.lp-steps { background: var(--lp-surface); }
.lp-steps-inner h2 { text-align: center; margin-bottom: 48px; }
.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lp-step {
  text-align: center;
  padding: 24px;
}
.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}
.lp-step h3 { margin-bottom: 8px; }
.lp-step p { color: var(--lp-muted); font-size: 15px; margin: 0; }

.lp-testimonials-inner h2 { text-align: center; margin-bottom: 48px; }
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lp-testimonial {
  background: var(--lp-surface);
  border-radius: 20px;
  padding: 32px 28px;
  margin: 0;
  border: 1px solid rgba(0,0,0,.06);
}
.lp-testimonial blockquote {
  margin: 0 0 20px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--lp-ink);
  font-style: italic;
}
.lp-testimonial blockquote::before {
  content: """;
  display: block;
  font-size: 48px;
  line-height: 0.5;
  color: var(--lp-primary);
  margin-bottom: 16px;
}
.lp-testimonial figcaption { display: flex; flex-direction: column; gap: 2px; }
.lp-testimonial strong { color: var(--lp-ink); font-size: 14px; }
.lp-testimonial figcaption span { color: var(--lp-muted); font-size: 13px; }

.lp-faq { background: var(--lp-surface); }
.lp-faq-inner { max-width: 760px; }
.lp-faq-inner h2 { text-align: center; margin-bottom: 32px; }
.lp-faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 18px 0;
}
.lp-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--lp-ink);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--lp-primary);
  transition: transform .2s ease;
}
.lp-faq-item[open] summary::after { content: "−"; }
.lp-faq-item p {
  margin: 12px 0 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.6;
}

.lp-contact-inner { max-width: 880px; text-align: center; }
.lp-contact-intro {
  color: var(--lp-muted);
  font-size: 16px;
  margin-bottom: 36px;
}
.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--lp-surface);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 28px 20px;
  color: var(--lp-ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px rgba(0,0,0,.2);
  text-decoration: none;
}
.lp-contact-icon { font-size: 28px; margin-bottom: 12px; color: var(--lp-primary); }
.lp-contact-card strong { font-size: 15px; margin-bottom: 4px; }
.lp-contact-card span { font-size: 13px; color: var(--lp-muted); }

.lp-footer {
  background: var(--lp-ink);
  color: rgba(255,255,255,.85);
  padding: 48px 0 28px;
}
.lp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 24px;
}
.lp-footer-top strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: #fff;
}
.lp-footer-top > div > span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.lp-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}
.lp-footer-contact a { color: rgba(255,255,255,.85); }
.lp-footer-contact a:hover { color: #fff; }
.lp-footer-credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}
.lp-footer-credit a {
  color: rgba(255,255,255,.95);
  font-weight: 600;
  text-decoration: underline;
}
.lp-footer-meta { color: rgba(255,255,255,.5); }

@media (max-width: 960px) {
  .lp-nav a:not(.lp-nav-cta) { display: none; }
  .lp-hero { padding: 36px 0 24px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero-media { aspect-ratio: 4 / 3; order: -1; }
  .lp-highlights-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lp-about, .lp-services, .lp-gallery, .lp-steps, .lp-testimonials, .lp-faq, .lp-contact {
    padding: 56px 0;
  }
  .lp-services-grid,
  .lp-gallery-grid,
  .lp-steps-grid,
  .lp-testimonials-grid,
  .lp-contact-grid { grid-template-columns: 1fr; }
  .lp-service.is-featured { transform: none; }
}
@media (max-width: 520px) {
  .lp-highlights-inner { grid-template-columns: 1fr; }
  .lp-footer-top, .lp-footer-credit { flex-direction: column; align-items: flex-start; }
}

/* ---------- 249 € product showcase on /devenir-pro ---------- */
.lp-product { background: #fbf6ef; padding: 96px 0; }
.lp-product-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.lp-product-header .eyebrow { color: #c2733a; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px; }
.lp-product-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.lp-product-info { display: flex; flex-direction: column; gap: 20px; }
.lp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-feature-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
  color: #2a2018;
}
.lp-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c2733a;
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.lp-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 24px 0 10px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.lp-product-price-amount {
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 900;
  color: #c2733a;
  line-height: 1;
  letter-spacing: -0.02em;
}
.lp-product-price-note { color: #6a5f53; font-size: 14px; flex-basis: 100%; text-align: center; }
.lp-product-price-premium {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3e6;
  color: #a85a23;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
  flex-basis: 100%;
  justify-content: center;
  margin-top: 8px;
}
.lp-product-price-save {
  color: #5d7a5c;
  font-weight: 700;
  font-size: 14px;
}
.lp-product-info .button { align-self: center; }
.lp-product-preview { display: flex; flex-direction: column; gap: 12px; }
.lp-browser-frame {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px -25px rgba(40,30,20,.25), 0 8px 20px -10px rgba(40,30,20,.15);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f1ece3;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.lp-browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d8cfc1;
}
.lp-browser-dot:nth-child(1) { background: #ff6058; }
.lp-browser-dot:nth-child(2) { background: #ffbd2f; }
.lp-browser-dot:nth-child(3) { background: #29c83f; }
.lp-browser-url {
  margin-left: 12px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #6a5f53;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lp-browser-body {
  aspect-ratio: 4 / 5;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.lp-browser-iframe {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: calc(100% + 72px);
  border: 0;
  display: block;
}
.lp-preview-link {
  align-self: flex-end;
  color: #c2733a;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}
.lp-preview-link:hover { text-decoration: underline; }
@media (max-width: 880px) {
  .lp-product-grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-product { padding: 64px 0; }
}

/* ---------- Tugan Bara upsell / downsell ---------- */
.upsell-wrap { background: linear-gradient(180deg, #fff8ef 0%, #fbf6ef 100%); padding: 56px 0 96px; }
.upsell-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 60px -28px rgba(40,30,20,.25);
  padding: 40px clamp(20px, 4vw, 56px);
  max-width: 1080px;
  margin: 0 auto;
  border-top: 6px solid #c2733a;
}
.upsell-card--downsell { border-top-color: #5d7a5c; }
.upsell-flag {
  display: inline-block;
  background: #c2733a;
  color: #fff;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.upsell-flag--soft { background: #5d7a5c; }
.upsell-headline {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: #2a2018;
  font-weight: 800;
}
.upsell-headline em { font-style: normal; color: #c2733a; }
.upsell-headline strong { color: #c2733a; }
.upsell-sub { color: #4a4036; font-size: 17px; line-height: 1.55; max-width: 760px; margin: 0 0 32px; }
.upsell-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: start;
}
.upsell-grid--single { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.upsell-offer {
  background: #fbf6ef;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(194,115,58,.18);
}
.upsell-eyebrow {
  color: #8a4d22;
  background: rgba(194,115,58,.1);
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.upsell-offer-title {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 24px;
  line-height: 1.25;
  color: #2a2018;
}
.upsell-offer-title .hl { color: #c2733a; }
.upsell-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.upsell-benefits li {
  position: relative;
  padding-left: 30px;
  color: #2a2018;
  line-height: 1.5;
}
.upsell-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #5d7a5c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.upsell-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px dashed rgba(0,0,0,.12);
  border-bottom: 1px dashed rgba(0,0,0,.12);
  margin-bottom: 22px;
}
.upsell-price-old { color: #6a5f53; font-size: 15px; }
.upsell-price-old s { opacity: .65; }
.upsell-price-new { display: flex; flex-direction: column; }
.upsell-price-new .amount { font-size: 44px; font-weight: 800; color: #c2733a; line-height: 1; }
.upsell-price-new .unit { font-size: 13px; color: #6a5f53; margin-top: 4px; }
.upsell-price-new .unit-inline { font-size: 20px; color: #6a5f53; font-weight: 600; }
.upsell-price-save { margin-left: auto; background: #fff5e6; color: #8a4d22; padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 14px; }
.upsell-preview-link { margin-bottom: 22px; }
.upsell-preview-link a { color: #c2733a; font-weight: 600; text-decoration: none; }
.upsell-preview-link a:hover { text-decoration: underline; }
.upsell-guarantee {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(93,122,92,.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  line-height: 1.5;
  color: #2a2018;
  font-size: 14px;
}
.upsell-guarantee-badge {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #5d7a5c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.upsell-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.upsell-btn-yes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #c2733a;
  color: #fff;
  border: 0;
  padding: 20px 24px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  box-shadow: 0 14px 28px -14px rgba(194,115,58,.6);
  transition: transform .15s ease, box-shadow .15s ease;
}
.upsell-btn-yes:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -16px rgba(194,115,58,.7); }
.upsell-btn-yes-main { font-size: 17px; font-weight: 700; letter-spacing: .01em; }
.upsell-btn-yes-sub { font-size: 13px; opacity: .9; }
.upsell-btn-no {
  display: block;
  background: transparent;
  color: #8a7a6a;
  border: 0;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  text-decoration: underline;
}
.upsell-btn-no:hover { color: #2a2018; }
.upsell-fineprint { font-size: 13px; color: #6a5f53; line-height: 1.5; margin: 0; }
.upsell-side { display: flex; flex-direction: column; gap: 20px; }
.upsell-testimonial { background: #fff8ef; border-left: 4px solid #c2733a; padding: 20px; border-radius: 8px; }
.upsell-testimonial p { margin: 8px 0; font-style: italic; color: #2a2018; line-height: 1.5; }
.upsell-testimonial-author { font-size: 13px; color: #6a5f53; font-weight: 600; }
.upsell-stars { color: #ffbd2f; letter-spacing: 2px; }
.upsell-why, .upsell-loss { background: #fbf6ef; padding: 20px; border-radius: 8px; }
.upsell-why h3, .upsell-loss h3 { margin: 0 0 8px; font-size: 16px; color: #2a2018; }
.upsell-why p { margin: 0; color: #4a4036; line-height: 1.5; font-size: 14px; }
.upsell-loss ul { margin: 0; padding-left: 18px; color: #4a4036; line-height: 1.6; font-size: 14px; }
.upsell-loss li { margin-bottom: 4px; }
@media (max-width: 820px) {
  .upsell-grid { grid-template-columns: 1fr; }
  .upsell-card { padding: 28px 20px; }
  .upsell-price-save { margin-left: 0; }
}

/* ---------- Checkout summary on Stripe page ---------- */
.checkout-summary { margin: 24px 0; max-width: 520px; }

/* ---------- Contact form ---------- */
.contact-wrap { max-width: 640px; margin: 0 auto; }
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 32px clamp(20px, 4vw, 40px);
  box-shadow: 0 20px 50px -28px rgba(40,30,20,.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(0,0,0,.06);
}
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: #2a2018; font-size: 14px; }
.contact-form .input { font-weight: 400; font-size: 15px; }
.contact-form textarea.input { resize: vertical; min-height: 140px; border-radius: 16px; padding: 14px 18px; }
.contact-form .booking-note { text-align: center; margin: 4px 0 0; }

/* Bandeau lancement / pros pionniers */
.launch-banner {
  background: linear-gradient(135deg, #fff4e6 0%, #ffe5cf 100%);
  border-top: 1px solid #f0c89e;
  border-bottom: 1px solid #f0c89e;
  padding: 32px 0;
}
.launch-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.launch-banner-tag {
  background: #c2733a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  align-self: flex-start;
}
.launch-banner-title {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 8px;
  color: #2a2018;
  font-weight: 700;
}
.launch-banner-title strong { color: #c2733a; }
.launch-banner-text {
  margin: 0 0 14px;
  color: #4a3f33;
  font-size: 15px;
  line-height: 1.55;
}
.launch-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.launch-banner-count {
  background: #fff;
  color: #c2733a;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid #f0c89e;
}
.launch-banner-cta {
  color: #c2733a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.launch-banner-cta:hover { color: #8a4d22; }
@media (max-width: 720px) {
  .launch-banner-inner { grid-template-columns: 1fr; gap: 16px; }
}

/* Fineprint des mentions à vie */
.lp-product-fineprint,
.upsell-fineprint,
.modal-fineprint {
  font-size: 12px;
  color: #6a5f53;
  line-height: 1.5;
  margin: 10px 0 0;
  max-width: 640px;
}
.lp-product-fineprint a,
.upsell-fineprint a,
.modal-fineprint a {
  color: #6a5f53;
  text-decoration: underline;
}

/* Pioneer deal box on /creation-compte-pro */
.launch-banner-count-secondary {
  font-size: 12px;
  color: #8a4d22;
  margin-left: 6px;
  opacity: .85;
}
.pioneer-deal-box {
  background: linear-gradient(180deg, #fff7ec 0%, #fdecd5 100%);
  border: 1px solid #f0c89e;
  border-radius: 16px;
  padding: 24px 22px;
  margin: 8px 0 18px;
  box-shadow: 0 6px 20px rgba(194, 115, 58, 0.10);
}
.pioneer-deal-box--closed {
  background: #f3f0eb;
  border-color: #ddd6cd;
  box-shadow: none;
}
.pioneer-deal-tag {
  display: inline-block;
  background: #c2733a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pioneer-deal-title {
  font-size: 20px;
  font-weight: 800;
  color: #2a2018;
  margin: 0 0 8px;
}
.pioneer-deal-intro { font-size: 14px; color: #2a2018; margin: 0 0 12px; }
.pioneer-deal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #2a2018;
}
.pioneer-deal-list li {
  position: relative;
  padding-left: 22px;
}
.pioneer-deal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #c2733a;
  font-weight: 800;
}
.pioneer-deal-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #2a2018;
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #f0c89e;
  cursor: pointer;
}
.pioneer-deal-check input { margin-top: 3px; }

/* Form helpers (account creation) */
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #2a2018;
  margin: 6px 0;
  cursor: pointer;
}
.form-checkbox input { margin-top: 3px; }
.form-checkbox a { color: #c2733a; text-decoration: underline; }
.form-hint {
  display: block;
  font-size: 12px;
  color: #6a5f53;
  margin-top: 6px;
}
.form-flash {
  padding: 12px 14px;
  border-radius: 10px;
  margin: 0 0 16px;
  font-size: 14px;
  border: 1px solid transparent;
}
.form-flash--error { background: #fff3f1; border-color: #f3c2b8; color: #8a2f1f; }
.form-flash--success { background: #f1f9f1; border-color: #c2e0c2; color: #2d5a2d; }
.form-flash--info { background: #fdf6ec; border-color: #f0c89e; color: #8a4d22; }

/* Upsell 249€ on account creation */
.upsell-249 {
  background: #fff7ec;
  border: 1px dashed #f0c89e;
  border-radius: 14px;
  padding: 18px 18px;
  margin: 8px 0 14px;
}
.upsell-249-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.upsell-249-title { font-size: 15px; font-weight: 700; color: #2a2018; }
.upsell-249-copy { font-size: 13px; color: #5a4a3a; margin: 6px 0 0; }
.upsell-249-hint {
  display: inline-block;
  background: #fff3e6;
  color: #a85a23;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}
@media (max-width: 640px) {
  .upsell-249-row { grid-template-columns: 1fr; }
}

/* Premium tier savings badge in pricing tabs */
.tier-savings {
  display: inline-block;
  background: #fff3e6;
  color: #a85a23;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

/* Browser frame preview (used in lp-product) */
.lp-browser-frame {
  background: #fff;
  border: 1px solid #ead9c5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(42, 32, 24, 0.10);
}
.lp-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: #f3ece2;
  border-bottom: 1px solid #ead9c5;
}
.lp-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9c9b4;
}
.lp-browser-dot:nth-child(1) { background: #e4736d; }
.lp-browser-dot:nth-child(2) { background: #e6b94d; }
.lp-browser-dot:nth-child(3) { background: #7cae6e; }
.lp-browser-url {
  margin-left: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  color: #6a5f53;
  border: 1px solid #ead9c5;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lp-browser-body {
  background: #fbf6ef;
  position: relative;
  overflow: hidden;
  height: 460px;
  width: 100%;
  aspect-ratio: auto;
}
.lp-browser-iframe {
  position: absolute;
  top: -72px;
  left: 0;
  width: 200%;
  height: calc(200% + 144px);
  border: 0;
  display: block;
  background: #fbf6ef;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
}
.lp-preview-link {
  font-size: 12px;
  color: #6a5f53;
  text-decoration: underline;
  align-self: flex-start;
}
.button--block { width: 100%; justify-content: center; }
