:root {
  --cream: #f8f5ef;
  --cream-deep: #eee8de;
  --navy: #111827;
  --navy-soft: #263244;
  --terracotta: #d85f3d;
  --terracotta-dark: #b9472c;
  --white: #fff;
  --ink: #20242b;
  --muted: #68707c;
  --line: #ddd9d1;
  --sage: #dbe2d8;
  --shadow: 0 24px 70px rgba(17, 24, 39, .12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-display: "Plus Jakarta Sans", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-sans: Inter, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

/* Cycle de vie des comptes et des fiches */
.hero-copy h1 {
  word-spacing: .08em;
}

.lifecycle-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(166, 53, 45, .24);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7f4, #fff);
  box-shadow: 0 14px 40px rgba(64, 25, 19, .07);
}

.lifecycle-banner > div {
  display: grid;
  gap: 5px;
}

.lifecycle-banner strong {
  color: #8d2f29;
  font: 750 18px/1.25 var(--font-sans);
}

.lifecycle-banner span {
  color: var(--muted);
  line-height: 1.55;
}

.lifecycle-form {
  align-items: start;
}

.lifecycle-form .button.full {
  justify-self: start;
}

.lifecycle-profile-card,
.lifecycle-email-card {
  background:
    radial-gradient(circle at 100% 0, rgba(200, 95, 63, .09), transparent 34%),
    rgba(255, 255, 255, .78);
}

.lifecycle-danger-zone {
  border-color: rgba(166, 53, 45, .2);
  background: linear-gradient(145deg, rgba(255, 248, 246, .96), rgba(255, 255, 255, .9));
}

.lifecycle-danger-zone .account-section-heading > span {
  color: #a6352d;
  background: #fbe5df;
}

.lifecycle-delete-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.lifecycle-business-row {
  align-items: start;
  border-radius: 20px;
  padding: 26px;
}

.owner-business-main {
  min-width: 0;
}

.owner-business-main > .status-pill {
  margin: 0 7px 10px 0;
}

.revision-status {
  background: #f3e8df;
  color: #9b452f;
}

.status-pill.status-approved {
  color: #17603a;
  background: #e4f4e9;
}

.status-pill.status-rejected,
.status-pill.status-closed {
  color: #8d2f29;
  background: #f9e6e2;
}

.owner-business-controls {
  width: min(100%, 285px);
  display: grid;
  gap: 10px;
}

.owner-business-controls .button,
.owner-business-controls form > .button {
  width: 100%;
  justify-content: center;
}

.lifecycle-delete-details {
  border: 1px solid rgba(166, 53, 45, .18);
  border-radius: 13px;
  background: #fff9f7;
}

.lifecycle-delete-details > summary {
  padding: 12px 14px;
  color: #983a31;
  cursor: pointer;
  font-weight: 750;
}

.lifecycle-delete-details > form {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
  border-top: 1px solid rgba(166, 53, 45, .12);
}

.lifecycle-delete-details p {
  margin: 12px 0 0;
  font-size: 14px;
}

.lifecycle-confirm-card {
  text-align: center;
}

.revision-moderation-card {
  gap: 22px;
}

.revision-comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.revision-comparison-head,
.revision-comparison-row {
  display: grid;
  grid-template-columns: minmax(130px, .65fr) minmax(200px, 1fr) minmax(200px, 1fr);
}

.revision-comparison-head {
  color: #fff;
  background: var(--navy);
}

.revision-comparison-head strong,
.revision-comparison-row > * {
  margin: 0;
  padding: 13px 15px;
}

.revision-comparison-row {
  border-top: 1px solid var(--line);
}

.revision-comparison-row > * + * {
  border-left: 1px solid var(--line);
}

.revision-comparison-row > strong {
  color: var(--navy);
  background: #faf7f3;
}

.revision-comparison-row p {
  overflow-wrap: anywhere;
  color: var(--muted);
  line-height: 1.5;
  white-space: normal;
}

.revision-comparison-row p:last-child {
  color: var(--navy);
  background: #fff8f4;
}

@media (max-width: 760px) {
  .lifecycle-banner,
  .lifecycle-delete-form {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .lifecycle-banner .button,
  .lifecycle-delete-form .button {
    width: 100%;
    justify-content: center;
  }

  .lifecycle-business-row {
    padding: 20px;
  }

  .owner-business-controls {
    width: 100%;
  }

  .revision-comparison {
    overflow-x: auto;
  }

  .revision-comparison-head,
  .revision-comparison-row {
    min-width: 690px;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--font-sans); line-height: 1.55; }
body, button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, select { cursor: pointer; }
button:disabled { cursor: wait; opacity: .65; }
:focus-visible { outline: 3px solid rgba(198, 95, 67, .5); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { width: min(1320px, calc(100% - 80px)); margin-inline: auto; }
.mobile-only { display: none; }

.site-header { height: 100px; background: rgba(246, 240, 230, .96); border-bottom: 1px solid rgba(221, 214, 203, .7); position: relative; z-index: 50; }
.header-inner { height: 100%; display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-mark { width: 48px; height: 54px; border: 5px solid var(--terracotta); border-bottom: 0; border-radius: 28px 28px 5px 5px; display: grid; place-items: center; color: var(--terracotta); transform: rotate(2deg); }
.brand-mark span { font-family: var(--font-display); font-weight: 700; font-size: 15px; transform: rotate(-2deg); }
.brand-name { font-family: var(--font-display); font-size: clamp(25px, 2vw, 34px); font-weight: 700; color: var(--navy); letter-spacing: -.035em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2.6vw, 44px); margin-left: auto; }
.main-nav a { position: relative; padding: 35px 0 31px; font-weight: 600; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--terracotta); transition: right .18s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--terracotta-dark); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.text-link { display: inline-flex; color: var(--navy); }
.button { border: 0; border-radius: var(--radius-sm); min-height: 52px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 750; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--terracotta); color: var(--white); box-shadow: 0 8px 20px rgba(198, 95, 67, .18); }
.button-primary:hover { background: var(--terracotta-dark); box-shadow: 0 12px 26px rgba(198, 95, 67, .25); }
.button-secondary { color: var(--navy); background: transparent; border: 1px solid var(--navy); }
.button-secondary:hover { background: var(--navy); color: var(--white); }
.button-light { background: var(--cream); color: var(--navy); }

.hero { min-height: 780px; position: relative; overflow: hidden; background: var(--cream); }
.hero::before { content: ""; position: absolute; inset: 0 49% 0 0; z-index: 2; background: linear-gradient(90deg, var(--cream) 72%, rgba(246,240,230,0)); pointer-events: none; }
.hero-media { position: absolute; inset: 0 0 0 38%; }
.hero-media img { object-fit: cover; object-position: center; filter: saturate(.88) contrast(.98); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,37,63,.12), transparent 45%); }
.hero-inner { min-height: 780px; position: relative; z-index: 3; display: flex; align-items: center; padding-bottom: 100px; }
.hero-copy { width: 56%; max-width: 720px; }
.eyebrow { margin: 0 0 13px; color: var(--terracotta-dark); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 800; }
.hero h1 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(58px, 5.9vw, 88px); font-weight: 700; letter-spacing: -.055em; line-height: .99; }
.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: #69717d;
  font-family: "Inter", sans-serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
}
.brush-stroke { display: block; width: 115px; height: 9px; border-top: 4px solid var(--terracotta); border-radius: 50%; transform: rotate(-7deg); }
.hero-search { position: absolute; left: 0; right: 0; bottom: 56px; }
.search-bar { min-height: 112px; background: rgba(255,255,255,.97); border: 1px solid rgba(221,214,203,.9); border-radius: 15px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1.35fr 1fr 1fr auto; align-items: center; padding: 16px; }
.search-field { min-width: 0; height: 64px; display: flex; align-items: center; gap: 14px; padding: 0 23px; color: var(--navy); border-right: 1px solid var(--line); }
.search-field input, .search-field select { width: 100%; min-width: 0; border: 0; background: transparent; color: var(--ink); outline: 0; font-size: 17px; }
.search-field select { appearance: none; }
.search-field input::placeholder { color: #797775; opacity: 1; }
.search-submit { min-width: 190px; height: 64px; margin-left: 16px; font-size: 17px; }

.section { padding-block: 102px; }
.section-heading { margin-bottom: 42px; }
.section-heading h2, .owner-cta h2, .newsletter-section h2, .page-hero h1 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(38px, 4.2vw, 62px); line-height: 1.06; letter-spacing: -.035em; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.split-heading > div { max-width: 750px; }
.arrow-link { color: var(--navy); display: inline-flex; align-items: center; gap: 6px; font-weight: 750; border-bottom: 1px solid var(--navy); padding-bottom: 5px; }
.arrow-link:hover svg { transform: translateX(3px); }
.centered-heading { max-width: 760px; margin-inline: auto; text-align: center; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { min-height: 146px; position: relative; background: rgba(255,255,255,.65); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 25px; display: flex; flex-direction: column; justify-content: space-between; gap: 22px; color: var(--navy); font-weight: 750; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.category-card:hover { transform: translateY(-4px); background: var(--white); box-shadow: 0 16px 34px rgba(16,37,63,.08); }
.category-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--terracotta); background: #f2ddd3; border-radius: 50%; }
.card-arrow { position: absolute; right: 20px; bottom: 24px; }

.region-section { background: var(--navy); color: var(--cream); }
.region-section .section-heading h2 { color: var(--cream); }
.region-section .section-heading p:not(.eyebrow) { color: #cdd5de; }
.region-section .eyebrow { color: #ef9b81; }
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.region-card { min-height: 225px; border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; color: var(--white); isolation: isolate; }
.region-card::before, .region-card::after { content: ""; position: absolute; inset: 0; z-index: -2; }
.region-card::after { z-index: -1; background: linear-gradient(0deg, rgba(8,26,44,.9), rgba(8,26,44,.12)); }
.region-1::before { background: linear-gradient(135deg, #bc5b40, #e6b28f); }
.region-2::before { background: linear-gradient(135deg, #3e7b70, #a5c8b8); }
.region-3::before { background: linear-gradient(135deg, #74516d, #d2a7bd); }
.region-4::before { background: linear-gradient(135deg, #916c33, #e4c47d); }
.region-card > svg { position: absolute; top: 25px; left: 25px; }
.region-card span { font-family: var(--font-display); font-size: 29px; font-weight: 700; line-height: 1.05; }
.region-card small { margin-top: 7px; opacity: .8; }
.region-card:hover { transform: translateY(-4px); }

.empty-state { background: rgba(255,255,255,.55); border: 1px dashed #c8beb1; border-radius: var(--radius-lg); padding: 62px 30px; text-align: center; }
.empty-state .empty-icon { width: 64px; height: 64px; margin: 0 auto 20px; display: grid; place-items: center; background: #f1ded5; color: var(--terracotta); border-radius: 50%; }
.empty-state h2 { max-width: 670px; margin: 0 auto 10px; color: var(--navy); font-family: var(--font-display); font-size: clamp(27px, 3vw, 40px); line-height: 1.15; }
.empty-state p { max-width: 630px; margin: 0 auto 25px; color: var(--muted); }

.how-section { background: #efe5d8; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.steps-grid article { min-height: 290px; position: relative; background: var(--cream); border-radius: var(--radius-md); padding: 35px; }
.steps-grid article > span { position: absolute; top: 25px; right: 25px; font-family: var(--font-display); font-size: 38px; color: #c9b9a7; }
.steps-grid article > svg { color: var(--terracotta); margin-bottom: 55px; }
.steps-grid h3 { margin: 0 0 10px; font-family: var(--font-display); color: var(--navy); font-size: 29px; }
.steps-grid p { margin: 0; color: var(--muted); }

.owner-cta { margin-block: 100px; padding: 70px; min-height: 450px; background: var(--terracotta); border-radius: var(--radius-lg); color: var(--white); display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; }
.owner-copy { align-self: center; max-width: 720px; position: relative; z-index: 2; }
.owner-cta h2 { color: var(--white); }
.owner-cta p:not(.eyebrow) { max-width: 650px; font-size: 19px; margin: 22px 0 31px; }
.eyebrow-light { color: #ffe0d4; }
.owner-art { position: relative; min-height: 300px; }
.art-ring { position: absolute; border: 2px solid rgba(255,255,255,.33); border-radius: 50%; }
.ring-one { width: 390px; height: 390px; top: -90px; right: -25px; }
.ring-two { width: 260px; height: 260px; top: -20px; right: 42px; }
.owner-stat { position: absolute; right: 25px; bottom: 5px; width: 280px; padding: 25px; background: var(--cream); color: var(--navy); border-radius: var(--radius-md); box-shadow: var(--shadow); display: grid; gap: 7px; }
.owner-stat svg { color: var(--terracotta); }
.owner-stat strong { font-family: var(--font-display); font-size: 23px; }
.owner-stat small { color: var(--muted); }

.newsletter-section { padding-block: 72px; background: #e7d9c8; }
.newsletter-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.newsletter-section h2 { font-size: clamp(34px, 3.5vw, 50px); }
.newsletter-form { width: 100%; }
.newsletter-fields { display: grid; grid-template-columns: .7fr 1fr auto; gap: 12px; align-items: end; }
.newsletter-form label span:not(.sr-only) { display: block; margin-bottom: 6px; color: var(--navy); font-size: 13px; font-weight: 750; }
.newsletter-form input { width: 100%; height: 52px; padding: 0 15px; border: 1px solid #cbbda9; background: rgba(255,255,255,.75); border-radius: var(--radius-sm); outline: 0; }
.newsletter-form .consent { margin-top: 12px; display: flex; align-items: flex-start; gap: 8px; color: var(--muted); font-size: 12px; }
.newsletter-form .consent input { width: 16px; height: 16px; margin-top: 2px; }
.form-message { min-height: 20px; margin: 8px 0 0; font-size: 13px; font-weight: 700; }
.form-message.success { color: #285f3f; }
.form-message.error { color: #8d281c; }

.site-footer { background: #081a2c; color: #d9e0e7; padding-top: 75px; }
.site-footer .brand-name { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 65px; padding-bottom: 65px; }
.footer-intro { max-width: 330px; color: #aebdca; }
.footer-grid h2 { margin: 7px 0 19px; color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid > div > a:not(.brand) { display: block; margin: 10px 0; color: #b9c4ce; font-size: 14px; }
.footer-grid > div > a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); min-height: 85px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #8fa0af; font-size: 13px; }

/* Shared inner pages */
.page-shell { min-height: 70vh; }
.page-hero { padding: 78px 0 55px; background: #efe5d8; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 19px; }
.page-content { padding-block: 65px 100px; }
.panel { background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px; }
.pill { display: inline-flex; align-items: center; min-height: 34px; border-radius: 99px; padding: 0 13px; background: #f0ddd3; color: var(--terracotta-dark); font-weight: 750; font-size: 12px; }
.form-control { display: grid; gap: 7px; }
.form-control > span { color: var(--navy); font-size: 14px; font-weight: 750; }
.form-control input, .form-control select, .form-control textarea { width: 100%; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-sm); min-height: 50px; padding: 12px 14px; outline: 0; }
.form-control textarea { min-height: 130px; resize: vertical; }
.form-control small { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.checkbox-control { display: flex; gap: 10px; align-items: flex-start; }
.checkbox-control input { margin-top: 5px; width: 18px; height: 18px; }

@media (max-width: 1120px) {
  .container { width: min(100% - 48px, 1180px); }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 14px; }
  .header-actions .button { padding-inline: 15px; font-size: 14px; }
  .hero h1 { font-size: clamp(55px, 7vw, 76px); }
  .hero-copy { width: 60%; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex; }
  .site-header { height: 82px; }
  .header-inner { justify-content: space-between; }
  .brand-mark { width: 39px; height: 44px; border-width: 4px; }
  .brand-name { font-size: 28px; }
  .menu-button { width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; color: var(--navy); align-items: center; justify-content: center; border-radius: var(--radius-sm); }
  .main-nav { display: none; position: absolute; top: 82px; left: 0; right: 0; background: var(--cream); padding: 20px 24px 30px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .hero { min-height: 850px; }
  .hero::before { inset: 0; background: linear-gradient(180deg, var(--cream) 0 48%, rgba(246,240,230,.74) 64%, rgba(246,240,230,.12)); }
  .hero-media { inset: 38% 0 0 0; }
  .hero-media img { object-position: 61% center; }
  .hero-inner { min-height: 850px; align-items: flex-start; padding-top: 60px; }
  .hero-copy { width: 100%; max-width: 670px; }
  .hero h1 { font-size: clamp(48px, 9.8vw, 70px); }
  .hero-search { bottom: 30px; }
  .search-bar { grid-template-columns: 1fr 1fr; min-height: auto; gap: 0; }
  .keyword-field { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-field:nth-of-type(3) { border-right: 0; }
  .search-submit { grid-column: 1 / -1; margin: 12px 0 0; }
  .category-grid, .region-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: 230px; }
  .steps-grid article > svg { margin-bottom: 30px; }
  .owner-cta { grid-template-columns: 1fr; padding: 50px; }
  .owner-art { min-height: 240px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 32px, 560px); }
  .hero { min-height: 920px; }
  .hero-inner { padding-top: 42px; }
  .hero h1 { font-size: clamp(43px, 13vw, 59px); }
  .hero-lede { margin-top: 22px; font-size: 17px; }
  .hero-media { inset: 45% 0 0; }
  .hero-search { bottom: 18px; }
  .search-bar { display: flex; flex-direction: column; align-items: stretch; padding: 10px; }
  .search-field { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 13px; height: 56px; }
  .search-submit { width: 100%; min-width: 0; height: 56px; margin-top: 10px; }
  .section { padding-block: 70px; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .category-grid, .region-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 115px; }
  .region-card { min-height: 180px; }
  .owner-cta { width: calc(100% - 32px); margin-block: 70px; padding: 36px 27px; }
  .owner-art { min-height: 215px; }
  .owner-stat { right: 0; width: min(100%, 280px); }
  .newsletter-fields { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 22px; flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Directory */
.alphabet { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 7px; }
.alphabet span { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #cbbdad; color: var(--navy); background: rgba(255,255,255,.45); border-radius: 7px; font-size: 12px; font-weight: 800; }
.directory-layout { display: grid; grid-template-columns: 285px 1fr; gap: 34px; align-items: start; }
.filter-panel { position: sticky; top: 25px; background: rgba(255,255,255,.68); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; display: grid; gap: 22px; }
.filter-heading { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 17px; }
.filter-heading h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 26px; }
.filter-heading button { border: 0; background: transparent; color: var(--terracotta-dark); font-size: 12px; font-weight: 750; }
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; left: 13px; top: 15px; color: var(--navy); }
.input-with-icon input { padding-left: 41px; }
.toggle-row { display: flex; gap: 10px; align-items: flex-start; }
.toggle-row input { appearance: none; width: 38px; height: 22px; background: #cfc9c1; border-radius: 20px; padding: 3px; flex-shrink: 0; transition: background .18s; }
.toggle-row input::after { content: ""; display: block; width: 16px; height: 16px; border-radius: 50%; background: var(--white); transition: transform .18s; }
.toggle-row input:checked { background: var(--terracotta); }
.toggle-row input:checked::after { transform: translateX(16px); }
.toggle-row span { display: grid; }
.toggle-row strong { color: var(--navy); font-size: 13px; }
.toggle-row small { color: var(--muted); font-size: 11px; }
.results-toolbar { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.results-toolbar p { color: var(--muted); font-weight: 700; }
.toolbar-actions { display: flex; gap: 12px; }
.toolbar-actions select { height: 42px; border: 1px solid var(--line); background: rgba(255,255,255,.7); color: var(--navy); border-radius: 8px; padding: 0 34px 0 12px; }
.view-switcher { display: flex; padding: 3px; background: #e7ddd0; border-radius: 9px; }
.view-switcher button { width: 38px; height: 36px; border: 0; background: transparent; color: #716d68; border-radius: 7px; display: grid; place-items: center; }
.view-switcher button.active { background: var(--white); color: var(--terracotta); box-shadow: 0 2px 8px rgba(16,37,63,.1); }
.business-grid.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.business-grid.list { display: grid; gap: 16px; }
.business-card { position: relative; border: 1px solid var(--line); background: rgba(255,255,255,.76); border-radius: var(--radius-md); overflow: hidden; transition: transform .18s, box-shadow .18s; }
.business-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16,37,63,.09); }
.business-image { height: 185px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, #ead7c7, #c7d4d2); }
.business-image img { width: 100%; height: 100%; object-fit: cover; }
.business-image > span { width: 78px; height: 78px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.7); color: var(--navy); font-family: var(--font-display); font-size: 39px; }
.favorite-button { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.91); color: var(--navy); display: grid; place-items: center; }
.favorite-button.active { color: var(--terracotta); }
.favorite-button.active svg { fill: currentColor; }
.business-card-body { padding: 20px; }
.business-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; color: var(--terracotta-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.business-meta .verified { display: inline-flex; align-items: center; gap: 3px; color: #277155; }
.business-card h2 { margin: 8px 0; color: var(--navy); font-family: var(--font-display); font-size: 25px; line-height: 1.1; }
.business-card-body > p { color: var(--muted); font-size: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.business-card-footer { padding-top: 13px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #625f5b; font-size: 12px; }
.business-card-footer span { display: inline-flex; align-items: center; gap: 4px; }
.business-card.list { display: grid; grid-template-columns: 220px 1fr; min-height: 185px; }
.business-card.list .business-image { height: 100%; }
.business-card.list .business-card-body { display: flex; flex-direction: column; justify-content: center; }
.map-panel { min-height: 520px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #dce4dc; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--navy); }
.map-panel::before, .map-panel::after, .map-lines { content: ""; position: absolute; inset: -20%; background: repeating-linear-gradient(35deg, transparent 0 60px, rgba(16,37,63,.08) 61px 64px, transparent 65px 115px); transform: rotate(4deg); }
.map-panel::after { background: repeating-linear-gradient(118deg, transparent 0 90px, rgba(198,95,67,.12) 91px 94px, transparent 95px 150px); }
.map-panel > :not(.map-lines) { position: relative; z-index: 2; }
.map-panel h2 { font-family: var(--font-display); font-size: 30px; margin: 12px 0 3px; }
.loading-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.loading-grid span { height: 360px; border-radius: var(--radius-md); background: linear-gradient(90deg, #e9dfd2, #f7f2eb, #e9dfd2); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Catalog and content pages */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card { min-height: 145px; position: relative; display: flex; gap: 18px; align-items: center; padding: 25px; background: rgba(255,255,255,.68); border: 1px solid var(--line); border-radius: var(--radius-md); }
.catalog-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16,37,63,.08); }
.catalog-card h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 24px; line-height: 1.12; }
.catalog-card p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.catalog-card small { color: var(--terracotta-dark); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.catalog-arrow { position: absolute; right: 18px; top: 18px; color: var(--terracotta); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 25px; }
.story-main { padding: 45px; }
.story-main h2, .criteria-box h2, .contact-layout h2, .legal-content h2 { color: var(--navy); font-family: var(--font-display); font-size: 34px; }
.story-main p { font-size: 17px; color: var(--muted); }
.story-main .button { margin-top: 15px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.values-grid article { border-radius: var(--radius-md); padding: 26px; background: #e9ddd0; }
.values-grid svg { color: var(--terracotta); }
.values-grid h3 { margin: 22px 0 5px; color: var(--navy); font-family: var(--font-display); font-size: 24px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.criteria-box { margin-top: 25px; padding: 42px; background: var(--navy); color: #d7e0e9; border-radius: var(--radius-md); display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.criteria-box h2 { margin: 0; color: var(--white); }
.faq-list { display: grid; gap: 12px; max-width: 900px; margin: auto; }
.faq-list details { border: 1px solid var(--line); background: rgba(255,255,255,.66); border-radius: var(--radius-sm); padding: 0 24px; }
.faq-list summary { cursor: pointer; padding: 20px 0; color: var(--navy); font-weight: 800; }
.faq-list details p { padding: 0 0 20px; margin: 0; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 25px; align-items: start; }
.form-actions { display: flex; align-items: center; gap: 20px; }
.success-note { color: #285f3f; font-weight: 700; }
.legal-content { max-width: 900px; margin: auto; padding: 50px; }
.legal-content h2 { margin-top: 35px; font-size: 29px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-notice { padding: 15px; background: #f0ded4; border-left: 4px solid var(--terracotta); color: var(--navy) !important; }

/* Submission form */
.business-form { max-width: 1000px; margin: auto; }
.form-progress { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); }
.form-progress li { position: relative; display: grid; justify-items: center; gap: 7px; color: #918b83; text-align: center; }
.form-progress li::before { content: ""; position: absolute; height: 2px; background: #d6cec3; top: 17px; left: -50%; right: 50%; z-index: -1; }
.form-progress li:first-child::before { display: none; }
.form-progress li > span { width: 35px; height: 35px; border: 2px solid #cfc6bb; background: var(--cream); border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.form-progress li.active, .form-progress li.done { color: var(--navy); }
.form-progress li.active > span, .form-progress li.done > span { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.form-progress li.done::before, .form-progress li.active::before { background: var(--terracotta); }
.form-step { padding: 45px; }
.form-step-heading { border-bottom: 1px solid var(--line); margin-bottom: 30px; padding-bottom: 24px; }
.form-step-heading p { margin: 0; color: var(--terracotta-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.form-step-heading h2, .submission-success h2 { margin: 4px 0 0; color: var(--navy); font-family: var(--font-display); font-size: 38px; }
.address-toggle { align-self: end; padding-bottom: 10px; }
.address-toggle span { display: grid; }
.address-toggle small { color: var(--muted); }
.hours-editor { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.hours-row { min-height: 55px; padding: 8px 12px; display: grid; grid-template-columns: 1fr 90px 120px 20px 120px; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row label { font-size: 12px; }
.hours-row input[type="time"] { min-height: 37px; padding: 5px 7px; }
.file-drop { min-height: 145px; border: 1px dashed #c4b9ab; border-radius: var(--radius-sm); background: #f6f1ea; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; text-align: center; }
.file-drop svg { color: var(--terracotta); }
.file-drop input { border: 0; background: transparent; height: auto; min-height: 0; width: auto; max-width: 100%; }
.file-drop small { margin-top: 5px; }
.form-navigation { display: flex; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); margin-top: 35px; padding-top: 25px; }
.review-submission { display: grid; gap: 25px; }
.submission-summary { display: flex; gap: 18px; padding: 22px; background: #f1e7da; border-radius: var(--radius-sm); }
.submission-summary h3 { margin: 2px 0; color: var(--navy); font-family: var(--font-display); font-size: 27px; }
.submission-summary p { margin: 0; color: var(--muted); }
.confirmation-list { display: grid; gap: 17px; }
.moderation-notice { display: flex; gap: 15px; padding: 20px; background: #e4ece4; color: #234838; border-radius: var(--radius-sm); }
.moderation-notice p { margin: 3px 0 0; }
.error-note { padding: 13px 15px; background: #f6ded7; color: #8d281c; border-radius: 8px; font-weight: 700; }
.submission-success { max-width: 720px; margin: 20px auto; padding: 60px; border: 1px solid var(--line); background: rgba(255,255,255,.7); border-radius: var(--radius-lg); text-align: center; }
.submission-success > span { width: 70px; height: 70px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%; color: white; background: #337052; }
.reference-box { margin: 25px auto; padding: 16px; width: min(100%, 320px); display: grid; border: 1px dashed #b9ad9e; border-radius: 8px; }
.reference-box strong { color: var(--navy); font-size: 20px; letter-spacing: .1em; }

/* Business detail */
.business-cover { height: 440px; position: relative; background: linear-gradient(135deg, #d4c4b2, #9bb0aa); }
.business-cover > img { width: 100%; height: 100%; object-fit: cover; }
.cover-placeholder { position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.3), transparent 30%), linear-gradient(135deg,#e5c6b2,#91a8a1); }
.business-title-card { position: absolute; bottom: -75px; left: 50%; transform: translateX(-50%); min-height: 150px; padding: 25px 35px; display: flex; gap: 25px; align-items: center; background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.business-logo { width: 95px; height: 95px; flex-shrink: 0; display: grid; place-items: center; overflow: hidden; border-radius: 50%; background: #ead8ca; color: var(--navy); font-family: var(--font-display); font-size: 45px; }
.business-logo img { width: 100%; height: 100%; object-fit: cover; }
.business-title-card h1 { margin: 5px 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(40px,5vw,62px); line-height: 1; }
.business-title-card > div > p { margin: 0; display: flex; gap: 6px; align-items: center; color: var(--muted); }
.business-detail-layout { display: grid; grid-template-columns: 1fr 330px; gap: 45px; padding-top: 130px; padding-bottom: 100px; }
.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.button-ghost { background: #eae2d7; color: var(--navy); }
.detail-section { padding: 55px 0; border-bottom: 1px solid var(--line); }
.detail-section h2 { margin: 0 0 18px; color: var(--navy); font-family: var(--font-display); font-size: clamp(31px,3.3vw,46px); line-height: 1.12; }
.long-copy { white-space: pre-line; color: var(--muted); font-size: 17px; line-height: 1.8; }
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.info-cards article { background: rgba(255,255,255,.65); border-radius: 12px; padding: 20px; }
.info-cards svg { color: var(--terracotta); }
.info-cards strong { display: block; margin-top: 14px; color: var(--navy); }
.info-cards p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.photo-grid img { width: 100%; aspect-ratio: 1.2; object-fit: cover; border-radius: 10px; }
.reviews-heading { display: flex; justify-content: space-between; gap: 25px; align-items: start; }
.average-rating { display: flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 750; }
.average-rating svg, .review-stars .filled, .rating-picker .active { color: #c98b2d; fill: currentColor; }
.review-form-panel { margin-top: 25px; }
.rating-picker { display: flex; gap: 4px; }
.rating-picker button { padding: 3px; border: 0; background: transparent; color: #bcb6ae; }
.review-success { padding: 20px; text-align: center; color: #285f3f; }
.review-list { display: grid; gap: 15px; margin-top: 25px; }
.review-list > article { padding: 24px; border: 1px solid var(--line); background: rgba(255,255,255,.65); border-radius: 12px; }
.review-list h3 { margin: 7px 0; color: var(--navy); font-family: var(--font-display); font-size: 24px; }
.review-list small { color: var(--muted); }
.review-list blockquote { margin: 20px 0 0; padding: 16px; background: #e8e1d7; border-left: 3px solid var(--terracotta); }
.review-stars { display: flex; color: #cbc4ba; }
.business-sidebar { display: grid; gap: 18px; align-content: start; }
.business-sidebar h2 { margin-top: 0; color: var(--navy); font-family: var(--font-display); font-size: 27px; }
.business-sidebar .panel > a { display: flex; align-items: center; gap: 8px; margin: 13px 0; color: var(--navy); word-break: break-word; }
.hours-list > div { padding: 8px 0; display: flex; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); font-size: 13px; }
.hours-list > div:last-child { border: 0; }
.verification-explainer { padding: 24px; border-radius: var(--radius-md); background: #dfe8df; color: #264f3d; }
.verification-explainer strong { display: block; margin-top: 12px; }
.verification-explainer p { margin-bottom: 0; font-size: 12px; }
.report-link, .danger-link { border: 0; background: transparent; color: #943426; padding: 8px 0; text-decoration: underline; }

/* Administration */
.admin-login { max-width: 520px; margin: auto; text-align: center; }
.admin-login .empty-icon { width: 60px; height: 60px; margin: auto; display: grid; place-items: center; border-radius: 50%; background: #ead9ce; color: var(--terracotta); }
.admin-login h2 { color: var(--navy); font-family: var(--font-display); font-size: 35px; }
.admin-login .form-control { text-align: left; margin: 20px 0; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 25px; }
.admin-tabs button { min-height: 45px; padding: 0 18px; border: 1px solid var(--line); background: rgba(255,255,255,.5); color: var(--navy); border-radius: 9px; font-weight: 750; }
.admin-tabs button.active { background: var(--navy); color: white; }
.admin-tabs span { display: inline-grid; place-items: center; min-width: 22px; height: 22px; margin-left: 7px; background: rgba(198,95,67,.2); border-radius: 50%; font-size: 11px; }
.moderation-list { display: grid; gap: 15px; }
.moderation-list article { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; }
.moderation-list h2 { margin: 8px 0 3px; color: var(--navy); font-family: var(--font-display); font-size: 28px; }
.moderation-list p { color: var(--muted); }
.moderation-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 1050px) {
  .business-grid.grid { grid-template-columns: repeat(2,1fr); }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .directory-layout { grid-template-columns: 240px 1fr; }
  .business-detail-layout { grid-template-columns: 1fr; }
  .business-sidebar { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 800px) {
  .directory-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .story-grid, .criteria-box, .contact-layout { grid-template-columns: 1fr; }
  .criteria-box { gap: 15px; }
  .business-title-card { bottom: -100px; }
  .business-detail-layout { padding-top: 155px; }
  .info-cards { grid-template-columns: 1fr; }
  .form-step { padding: 30px 24px; }
  .hours-row { grid-template-columns: 1fr 70px 1fr 15px 1fr; }
  .moderation-list article { grid-template-columns: 1fr; }
  .moderation-actions { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .results-toolbar { align-items: flex-start; flex-direction: column; }
  .toolbar-actions { width: 100%; flex-wrap: wrap; }
  .business-grid.grid { grid-template-columns: 1fr; }
  .business-card.list { grid-template-columns: 1fr; }
  .business-card.list .business-image { height: 175px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .legal-content { padding: 26px; }
  .form-progress small { display: none; }
  .hours-editor { overflow-x: auto; }
  .hours-row { min-width: 560px; }
  .business-cover { height: 330px; }
  .business-title-card { bottom: -135px; padding: 22px; align-items: flex-start; }
  .business-logo { width: 70px; height: 70px; }
  .business-detail-layout { padding-top: 185px; }
  .quick-actions .button { flex: 1; }
  .business-sidebar { grid-template-columns: 1fr; }
  .reviews-heading { flex-direction: column; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .admin-tabs { overflow-x: auto; }
}

/* Adaptations de la version PHP/WHC */
.flash { position: fixed; z-index: 100; top: 112px; left: 50%; transform: translateX(-50%); width: min(680px, calc(100% - 30px)); padding: 16px 20px; border-radius: 10px; box-shadow: var(--shadow); font-weight: 750; transition: opacity .25s, transform .25s; }
.flash.success { background: #dfeee5; color: #24543c; border: 1px solid #afd1bc; }
.flash.error { background: #f7ded8; color: #852d20; border: 1px solid #e8b4aa; }
.flash.warning { background: #f3e7cc; color: #775b1d; border: 1px solid #dbc58e; }
.flash-hide { opacity: 0; transform: translate(-50%,-10px); pointer-events: none; }
.filter-panel form { display: grid; gap: 18px; }
.business-form > h2 { margin: 42px 0 20px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--navy); font-family: var(--font-display); font-size: 31px; }
.business-form > h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.submit-wide { width: 100%; margin-top: 30px; }
.admin-section { margin: 55px 0; }
.admin-section > h2 { color: var(--navy); font-family: var(--font-display); font-size: 33px; }
.admin-section > h2 span { display: inline-grid; place-items: center; min-width: 34px; height: 34px; margin-left: 8px; border-radius: 50%; background: #edd9cf; color: var(--terracotta-dark); font-family: var(--font-sans); font-size: 13px; }
.review-form { margin-top: 28px; }
.mobile-only.menu-button { border: 1px solid var(--line); background: transparent; color: var(--navy); font-size: 25px; }

/* Comptes BizzNoir en PHP/MySQL */
.account-chip { max-width: 190px; min-height: 44px; padding: 6px 13px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55); color: var(--navy); font-weight: 750; overflow: hidden; }
.account-chip > span { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border-radius: 50%; background: var(--terracotta); color: var(--white); font-size: 12px; overflow: hidden; }
.auth-page { max-width: 1160px; }
.auth-page-narrow { max-width: 720px; }
.auth-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); gap: 34px; align-items: start; }
.auth-page-narrow .auth-layout { display: block; }
.auth-card { padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow); }
.auth-card-heading { display: flex; align-items: center; gap: 17px; margin-bottom: 28px; }
.auth-card-heading h2, .verification-card h2, .account-content h2, .account-gate h2, .dashboard-heading h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: clamp(31px, 3.2vw, 43px); line-height: 1.08; }
.auth-card-heading .eyebrow { margin-bottom: 4px; }
.auth-icon { width: 56px; height: 56px; flex: 0 0 56px; display: grid; place-items: center; border-radius: 17px; background: var(--navy); color: var(--white); font-family: var(--font-display); font-size: 17px; font-weight: 750; letter-spacing: -.04em; box-shadow: 0 10px 24px rgba(16,37,63,.18); }
.provider-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.provider-button { min-height: 56px; padding: 9px 14px; display: grid; grid-template-columns: 24px 1fr auto; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); color: var(--navy); text-align: left; font-weight: 750; }
.provider-button:disabled { cursor: not-allowed; opacity: .62; }
.provider-button small { padding: 3px 7px; border-radius: 999px; background: var(--cream-deep); color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .04em; }
.provider-mark { width: 24px; height: 24px; display: grid; place-items: center; font-weight: 850; }
.google-mark { color: #4285f4; font-family: Arial, sans-serif; font-size: 19px; }
.microsoft-mark { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
.microsoft-mark i:nth-child(1) { background: #f25022; }
.microsoft-mark i:nth-child(2) { background: #7fba00; }
.microsoft-mark i:nth-child(3) { background: #00a4ef; }
.microsoft-mark i:nth-child(4) { background: #ffb900; }
.auth-separator { margin: 27px 0; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.auth-separator::before, .auth-separator::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.auth-form { gap: 18px; }
.auth-form-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.auth-form-row-end { justify-content: flex-end; }
.auth-form .form-control input:read-only { background: #f2eee7; color: var(--muted); }
.input-status-wrap, .password-wrap { position: relative; }
.input-status-wrap input, .password-wrap input { padding-right: 92px; }
.input-status-icon { position: absolute; top: 50%; right: 15px; transform: translateY(-50%); width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; font-size: 13px; font-weight: 850; }
.input-status-wrap.is-loading .input-status-icon { border: 2px solid var(--line); border-top-color: var(--terracotta); animation: identity-spin .8s linear infinite; }
.input-status-wrap.is-valid .input-status-icon { background: #dcecdf; color: #2e6743; }
.input-status-wrap.is-valid .input-status-icon::before { content: "✓"; }
.input-status-wrap.is-invalid .input-status-icon { background: #f5ddd7; color: #903624; }
.input-status-wrap.is-invalid .input-status-icon::before { content: "!"; }
.input-status-wrap.is-valid input { border-color: #73a984; }
.input-status-wrap.is-invalid input { border-color: #c66c58; }
.username-suggestions { display: flex; flex-wrap: wrap; gap: 7px; }
.username-suggestions button { border: 1px solid #cabfb1; border-radius: 999px; padding: 5px 10px; background: #f2e9de; color: var(--navy); font-size: 12px; }
.password-toggle { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); min-height: 36px; padding: 0 9px; border: 0; border-radius: 7px; background: transparent; color: var(--navy); font-size: 12px; font-weight: 750; }
.password-toggle:hover { background: var(--cream-deep); }
.password-meter { height: 6px; overflow: hidden; border-radius: 999px; background: #e4ddd3; }
.password-meter span { display: block; width: 0; height: 100%; border-radius: inherit; background: #b8aaa0; transition: width .2s ease, background .2s ease; }
.password-meter span[data-strength="weak"] { background: #b74f3c; }
.password-meter span[data-strength="medium"] { background: #c38a2b; }
.password-meter span[data-strength="strong"] { background: #3e7653; }
.auth-submit { width: 100%; margin-top: 7px; }
.auth-switch { margin: 23px 0 0; color: var(--muted); text-align: center; }
.auth-switch a, .auth-form-row a { color: var(--terracotta-dark); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.auth-benefits { position: sticky; top: 28px; padding: clamp(28px, 3vw, 38px); background: var(--navy); color: #dce3e9; border: 0; }
.auth-benefits h2 { margin: 0; color: var(--white); font-family: var(--font-display); font-size: 31px; }
.auth-benefits ul { margin: 24px 0 0; padding: 0; display: grid; gap: 18px; list-style: none; }
.auth-benefits li { position: relative; padding-left: 33px; }
.auth-benefits li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); color: #f1a48d; font-weight: 850; }
.auth-benefits li > span { display: none; }
.auth-benefits li strong, .auth-benefits li small { display: block; }
.auth-benefits li small { margin-top: 3px; color: #b7c4cf; }
.inline-notice { margin-bottom: 24px; padding: 16px 18px; border-radius: 10px; border: 1px solid transparent; font-size: 14px; }
.inline-notice strong, .inline-notice span { display: block; }
.inline-notice span { margin-top: 3px; }
.inline-notice.setup { background: #e9e4d5; border-color: #d4c6a3; color: #665424; }
.inline-notice.warning { background: #f8e3dc; border-color: #e9b9ab; color: #793525; }
.verification-card { text-align: center; }
.mail-illustration { width: 84px; height: 84px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: #eedcd2; color: var(--terracotta-dark); font-size: 34px; }
.verification-card > p { max-width: 520px; margin-inline: auto; color: var(--muted); }
.code-form { max-width: 410px; margin: 28px auto 0; display: grid; gap: 16px; }
.code-form input { min-height: 64px; text-align: center; font-size: 30px; letter-spacing: .35em; font-weight: 750; }
.resend-form { margin-top: 15px; }
.resend-form button { border: 0; background: transparent; color: var(--terracotta-dark); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.security-copy { margin-top: 30px; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.confirmation-list { margin: 22px 0; padding-left: 20px; color: var(--muted); text-align: left; }
.account-page { max-width: 1180px; }
.account-grid { display: grid; grid-template-columns: 285px minmax(0, 1fr); gap: 30px; align-items: start; }
.account-sidebar { position: sticky; top: 24px; text-align: center; }
.account-avatar { width: 82px; height: 82px; margin: 0 auto 13px; display: grid; place-items: center; border-radius: 50%; background: var(--terracotta); color: white; font-family: var(--font-display); font-size: 29px; font-weight: 750; }
.account-sidebar h2 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 26px; overflow-wrap: anywhere; }
.account-status { margin: 9px 0 22px; color: var(--muted); font-size: 13px; }
.account-status.verified { color: #2d6743; }
.account-sidebar nav { display: grid; margin: 20px -12px -10px; text-align: left; }
.account-sidebar nav a { padding: 12px 14px; border-radius: 9px; color: var(--navy); font-weight: 700; }
.account-sidebar nav a:hover, .account-sidebar nav a.active { background: var(--cream-deep); color: var(--terracotta-dark); }
.account-content { min-width: 0; }
.profile-details { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.profile-details > div { padding: 17px; border-radius: 10px; background: #f1ebe2; }
.profile-details dt { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.profile-details dd { margin: 5px 0 0; color: var(--navy); font-weight: 750; overflow-wrap: anywhere; }
.account-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.account-security { margin-top: 38px; padding-top: 32px; border-top: 1px solid var(--line); }
.account-security h3 { margin: 0 0 22px; color: var(--navy); font-family: var(--font-display); font-size: 27px; }
.account-gate { max-width: 680px; margin: 30px auto; text-align: center; }
.account-gate .auth-icon { margin: 0 auto 20px; }
.account-gate p { max-width: 520px; margin: 13px auto 24px; color: var(--muted); }
.account-gate > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.dashboard-heading { margin-bottom: 25px; display: flex; justify-content: space-between; align-items: end; gap: 22px; }
.dashboard-heading p { margin: 7px 0 0; color: var(--muted); }
.owner-business-list { display: grid; gap: 14px; }
.owner-business-row { padding: 20px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.62); }
.owner-business-row h3 { margin: 0; color: var(--navy); font-family: var(--font-display); font-size: 26px; }
.owner-business-row p { margin: 5px 0 0; color: var(--muted); }
.status-pill { display: inline-flex; align-items: center; min-height: 30px; padding: 0 11px; border-radius: 999px; background: #ebe4db; color: var(--muted); font-size: 11px; font-weight: 800; white-space: nowrap; }
.status-pill.status-published, .status-pill.status-verified { background: #dcecdf; color: #2d6743; }
.status-pill.status-pending_review, .status-pill.status-pending { background: #f3e7cc; color: #775b1d; }
.status-pill.status-rejected, .status-pill.status-suspended { background: #f4dcd7; color: #8a3426; }

@keyframes identity-spin { to { transform: translateY(-50%) rotate(360deg); } }

@media (max-width: 1040px) {
  .header-actions .account-chip { display: none; }
  .auth-layout { grid-template-columns: minmax(0, 1fr) 310px; }
}

@media (max-width: 820px) {
  .auth-layout, .account-grid { grid-template-columns: 1fr; }
  .auth-benefits, .account-sidebar { position: static; }
  .account-sidebar nav { grid-template-columns: 1fr 1fr; gap: 5px; }
}

@media (max-width: 620px) {
  .auth-card { padding: 25px 20px; }
  .provider-buttons, .profile-details { grid-template-columns: 1fr; }
  .auth-form-row, .dashboard-heading { align-items: stretch; flex-direction: column; }
  .account-sidebar nav { grid-template-columns: 1fr; }
  .owner-business-row { grid-template-columns: 1fr; }
  .code-form input { font-size: 25px; letter-spacing: .24em; }
}

/* BizzNoir 2026 — finition bilingue et parcours membre */
.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

body {
  background:
    radial-gradient(circle at 8% 2%, rgba(216,95,61,.06), transparent 24rem),
    var(--cream);
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1240px, calc(100% - 56px)); }

.site-header {
  position: sticky;
  top: 0;
  height: 86px;
  z-index: 80;
  background: rgba(248,245,239,.88);
  border-bottom-color: rgba(17,24,39,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner { gap: 26px; }
.brand { gap: 11px; }
.brand-mark {
  width: 43px;
  height: 46px;
  border-width: 4px;
  border-radius: 23px 23px 7px 7px;
}
.brand-mark span { font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.brand-name { font-size: 27px; font-weight: 800; letter-spacing: -.045em; }
.main-nav { gap: clamp(15px, 1.55vw, 25px); }
.main-nav > a {
  padding-block: 29px 26px;
  color: #394150;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.025em;
}
.main-nav a::after { bottom: 19px; height: 3px; border-radius: 3px; }
.header-tools { display: flex; align-items: center; gap: 11px; margin-left: 3px; }
.header-actions { gap: 10px; }
.header-signin {
  min-height: 42px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  border-radius: 11px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}
.header-signin:hover {
  color: var(--terracotta-dark);
  background: rgba(255,255,255,.76);
  box-shadow: 0 8px 22px rgba(17,24,39,.07);
}
.language-switcher {
  min-height: 42px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(17,24,39,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  box-shadow: inset 0 1px rgba(255,255,255,.9);
}
.language-choice {
  min-width: 54px;
  min-height: 32px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #69717c;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .025em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.language-choice:hover {
  color: var(--navy);
  background: rgba(255,255,255,.82);
}
.language-choice.is-active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(17,24,39,.12);
}
.language-flag {
  position: relative;
  width: 21px;
  height: 14px;
  flex: 0 0 21px;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.13);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(17,24,39,.12);
}
.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.333%, #fff 33.333% 66.666%, #ef4135 66.666%);
}
.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 1.08px,
    #fff 1.08px 2.16px
  );
}
.flag-us::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 9px;
  height: 7.5px;
  background: #3c3b6e;
}
.flag-us::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 7px;
  height: 5.5px;
  background-image: radial-gradient(circle, #fff 0 .45px, transparent .55px);
  background-size: 2px 2px;
}
.button {
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.025em;
}
.button-compact { min-height: 42px; padding-inline: 15px; font-size: 13px; }
.button-primary {
  background: linear-gradient(135deg, #de6745, #c94d2d);
  box-shadow: 0 10px 24px rgba(185,71,44,.2);
}
.button-primary:hover { background: linear-gradient(135deg, #c85132, #aa3f26); }
.button-secondary { border-color: rgba(17,24,39,.22); background: rgba(255,255,255,.45); }

.hero { min-height: 720px; background: #f5f0e8; }
.hero::before {
  inset: 0 44% 0 0;
  background: linear-gradient(90deg, #f8f5ef 70%, rgba(248,245,239,0));
}
.hero-media { inset: 0 0 0 42%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(17,24,39,.08), transparent 40%),
    linear-gradient(0deg, rgba(17,24,39,.18), transparent 52%);
}
.hero-inner { min-height: 720px; padding-bottom: 118px; }
.hero-copy { width: 56%; max-width: 680px; }
.hero h1 {
  max-width: 670px;
  font-size: clamp(49px, 5vw, 74px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1.01;
}
.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: #69717d;
  font-family: "Inter", sans-serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.55;
}
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-actions .button { min-height: 50px; }
.hero-actions .button-light {
  border: 1px solid rgba(17,24,39,.16);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
}
.hero-search { bottom: 38px; }
.search-bar {
  min-height: 94px;
  padding: 12px;
  border-radius: 18px;
  border-color: rgba(17,24,39,.1);
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 60px rgba(17,24,39,.16);
  backdrop-filter: blur(14px);
}
.search-field { height: 58px; padding-inline: 19px; }
.search-field input, .search-field select { font-size: 15px; }
.search-submit { min-width: 155px; height: 58px; margin-left: 12px; font-size: 15px; }

.section { padding-block: 88px; }
.section-heading { margin-bottom: 34px; }
.section-heading h2, .owner-cta h2, .page-hero h1 {
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.04;
}
.eyebrow { letter-spacing: .16em; font-size: 11px; }
.category-grid { gap: 14px; }
.category-card {
  min-height: 136px;
  padding: 22px;
  border-color: rgba(17,24,39,.09);
  background: rgba(255,255,255,.7);
  box-shadow: 0 8px 30px rgba(17,24,39,.035);
}
.category-card:hover { border-color: rgba(216,95,61,.3); box-shadow: 0 18px 44px rgba(17,24,39,.1); }
.category-icon { width: 44px; height: 44px; background: rgba(216,95,61,.11); }
.region-section { background: linear-gradient(145deg, #101827, #192638); }
.region-card { border: 1px solid rgba(255,255,255,.1); transition: transform .2s ease, box-shadow .2s ease; }
.region-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,.22); }
.how-section { background: #eee8de; }
.steps-grid article {
  min-height: 240px;
  border: 1px solid rgba(17,24,39,.07);
  background: rgba(255,255,255,.62);
}
.steps-grid article > span { color: rgba(17,24,39,.2); font-size: 31px; }
.steps-grid h3 { margin-top: 74px; font-weight: 800; }
.empty-state {
  border-color: #cfc7bc;
  background: rgba(255,255,255,.5);
  box-shadow: inset 0 1px rgba(255,255,255,.7);
}

.owner-cta {
  min-height: 430px;
  margin-block: 88px;
  padding: clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.18), transparent 15rem),
    linear-gradient(135deg, #d85f3d, #b8452b);
  box-shadow: 0 30px 80px rgba(169,61,36,.22);
}
.owner-cta h2 { max-width: 680px; font-size: clamp(38px, 4.3vw, 58px); }
.owner-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.owner-text-link { color: var(--white); font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.owner-stat { border: 1px solid rgba(255,255,255,.5); }

.page-hero {
  padding: 70px 0 50px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 82% 25%, rgba(216,95,61,.14), transparent 17rem),
    linear-gradient(135deg, #f0e9df, #f8f5ef);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 5%;
  top: -150px;
  border: 1px solid rgba(216,95,61,.16);
  border-radius: 50%;
}
.page-hero h1 { max-width: 900px; font-size: clamp(40px, 5vw, 64px); }
.page-hero p:not(.eyebrow) { margin-bottom: 0; line-height: 1.65; }
.page-content { padding-block: 58px 92px; }
.panel {
  border-color: rgba(17,24,39,.09);
  background: rgba(255,255,255,.73);
  box-shadow: 0 15px 50px rgba(17,24,39,.055);
  backdrop-filter: blur(8px);
}
.form-control > span { color: #252d39; font-size: 13px; }
.form-control input,
.form-control select,
.form-control textarea {
  border-color: #d7d2c9;
  background: rgba(255,255,255,.9);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(216,95,61,.1);
}
.checkbox-control input { accent-color: var(--terracotta); }

.auth-card { border-radius: 24px; }
.auth-card-heading h2,
.verification-card h2,
.account-content h2,
.account-gate h2,
.dashboard-heading h2 { font-weight: 800; letter-spacing: -.045em; }
.auth-icon {
  background: linear-gradient(145deg, #111827, #28384d);
  border-radius: 16px;
  font-family: var(--font-display);
}
.auth-benefits {
  top: 110px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 110% -5%, rgba(216,95,61,.5), transparent 17rem),
    linear-gradient(155deg, #111827, #223247);
  box-shadow: 0 25px 65px rgba(17,24,39,.2);
}
.auth-benefits h2 { font-weight: 800; letter-spacing: -.04em; }
.auth-benefits li { padding-left: 32px; }
.auth-path-card {
  margin-top: 30px;
  padding: 18px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}
.auth-path-card span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(216,95,61,.22);
  color: #ffc1ad;
  font-size: 11px;
  font-weight: 800;
}
.auth-path-card p { margin: 3px 0; color: #e1e7ee; font-size: 13px; font-weight: 600; }
.registration-consents {
  display: grid;
  gap: 12px;
  padding: 17px;
  border: 1px solid #ded7cd;
  border-radius: 14px;
  background: rgba(248,245,239,.68);
}
.registration-consents .checkbox-control + .checkbox-control { padding-top: 13px; border-top: 1px solid #e0d9d0; }
.checkbox-control span small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.optional-consent { color: #343b46; }
.account-preferences {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.account-preferences h3 { margin: 0 0 18px; color: var(--navy); font-family: var(--font-display); font-size: 27px; }
.account-preferences form { display: grid; gap: 16px; justify-items: start; }
.preference-box {
  width: 100%;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f7f2eb;
}

.form-intro-strip {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.66);
  overflow: hidden;
}
.form-intro-strip > div {
  min-width: 0;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.form-intro-strip > div + div { border-left: 1px solid var(--line); }
.form-intro-strip > div > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.form-intro-strip p, .form-intro-strip strong, .form-intro-strip small { display: block; margin: 0; }
.form-intro-strip strong { color: var(--navy); font-size: 13px; }
.form-intro-strip small { color: var(--muted); font-size: 11px; }
.business-form { max-width: 980px; margin-inline: auto; padding: clamp(25px, 5vw, 54px); }
.business-form > h2 { font-weight: 800; letter-spacing: -.035em; }

.catalog-card,
.business-card,
.filter-panel,
.owner-business-row { border-color: rgba(17,24,39,.09); box-shadow: 0 10px 34px rgba(17,24,39,.04); }
.catalog-card:hover,
.business-card:hover { border-color: rgba(216,95,61,.3); box-shadow: 0 18px 48px rgba(17,24,39,.1); }
.filter-panel { top: 108px; }
.site-footer { background: linear-gradient(145deg, #0b111d, #121f30); }
.site-footer .brand-mark { border-color: #ed7a59; color: #ed7a59; }

@media (max-width: 1180px) {
  .container { width: min(100% - 42px, 1120px); }
  .header-inner { gap: 18px; }
  .main-nav { gap: 14px; }
  .main-nav > a { font-size: 13px; }
  .header-actions .button-secondary { display: none; }
  .hero-copy { width: 60%; }
}

@media (max-width: 960px) {
  .site-header { height: 78px; }
  .desktop-only { display: none !important; }
  .mobile-only { display: inline-flex; }
  .header-inner { justify-content: space-between; }
  .header-tools { margin-left: auto; }
  .menu-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17,24,39,.15);
    border-radius: 11px;
    background: rgba(255,255,255,.55);
    color: var(--navy);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 78px);
    margin: 0;
    padding: 18px 24px 26px;
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(248,245,239,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(17,24,39,.14);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav a::after { display: none; }
  .mobile-account-actions { display: grid; padding-top: 10px; }
  .mobile-account-actions a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .mobile-account-actions .mobile-add-link { margin-top: 10px; padding: 13px 16px; border: 0; border-radius: 11px; background: var(--terracotta); color: var(--white); text-align: center; }

  .hero { min-height: 850px; }
  .hero::before { inset: 0; background: linear-gradient(180deg, #f8f5ef 0 46%, rgba(248,245,239,.76) 63%, rgba(248,245,239,.1)); }
  .hero-media { inset: 38% 0 0; }
  .hero-inner { min-height: 850px; align-items: flex-start; padding-top: 55px; }
  .hero-copy { width: 100%; max-width: 700px; }
  .hero h1 { font-size: clamp(46px, 8vw, 67px); }
  .hero-search { bottom: 24px; }
  .search-bar { grid-template-columns: 1fr 1fr; }
  .keyword-field { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); }
  .search-field:nth-of-type(3) { border-right: 0; }
  .search-submit { grid-column: 1 / -1; margin: 10px 0 0; }
  .auth-benefits { top: auto; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 680px); }
  .brand-name { font-size: 24px; }
  .language-switcher { padding: 3px; }
  .language-choice { min-width: 50px; padding-inline: 6px; }
  .hero { min-height: 930px; }
  .hero-inner { padding-top: 42px; }
  .hero h1 { font-size: clamp(40px, 11vw, 57px); }
  .hero-lede { font-size: 16px; }
  .hero-media { inset: 47% 0 0; }
  .hero-search { bottom: 16px; }
  .search-bar { display: flex; flex-direction: column; align-items: stretch; padding: 9px; }
  .search-field { width: 100%; height: 53px; border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 12px; }
  .search-submit { width: 100%; min-width: 0; height: 54px; margin-top: 9px; }
  .hero-actions .button { width: 100%; }
  .section { padding-block: 66px; }
  .owner-cta { width: calc(100% - 32px); margin-block: 66px; }
  .owner-art { min-height: 190px; }
  .form-intro-strip { grid-template-columns: 1fr; }
  .form-intro-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .business-form { padding: 25px 19px; }
  .page-hero { padding-block: 52px 38px; }
}

@media (max-width: 480px) {
  .brand-mark { width: 37px; height: 40px; border-width: 3px; }
  .brand-name { font-size: 22px; }
  .header-tools { gap: 7px; }
  .language-choice { min-width: 34px; padding-inline: 6px; }
  .language-code { display: none; }
  .hero h1 { font-size: 41px; }
  .owner-actions { align-items: stretch; flex-direction: column; }
  .owner-text-link { text-align: center; }
}

/* Bouton œil pour les mots de passe */
.password-wrap {
  position: relative;
}

.password-wrap input {
  padding-right: 58px !important;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

.password-toggle:hover {
  background: rgba(17, 24, 39, 0.07);
}

.password-toggle::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.password-wrap input[type="password"] + .password-toggle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.password-wrap input[type="text"] + .password-toggle::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3l18 18'/%3E%3Cpath d='M10.6 10.6a2 2 0 0 0 2.8 2.8'/%3E%3Cpath d='M9.9 4.2A10.5 10.5 0 0 1 12 4c7 0 10 8 10 8a17 17 0 0 1-2.1 3.2'/%3E%3Cpath d='M6.6 6.6C3.6 8.6 2 12 2 12s3 8 10 8a9.8 9.8 0 0 0 4.4-1'/%3E%3C/svg%3E");
}

/* Décisions de modération des entreprises */
.admin-dashboard {
  max-width: 1280px;
}

.admin-migration-notice {
  margin: 22px 0 36px;
}

.admin-migration-notice code {
  overflow-wrap: anywhere;
}

.business-moderation-card {
  align-items: start !important;
  gap: 34px !important;
}

.moderation-business-summary {
  min-width: 0;
}

.moderation-decision-panels {
  width: min(100%, 470px);
  display: grid;
  gap: 10px;
}

.moderation-decision-box {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(248, 245, 239, 0.78);
}

.moderation-decision-box[open] {
  border-color: rgba(216, 95, 61, 0.35);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.moderation-decision-box.success[open] {
  border-color: rgba(45, 103, 67, 0.4);
}

.moderation-decision-box.danger[open] {
  border-color: rgba(148, 52, 38, 0.45);
}

.moderation-decision-box summary {
  position: relative;
  padding: 16px 48px 16px 18px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.moderation-decision-box summary::-webkit-details-marker {
  display: none;
}

.moderation-decision-box summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--terracotta);
  font-size: 23px;
  font-weight: 500;
}

.moderation-decision-box[open] summary::after {
  content: "−";
}

.moderation-decision-box.success summary {
  color: #285f3f;
}

.moderation-decision-box.danger summary {
  color: #8a3426;
}

.moderation-decision-form {
  padding: 4px 18px 18px;
  display: grid;
  gap: 15px;
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

.moderation-decision-form .form-control {
  margin-top: 14px;
}

.moderation-decision-form textarea {
  min-height: 108px;
}

.decision-email-note {
  margin: 0;
  padding: 11px 13px;
  border-radius: 9px;
  background: #eee8de;
  color: var(--muted);
  font-size: 12px;
}

.danger-button {
  background: #8f392b;
  color: var(--white);
}

.danger-button:hover {
  background: #742b21;
}

.moderation-history {
  display: grid;
  gap: 12px;
}

.moderation-history-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 25px;
  align-items: center;
}

.moderation-history-row h3 {
  margin: 9px 0 4px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 23px;
}

.moderation-history-row p {
  margin: 4px 0;
  color: var(--muted);
}

.notification-state {
  min-width: 190px;
  padding: 12px 14px;
  display: grid;
  gap: 3px;
  border-radius: 10px;
  background: #eee8de;
  color: var(--muted);
}

.notification-state strong {
  color: var(--navy);
  font-size: 13px;
}

.notification-state small {
  overflow-wrap: anywhere;
}

.notification-sent {
  background: #dfeee5;
  color: #285f3f;
}

.notification-failed {
  background: #f7ded8;
  color: #852d20;
}

.owner-moderation-feedback {
  max-width: 760px;
  margin-top: 17px;
  padding: 17px 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 10px;
  background: #f2e8dc;
}

.owner-moderation-feedback > strong,
.owner-moderation-feedback > span {
  display: block;
}

.owner-moderation-feedback > span {
  margin-top: 4px;
  color: var(--navy);
  font-weight: 800;
}

.owner-moderation-feedback p {
  margin: 7px 0;
  color: #4f5968;
}

.owner-moderation-feedback > div {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}

.owner-moderation-feedback.status-rejected,
.owner-moderation-feedback.status-suspended {
  border-left-color: #943426;
  background: #f7e2dc;
}

@media (max-width: 900px) {
  .business-moderation-card,
  .moderation-history-row {
    grid-template-columns: 1fr !important;
  }

  .moderation-decision-panels {
    width: 100%;
  }

  .notification-state {
    min-width: 0;
  }
}

/* Menus personnalisés Catégorie et Localisation */
.search-field.custom-select-field {
  position: relative;
  overflow: visible;
}

.form-control.custom-select-field {
  position: relative;
  overflow: visible;
}

.custom-select-source {
  display: none !important;
}

.custom-select {
  position: relative;
  flex: 1;
  min-width: 0;
}

.custom-select-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 10px 46px 10px 15px;
  color: var(--navy);
  background: rgba(248, 245, 239, 0.88);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--terracotta);
  border-bottom: 2px solid var(--terracotta);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}

.custom-select-trigger:hover {
  background: #fffaf4;
  border-color: rgba(216, 95, 61, 0.55);
}

.custom-select.is-open .custom-select-trigger {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(216, 95, 61, 0.15);
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(-30%) rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  z-index: 500;
  right: 0;
  bottom: calc(100% + 12px);
  width: max(100%, 340px);
  max-width: calc(100vw - 32px);
  max-height: min(420px, 60vh);
  padding: 9px;
  overflow-y: auto;
  background: #fffaf4;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 17px;
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(9px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.filter-panel {
  z-index: 12;
}

.filter-panel .custom-select {
  width: 100%;
}

.filter-panel .custom-select-trigger {
  min-height: 52px;
  padding: 11px 46px 11px 14px;
  background: rgba(255,255,255,.94);
  border-color: #d7d2c9;
  font-size: 14px;
  font-weight: 650;
}

.filter-panel .custom-select-trigger:hover {
  background: var(--white);
}

.custom-select--drop-down .custom-select-menu {
  top: calc(100% + 8px);
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  min-width: 285px;
  max-height: min(370px, 58vh);
  transform: translateY(-8px) scale(.98);
  transform-origin: top left;
}

.custom-select--drop-down.is-open .custom-select-menu {
  transform: translateY(0) scale(1);
}

.filter-panel .custom-select-option {
  min-height: 43px;
  padding-block: 10px;
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
}

.filter-panel .custom-select-option.is-placeholder:not(.is-selected) {
  color: var(--navy);
  font-weight: 750;
}

.custom-select-option {
  position: relative;
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 11px 42px 11px 15px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 11px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 650;
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  color: var(--terracotta-dark);
  background: #f1ded5;
  outline: none;
}

.custom-select-option.is-selected {
  color: var(--white);
  background: var(--terracotta);
}

.custom-select-option.is-selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-weight: 900;
}

.custom-select-option.is-placeholder {
  color: var(--muted);
}

.custom-select-menu::-webkit-scrollbar {
  width: 9px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  background: rgba(216, 95, 61, 0.45);
  border: 2px solid #fffaf4;
  border-radius: 999px;
}

@media (max-width: 620px) {
  .custom-select-menu {
    left: 0;
    right: auto;
    width: 100%;
    min-width: min(340px, calc(100vw - 52px));
  }

  .custom-select--drop-down .custom-select-menu {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Vitrine des catégories */
.category-showcase-heading {
  margin-bottom: 42px;
}

.category-all-button {
  min-height: 54px;
  padding: 7px 8px 7px 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.14);
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.category-all-button strong {
  min-width: 34px;
  height: 34px;
  padding-inline: 8px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--cream);
  border-radius: 999px;
  font-size: 12px;
}

.category-all-button svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.category-all-button:hover {
  transform: translateY(-2px);
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 16px 34px rgba(184, 71, 44, 0.24);
}

.category-all-button:hover svg {
  transform: translateX(3px);
}

.category-grid {
  gap: 16px;
}

.category-card {
  --category-accent: var(--terracotta);
  --category-soft: #f7e6df;
  min-height: 180px;
  padding: 22px;
  overflow: hidden;
  isolation: isolate;
  justify-content: space-between;
  background:
    radial-gradient(circle at 104% -15%, var(--category-soft) 0 90px, transparent 91px),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 22px;
  box-shadow: 0 9px 30px rgba(17, 24, 39, 0.045);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: var(--category-accent);
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: left;
  transition: opacity .22s ease, transform .22s ease;
}

.category-card--tone-2 {
  --category-accent: #47766c;
  --category-soft: #e4eeea;
}

.category-card--tone-3 {
  --category-accent: #76556e;
  --category-soft: #eee5ec;
}

.category-card--tone-4 {
  --category-accent: #9a7137;
  --category-soft: #f2eadc;
}

.category-card:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at 104% -15%, var(--category-soft) 0 100px, transparent 101px),
    var(--white);
  border-color: var(--category-accent);
  box-shadow: 0 20px 46px rgba(17, 24, 39, 0.12);
}

.category-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.category-card-top,
.category-card-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.category-card-bottom {
  align-items: flex-end;
}

.category-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--category-accent, var(--terracotta));
  background: var(--category-soft, rgba(216, 95, 61, 0.11));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.8);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.category-icon-svg {
  width: 24px;
  height: 24px;
}

.category-number {
  color: rgba(17, 24, 39, 0.38);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.category-name {
  max-width: calc(100% - 52px);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.025em;
}

.card-arrow {
  position: static;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: rgba(17, 24, 39, 0.06);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.card-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-card:hover .category-icon {
  color: var(--white);
  background: var(--category-accent);
  transform: rotate(-3deg) scale(1.04);
}

.category-card:hover .card-arrow {
  color: var(--white);
  background: var(--category-accent);
  transform: translateX(3px);
}

.catalog-card .category-icon {
  border-radius: 15px;
}

.catalog-card:hover .category-icon {
  color: var(--white);
  background: var(--terracotta);
  transform: rotate(-3deg) scale(1.04);
}

@media (max-width: 760px) {
  .category-showcase-heading {
    margin-bottom: 30px;
  }

  .category-all-button {
    min-height: 50px;
  }

  .category-card {
    min-height: 144px;
    padding: 19px;
  }

  .category-card::after {
    left: 19px;
    right: 19px;
  }

  .category-name {
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .category-all-button {
    width: 100%;
    justify-content: center;
  }

  .category-all-button svg {
    margin-right: 0;
  }
}

/* Formulaire d’avis et note interactive */
.reviews-heading {
  align-items: center;
}

.reviews-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.reviews-title-row h2 {
  margin: 0;
}

.review-count {
  min-height: 42px;
  margin: 0;
  padding: 4px 15px 4px 5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #56606d;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(17,24,39,.055);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 650;
}

.review-count strong {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #e9e4dc;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.review-count.has-reviews {
  color: var(--navy);
  border-color: rgba(216,95,61,.2);
}

.review-count.has-reviews strong {
  color: var(--white);
  background: var(--terracotta);
}

.review-list:empty {
  display: none;
}

.review-list:empty + .review-form {
  margin-top: 30px;
}

.review-form {
  position: relative;
  margin-top: 32px;
  padding: clamp(25px, 4vw, 42px);
  gap: 21px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.09), transparent 16rem),
    rgba(255,255,255,.84);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 26px;
  box-shadow: 0 20px 58px rgba(17,24,39,.08);
  backdrop-filter: blur(8px);
}

.review-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 42px;
  left: 42px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: .7;
}

.review-form-heading {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.review-form-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  background: #f7e5dd;
  border-radius: 16px;
  box-shadow: inset 0 1px rgba(255,255,255,.8);
}

.review-form-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.review-form-heading strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.review-form-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.rating-control {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-control legend {
  margin-bottom: 9px;
  padding: 0;
  color: #252d39;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}

.rating-selector {
  min-height: 88px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #f8f4ed, #fff);
  border: 1px solid #d9d2c8;
  border-radius: 17px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.rating-selector:hover,
.rating-selector:focus-within {
  background: var(--white);
  border-color: rgba(216,95,61,.65);
  box-shadow: 0 0 0 4px rgba(216,95,61,.1);
}

.rating-star-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.rating-star {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: #c8c1b7;
  border-radius: 12px;
  cursor: pointer;
  transition: color .16s ease, background .16s ease, transform .16s ease;
}

.rating-star svg {
  width: 34px;
  height: 34px;
  fill: transparent;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linejoin: round;
  transition: fill .16s ease, filter .16s ease, transform .16s ease;
}

.rating-star:hover {
  background: rgba(207,145,43,.1);
  transform: translateY(-2px);
}

.rating-star.is-filled,
.rating-input:checked + .rating-star {
  color: #cf912b;
}

.rating-star.is-filled svg,
.rating-input:checked + .rating-star svg {
  fill: currentColor;
  filter: drop-shadow(0 4px 6px rgba(177,113,16,.2));
  transform: scale(1.04);
}

.rating-input:focus-visible + .rating-star {
  outline: 3px solid rgba(216,95,61,.42);
  outline-offset: 2px;
}

.rating-selection {
  min-width: 210px;
  display: grid;
  gap: 3px;
  text-align: right;
}

.rating-selection strong {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.rating-selector.has-rating .rating-selection strong {
  color: var(--terracotta-dark);
}

.rating-selection small {
  color: #777e88;
  font-size: 11px;
  line-height: 1.35;
}

.review-form .form-control > span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}

.review-form .form-control input,
.review-form .form-control textarea {
  min-height: 56px;
  padding: 14px 16px;
  background: rgba(255,255,255,.94);
  border-color: #d9d2c8;
  border-radius: 14px;
  font-size: 15px;
}

.review-form .form-control textarea {
  min-height: 175px;
  line-height: 1.65;
}

.review-form .form-control input:focus,
.review-form .form-control textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(216,95,61,.1);
}

.review-form .form-control input:read-only {
  color: #505966;
  background: #f2eee7;
}

.review-submit {
  grid-column: 1 / -1;
  min-width: 280px;
  min-height: 55px;
  justify-self: start;
  margin-top: 3px;
  padding-inline: 25px;
  border-radius: 14px;
}

.review-submit svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.review-submit:hover svg {
  transform: translateX(3px);
}

@media (max-width: 680px) {
  .reviews-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .review-count {
    min-height: 39px;
  }

  .review-form {
    padding: 24px 18px;
    border-radius: 21px;
  }

  .review-form::before {
    right: 20px;
    left: 20px;
  }

  .review-form-heading {
    align-items: flex-start;
  }

  .rating-selector {
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .rating-star {
    width: 43px;
    height: 43px;
  }

  .rating-star svg {
    width: 31px;
    height: 31px;
  }

  .rating-selection {
    min-width: 0;
    text-align: left;
  }

  .review-submit {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

@media (max-width: 390px) {
  .rating-star-row {
    gap: 1px;
  }

  .rating-star {
    width: 40px;
    height: 40px;
  }
}

/* Page de connexion */
.page-connexion .page-hero {
  padding: 58px 0 50px;
  background:
    radial-gradient(circle at 88% -12%, rgba(216,95,61,.16), transparent 22rem),
    linear-gradient(135deg, #eee7dc, #f8f5ef 62%);
  border-bottom: 1px solid rgba(17,24,39,.07);
}

.page-connexion .page-hero::after {
  content: "";
  position: absolute;
  top: -115px;
  right: 7%;
  width: 265px;
  height: 265px;
  border: 1px solid rgba(216,95,61,.18);
  border-radius: 50%;
  pointer-events: none;
}

.page-connexion .page-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 5.2vw, 70px);
}

.page-connexion .page-hero p:not(.eyebrow) {
  margin-top: 17px;
  color: #5f6875;
  font-family: var(--font-sans);
  font-size: 17px;
}

.page-connexion .page-content {
  padding-block: 62px 100px;
}

.login-page {
  max-width: 1120px;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 24px;
  align-items: stretch;
}

.login-card {
  padding: clamp(32px, 4.2vw, 50px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.07), transparent 15rem),
    rgba(255,255,255,.88);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(17,24,39,.1);
}

.login-card-heading {
  margin-bottom: 32px;
  align-items: flex-start;
}

.login-auth-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 19px;
  box-shadow: 0 15px 32px rgba(17,24,39,.2);
}

.login-auth-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-card-heading h2 {
  font-size: clamp(34px, 3.6vw, 48px);
}

.login-card-intro {
  max-width: 440px;
  margin: 9px 0 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
}

.login-form {
  display: grid;
  gap: 18px;
}

.login-field > span {
  margin-bottom: 1px;
  color: #28313e;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}

.login-input-wrap {
  position: relative;
}

.login-input-wrap input {
  min-height: 60px;
  padding: 14px 18px 14px 52px !important;
  color: var(--navy);
  background: rgba(255,255,255,.96);
  border: 1px solid #d6d0c7;
  border-radius: 15px;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.password-wrap.login-input-wrap input {
  padding-right: 60px !important;
}

.login-input-wrap input::placeholder {
  color: #959aa2;
  opacity: 1;
}

.login-input-wrap input:focus {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(216,95,61,.11);
}

.login-field-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 17px;
  width: 22px;
  height: 22px;
  color: #7d8490;
  transform: translateY(-50%);
  pointer-events: none;
}

.login-field-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-input-wrap:focus-within .login-field-icon {
  color: var(--terracotta);
}

.login-help-row {
  margin-top: -6px;
}

.login-help-row a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.login-help-row a span {
  transition: transform .18s ease;
}

.login-help-row a:hover span {
  transform: translateX(3px);
}

.login-submit {
  min-height: 58px;
  margin-top: 0;
  border-radius: 15px;
  font-size: 15px;
}

.login-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.login-submit:hover svg {
  transform: translateX(4px);
}

.login-security-note {
  margin-top: 18px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #3d664f;
  background: #edf4ee;
  border: 1px solid #d5e5d8;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 650;
}

.login-security-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.login-switch {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(17,24,39,.08);
  font-family: var(--font-sans);
  font-size: 13px;
}

.login-switch a {
  display: inline-flex;
  margin-left: 3px;
  font-family: var(--font-display);
  font-weight: 750;
  text-decoration: none;
}

.login-benefits {
  position: relative;
  top: auto;
  min-height: 100%;
  padding: clamp(34px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

.login-benefits::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -95px;
  bottom: -95px;
  width: 245px;
  height: 245px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,255,255,.025);
}

.login-benefits-mark {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255,255,255,.08);
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.login-benefits h2 {
  max-width: 390px;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.08;
}

.login-benefits-intro {
  max-width: 410px;
  margin: 16px 0 0;
  color: #c2cdd7;
  font-size: 14px;
  line-height: 1.65;
}

.login-benefits ul {
  margin-top: 30px;
}

.login-benefits li strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
}

.login-benefits li small {
  font-size: 11px;
  line-height: 1.5;
}

.login-benefits-footer {
  margin-top: 34px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.06);
}

.login-benefits-footer > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #ffc6b5;
  background: rgba(216,95,61,.22);
  border-radius: 50%;
  font-weight: 900;
}

.login-benefits-footer p,
.login-benefits-footer strong,
.login-benefits-footer small {
  display: block;
  margin: 0;
}

.login-benefits-footer strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
}

.login-benefits-footer small {
  margin-top: 3px;
  color: #afbecb;
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .login-layout {
    grid-template-columns: 1fr;
  }

  .login-benefits {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .page-connexion .page-hero {
    padding: 43px 0 38px;
  }

  .page-connexion .page-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .page-connexion .page-content {
    padding-block: 38px 70px;
  }

  .login-card {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .login-card-heading {
    gap: 13px;
  }

  .login-auth-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .login-auth-icon svg {
    width: 24px;
    height: 24px;
  }

  .login-card-heading h2 {
    font-size: 34px;
  }

  .login-input-wrap input {
    min-height: 56px;
  }

  .login-help-row {
    align-items: flex-end;
  }

  .login-benefits {
    min-height: 0;
    padding: 32px 24px;
    border-radius: 22px;
  }

  .login-benefits-mark {
    display: none;
  }
}

/* Page d'inscription */
.page-inscription .page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 86% -20%, rgba(216,95,61,.14), transparent 25rem),
    linear-gradient(135deg, #f7f3ed 0%, #fbf8f3 62%, #f5eee8 100%);
}

.page-inscription .page-hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: 7%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(216,95,61,.17);
  border-radius: 50%;
  pointer-events: none;
}

.page-inscription .page-hero .container {
  position: relative;
  z-index: 1;
}

.page-inscription .page-hero h1 {
  max-width: 840px;
  margin-top: 12px;
  font-size: clamp(48px, 6.1vw, 78px);
  letter-spacing: -.065em;
}

.page-inscription .page-hero p:last-child {
  max-width: 650px;
  color: #69717d;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
}

.page-inscription .page-content {
  padding-block: 62px 100px;
}

.registration-page {
  max-width: 1180px;
}

.registration-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr);
  gap: 24px;
  align-items: start;
}

.registration-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4.2vw, 50px);
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.075), transparent 16rem),
    rgba(255,255,255,.9);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(17,24,39,.1);
}

.registration-card-heading {
  margin-bottom: 30px;
  align-items: flex-start;
}

.registration-auth-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 19px;
  box-shadow: 0 15px 32px rgba(17,24,39,.2);
}

.registration-auth-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.registration-card-heading h2 {
  font-size: clamp(34px, 3.6vw, 48px);
}

.registration-card-intro {
  max-width: 470px;
  margin: 9px 0 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
}

.registration-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.registration-field {
  gap: 8px;
}

.registration-field > span {
  margin: 0;
  color: #28313e;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}

.registration-input-wrap {
  position: relative;
}

.registration-input-wrap input {
  min-height: 60px;
  padding: 14px 18px 14px 52px !important;
  color: var(--navy);
  background: rgba(255,255,255,.97);
  border: 1px solid #d6d0c7;
  border-radius: 15px;
  font-family: var(--font-sans);
  font-size: 15px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.password-wrap.registration-input-wrap input,
.input-status-wrap.registration-input-wrap input {
  padding-right: 60px !important;
}

.registration-input-wrap input::placeholder {
  color: #959aa2;
  opacity: 1;
}

.registration-input-wrap input:hover:not(:disabled) {
  border-color: #b9b2aa;
}

.registration-input-wrap input:focus {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(216,95,61,.11);
}

.registration-field-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 17px;
  width: 22px;
  height: 22px;
  color: #7d8490;
  transform: translateY(-50%);
  pointer-events: none;
}

.registration-field-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.registration-input-wrap:focus-within .registration-field-icon {
  color: var(--terracotta);
}

.registration-field > small,
.registration-field [data-username-message],
.registration-field [data-password-message] {
  margin: -1px 0 0;
  color: #737b86;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.5;
}

.registration-field .input-status-icon {
  right: 18px;
}

.registration-field .username-suggestions {
  gap: 7px;
}

.registration-field .username-suggestions button {
  min-height: 32px;
  padding: 6px 11px;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.08);
  border: 1px solid rgba(216,95,61,.2);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 750;
}

.registration-field .username-suggestions button:hover {
  color: var(--white);
  background: var(--terracotta);
}

.registration-field .password-meter {
  height: 5px;
  margin-top: -3px;
  overflow: hidden;
  background: #ebe6df;
  border-radius: 999px;
}

.registration-field .password-meter span {
  border-radius: inherit;
}

.registration-consents {
  margin-top: 3px;
  padding: 6px 18px;
  background: #faf7f2;
  border: 1px solid #e4ddd3;
  border-radius: 16px;
}

.registration-consents .checkbox-control {
  position: relative;
  min-height: 58px;
  padding: 14px 0;
  align-items: flex-start;
  gap: 12px;
  color: #343b46;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
}

.registration-consents .checkbox-control + .checkbox-control {
  padding-top: 14px;
  border-top-color: #e4ddd3;
}

.registration-consents input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  display: grid;
  place-content: center;
  background: var(--white);
  border: 1.5px solid #aaa49b;
  border-radius: 6px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.registration-consents input[type="checkbox"]::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(.6);
  transition: opacity .14s ease, transform .14s ease;
}

.registration-consents input[type="checkbox"]:checked {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.registration-consents input[type="checkbox"]:checked::before {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.registration-consents input[type="checkbox"]:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(216,95,61,.14);
}

.registration-consents .optional-consent small {
  margin-top: 4px;
  color: #7a828c;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.45;
}

.registration-submit {
  min-height: 58px;
  margin-top: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  font-size: 15px;
}

.registration-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.registration-submit:hover svg {
  transform: translateX(4px);
}

.registration-security-note {
  margin-top: 18px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #526057;
  background: #f2f7f1;
  border: 1px solid #dce9dc;
  border-radius: 13px;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.45;
}

.registration-security-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: #55815f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.registration-switch {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid #ebe5dc;
  font-family: var(--font-sans);
  font-size: 12px;
}

.registration-switch a {
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-weight: 750;
  text-decoration: none;
}

.registration-switch a:hover {
  color: var(--terracotta);
}

.registration-benefits {
  position: sticky;
  top: 28px;
  min-height: 680px;
  padding: clamp(30px, 3.2vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 110% -5%, rgba(216,95,61,.35), transparent 17rem),
    linear-gradient(155deg, #111827 0%, #202b40 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(17,24,39,.2);
}

.registration-benefits::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: -125px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}

.registration-benefits-mark {
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  color: #ffd8ca;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.registration-benefits .eyebrow {
  color: #f09173;
}

.registration-benefits h2 {
  max-width: 350px;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.02;
}

.registration-benefits-intro {
  max-width: 360px;
  margin: 16px 0 0;
  color: #bbc5d0;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.65;
}

.registration-benefits ul {
  margin-top: 30px;
  gap: 19px;
}

.registration-benefits li {
  padding-left: 35px;
}

.registration-benefits li strong {
  color: #f9fbfd;
  font-family: var(--font-display);
  font-size: 13px;
}

.registration-benefits li small {
  color: #acb8c5;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.45;
}

.registration-benefits .auth-path-card {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  border-radius: 17px;
}

.registration-benefits .auth-path-card span {
  background: rgba(216,95,61,.23);
}

.registration-benefits .auth-path-card p {
  color: #e8edf2;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
}

.registration-benefits-footer {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
}

.registration-benefits-footer > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #ffc6b5;
  background: rgba(216,95,61,.22);
  border-radius: 50%;
  font-weight: 900;
}

.registration-benefits-footer p,
.registration-benefits-footer strong,
.registration-benefits-footer small {
  display: block;
  margin: 0;
}

.registration-benefits-footer strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
}

.registration-benefits-footer small {
  margin-top: 3px;
  color: #afbecb;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .registration-benefits {
    position: static;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .page-inscription .page-hero {
    padding: 43px 0 38px;
  }

  .page-inscription .page-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .page-inscription .page-content {
    padding-block: 38px 70px;
  }

  .registration-card {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .registration-card-heading {
    gap: 13px;
    margin-bottom: 25px;
  }

  .registration-auth-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .registration-auth-icon svg {
    width: 24px;
    height: 24px;
  }

  .registration-card-heading h2 {
    font-size: 34px;
  }

  .registration-input-wrap input {
    min-height: 56px;
    padding-left: 48px !important;
    font-size: 14px;
  }

  .registration-field-icon {
    left: 15px;
    width: 20px;
    height: 20px;
  }

  .registration-consents {
    padding-inline: 15px;
  }

  .registration-submit {
    width: 100%;
  }

  .registration-benefits {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .registration-benefits-mark {
    display: none;
  }
}

/* Confirmation du courriel */
.page-verifier-courriel .page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 86% -20%, rgba(216,95,61,.14), transparent 25rem),
    linear-gradient(135deg, #f7f3ed 0%, #fbf8f3 62%, #f5eee8 100%);
}

.page-verifier-courriel .page-hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: 7%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(216,95,61,.17);
  border-radius: 50%;
  pointer-events: none;
}

.page-verifier-courriel .page-hero .container {
  position: relative;
  z-index: 1;
}

.page-verifier-courriel .page-hero h1 {
  max-width: 900px;
  margin-top: 12px;
  font-size: clamp(48px, 6.1vw, 78px);
  letter-spacing: -.065em;
}

.page-verifier-courriel .page-hero p:last-child {
  max-width: 650px;
  color: #69717d;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
}

.page-verifier-courriel .page-content {
  padding-block: 62px 100px;
}

.verification-page {
  max-width: 780px;
}

.verification-card-modern {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.08), transparent 16rem),
    rgba(255,255,255,.92);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 30px;
  box-shadow: 0 26px 75px rgba(17,24,39,.11);
}

.verification-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), #efa187 58%, transparent);
}

.verification-step {
  margin-bottom: 31px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}

.verification-step > span {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.11);
  border: 1px solid rgba(216,95,61,.18);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
}

.verification-step p,
.verification-step strong,
.verification-step small {
  display: block;
  margin: 0;
}

.verification-step strong {
  color: #28313e;
  font-family: var(--font-display);
  font-size: 12px;
}

.verification-step small {
  margin-top: 2px;
  color: #808690;
  font-family: var(--font-sans);
  font-size: 9px;
}

.verification-mail-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 21px;
  color: var(--white);
  background: linear-gradient(145deg, #111827, #28384d);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(17,24,39,.2);
}

.verification-mail-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification-card-modern > .eyebrow {
  margin-bottom: 7px;
}

.verification-card-modern > h2 {
  max-width: 590px;
  margin-inline: auto;
  font-size: clamp(36px, 5vw, 53px);
}

.verification-card-modern .verification-intro {
  max-width: 530px;
  margin: 14px auto 0;
  color: #747c87;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.65;
}

.verification-address {
  max-width: 560px;
  min-height: 76px;
  margin: 28px auto 0;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  text-align: left;
  background: #f8f4ee;
  border: 1px solid #e4dbcf;
  border-radius: 17px;
}

.verification-address-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.11);
  border-radius: 13px;
}

.verification-address-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification-address p,
.verification-address small,
.verification-address strong {
  display: block;
  min-width: 0;
  margin: 0;
}

.verification-address small {
  color: #7d848e;
  font-family: var(--font-sans);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.verification-address strong {
  margin-top: 4px;
  overflow: hidden;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(15px, 2.7vw, 20px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verification-address-status {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #3d7552;
  background: #e0eee3;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.verification-code-form {
  max-width: 560px;
  margin-top: 25px;
  gap: 17px;
}

.verification-code-field {
  gap: 8px;
  text-align: left;
}

.verification-code-field > span {
  color: #28313e;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 750;
}

.verification-code-wrap {
  position: relative;
}

.verification-code-wrap input {
  width: 100%;
  min-height: 76px;
  padding: 14px 115px 14px 26px;
  color: var(--navy);
  background:
    linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)) padding-box,
    linear-gradient(90deg, #d9d3ca, #e7c5b9) border-box;
  border: 1px solid transparent;
  border-radius: 17px;
  font-family: var(--font-display);
  font-size: 31px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  letter-spacing: .34em;
  text-align: left;
  caret-color: var(--terracotta);
}

.verification-code-wrap input::placeholder {
  color: #c7c3bd;
  opacity: 1;
}

.verification-code-wrap input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(216,95,61,.11);
}

.verification-code-length {
  position: absolute;
  top: 50%;
  right: 17px;
  padding: 6px 9px;
  color: #7b818a;
  background: #f1ece5;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 750;
  transform: translateY(-50%);
  pointer-events: none;
}

.verification-code-field > small {
  color: #78808b;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.5;
}

.verification-submit,
.verification-start-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  font-size: 15px;
}

.verification-start-button {
  min-width: 260px;
}

.verification-submit svg,
.verification-start-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.verification-submit:hover svg,
.verification-start-button:hover svg {
  transform: translateX(4px);
}

.verification-resend {
  max-width: 560px;
  margin: 20px auto 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  text-align: left;
  background: #faf7f2;
  border: 1px solid #e4ddd3;
  border-radius: 16px;
}

.verification-resend-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.1);
  border-radius: 12px;
}

.verification-resend-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification-resend strong,
.verification-resend small {
  display: block;
}

.verification-resend strong {
  color: #303844;
  font-family: var(--font-display);
  font-size: 11px;
}

.verification-resend small {
  margin-top: 3px;
  color: #777f89;
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.45;
}

.verification-resend .resend-form {
  margin: 0;
}

.verification-resend .resend-form button {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--terracotta-dark);
  background: var(--white);
  border: 1px solid #dccfc4;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.verification-resend .resend-form button:hover {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.verification-security-copy {
  max-width: 560px;
  margin: 17px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #526057;
  background: #f2f7f1;
  border: 1px solid #dce9dc;
  border-radius: 13px;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.45;
  text-align: left;
}

.verification-security-copy svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: #55815f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.verification-progress {
  max-width: 430px;
  margin: 29px auto 0;
  padding-top: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: start;
  border-top: 1px solid #ebe5dc;
}

.verification-progress div {
  min-width: 66px;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.verification-progress div > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #8a9099;
  background: #f2eee8;
  border: 1px solid #ddd7cf;
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 850;
}

.verification-progress div > small {
  color: #8a9099;
  font-family: var(--font-sans);
  font-size: 9px;
  white-space: nowrap;
}

.verification-progress i {
  height: 1px;
  margin-top: 14px;
  background: #ddd7cf;
}

.verification-progress .is-complete > span {
  color: var(--white);
  background: #5b8065;
  border-color: #5b8065;
}

.verification-progress .is-current > span {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(216,95,61,.11);
}

.verification-progress .is-complete > small,
.verification-progress .is-current > small {
  color: #39424e;
  font-weight: 750;
}

.verification-empty-notice {
  max-width: 560px;
  margin: 25px auto 18px;
  text-align: left;
}

@media (max-width: 620px) {
  .page-verifier-courriel .page-hero {
    padding: 43px 0 38px;
  }

  .page-verifier-courriel .page-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .page-verifier-courriel .page-content {
    padding-block: 38px 70px;
  }

  .verification-card-modern {
    padding: 27px 20px;
    border-radius: 22px;
  }

  .verification-step {
    margin-bottom: 25px;
  }

  .verification-mail-icon {
    width: 61px;
    height: 61px;
    border-radius: 19px;
  }

  .verification-mail-icon svg {
    width: 28px;
    height: 28px;
  }

  .verification-card-modern > h2 {
    font-size: 35px;
  }

  .verification-address {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 12px;
  }

  .verification-address-icon {
    width: 38px;
    height: 38px;
  }

  .verification-address-status {
    display: none;
  }

  .verification-code-wrap input {
    min-height: 70px;
    padding: 13px 18px;
    font-size: 28px;
    letter-spacing: .26em;
    text-align: center;
  }

  .verification-code-length {
    display: none;
  }

  .verification-resend {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .verification-resend .resend-form {
    grid-column: 1 / -1;
  }

  .verification-resend .resend-form button {
    width: 100%;
  }

  .verification-progress {
    max-width: 100%;
  }

  .verification-progress div {
    min-width: 58px;
  }

  .verification-progress div > small {
    font-size: 8px;
  }
}

/* Espace Mon compte */
.page-mon-compte .page-hero,
.page-ajouter .page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background:
    radial-gradient(circle at 86% -20%, rgba(216,95,61,.14), transparent 25rem),
    linear-gradient(135deg, #f7f3ed 0%, #fbf8f3 62%, #f5eee8 100%);
}

.page-mon-compte .page-hero::after,
.page-ajouter .page-hero::after {
  content: "";
  position: absolute;
  top: -150px;
  right: 7%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(216,95,61,.17);
  border-radius: 50%;
  pointer-events: none;
}

.page-mon-compte .page-hero .container,
.page-ajouter .page-hero .container {
  position: relative;
  z-index: 1;
}

.page-mon-compte .page-hero h1,
.page-ajouter .page-hero h1 {
  max-width: 950px;
  margin-top: 12px;
  font-size: clamp(48px, 6.1vw, 78px);
  letter-spacing: -.065em;
}

.page-mon-compte .page-hero p:last-child,
.page-ajouter .page-hero p:last-child {
  max-width: 720px;
  color: #69717d;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 18px);
}

.page-mon-compte .page-content,
.page-ajouter .page-content {
  padding-block: 62px 100px;
}

.account-profile-page {
  max-width: 1180px;
}

.account-profile-grid {
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
}

.account-sidebar-modern {
  position: sticky;
  top: 105px;
  padding: 34px 24px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -5%, rgba(216,95,61,.12), transparent 12rem),
    rgba(255,255,255,.9);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(17,24,39,.08);
}

.account-sidebar-accent {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--terracotta), #ef9a7e);
}

.account-avatar-wrap {
  position: relative;
  width: 94px;
  margin: 0 auto 16px;
}

.account-sidebar-modern .account-avatar {
  width: 94px;
  height: 94px;
  margin: 0;
  background: linear-gradient(145deg, var(--terracotta), #b8482d);
  border: 6px solid rgba(216,95,61,.12);
  box-shadow: 0 15px 32px rgba(184,72,45,.18);
  font-size: 31px;
}

.account-avatar-status {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #50805d;
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.account-sidebar-modern h2 {
  font-size: 27px;
  letter-spacing: -.04em;
}

.account-username {
  margin: 5px 0 0;
  color: #747c87;
  font-family: var(--font-sans);
  font-size: 12px;
}

.account-sidebar-modern .account-status {
  width: fit-content;
  min-height: 31px;
  margin: 15px auto 24px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #356245;
  background: #edf6ef;
  border: 1px solid #d5e8d9;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
}

.account-sidebar-modern .account-status.pending {
  color: #8a6221;
  background: #fbf3df;
  border-color: #ead8ac;
}

.account-sidebar-modern .account-status svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-sidebar-nav {
  margin: 0 !important;
  padding: 8px;
  gap: 4px;
  background: #f6f2ec;
  border: 1px solid #e8e1d8;
  border-radius: 15px;
}

.account-sidebar-nav a {
  min-height: 46px;
  padding: 10px 12px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 11px !important;
  font-family: var(--font-sans);
  font-size: 11px;
}

.account-sidebar-nav a.active {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--terracotta), #bc4d31) !important;
  box-shadow: 0 9px 20px rgba(184,72,45,.17);
}

.account-sidebar-nav a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-logout-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e9e2da;
}

.account-logout-form .danger-link {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8f3a2c;
  background: transparent;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.account-logout-form .danger-link:hover {
  background: #f9e9e5;
}

.account-logout-form .danger-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-content-modern {
  padding: clamp(32px, 4vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.07), transparent 17rem),
    rgba(255,255,255,.9);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(17,24,39,.09);
}

.account-content-heading {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.account-heading-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #111827, #28384d);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(17,24,39,.18);
}

.account-heading-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-content-heading h2 {
  font-size: clamp(35px, 4vw, 48px);
}

.account-content-heading > div > p:last-child {
  max-width: 560px;
  margin: 9px 0 0;
  color: #747c87;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.55;
}

.account-profile-details {
  margin-top: 30px;
  gap: 12px;
}

.account-profile-details > div {
  min-width: 0;
  min-height: 82px;
  padding: 15px;
  display: grid;
  grid-template-columns: 41px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: #f8f5f0;
  border: 1px solid #e6dfd6;
  border-radius: 15px;
}

.profile-detail-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.1);
  border-radius: 12px;
}

.profile-detail-icon.is-verified {
  color: #477356;
  background: #e6f0e8;
}

.profile-detail-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-detail-copy,
.profile-detail-copy small,
.profile-detail-copy strong {
  display: block;
  min-width: 0;
}

.profile-detail-copy small {
  color: #7b828c;
  font-family: var(--font-sans);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.profile-detail-copy strong {
  margin-top: 5px;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
}

.account-primary-actions {
  margin-top: 20px;
  gap: 10px;
}

.account-primary-actions .button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 13px;
  font-size: 11px;
}

.account-primary-actions .button svg,
.account-save-button svg,
.account-password-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-section-card {
  margin-top: 28px;
  padding: 28px;
  background: #fbf9f5;
  border: 1px solid #e6dfd6;
  border-radius: 20px;
}

.account-security.account-section-card {
  padding-top: 28px;
  border-top: 1px solid #e6dfd6;
}

.account-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.account-section-heading > span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.1);
  border-radius: 14px;
}

.account-security-card .account-section-heading > span {
  color: #37465a;
  background: #e9edf2;
}

.account-section-heading > span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-section-heading .eyebrow {
  margin-bottom: 4px;
}

.account-section-heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -.035em;
}

.account-section-heading small {
  display: block;
  margin-top: 5px;
  color: #7a818b;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.45;
}

.account-preferences-form {
  margin-top: 20px;
  justify-items: stretch !important;
}

.account-preference-box {
  padding: 16px !important;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
}

.account-preference-box input,
.business-form-modern .checkbox-control input {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 0;
  display: grid;
  place-content: center;
  background: var(--white);
  border: 1.5px solid #aaa49b;
  border-radius: 6px;
  cursor: pointer;
}

.account-preference-box input::before,
.business-form-modern .checkbox-control input::before {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(.6);
}

.account-preference-box input:checked,
.business-form-modern .checkbox-control input:checked {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.account-preference-box input:checked::before,
.business-form-modern .checkbox-control input:checked::before {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.account-save-button {
  width: fit-content;
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  font-size: 10px;
}

.account-password-form {
  margin-top: 22px;
  gap: 17px;
}

.account-field {
  gap: 8px;
}

.account-field > span {
  color: #303844;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
}

.account-input-wrap {
  position: relative;
}

.account-input-wrap input {
  min-height: 58px;
  padding: 13px 58px 13px 50px !important;
  background: var(--white);
  border: 1px solid #d6d0c7;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
}

.account-input-wrap input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(216,95,61,.11);
}

.account-field-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 16px;
  width: 21px;
  height: 21px;
  color: #7c838d;
  transform: translateY(-50%);
  pointer-events: none;
}

.account-field-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-input-wrap:focus-within .account-field-icon {
  color: var(--terracotta);
}

.account-password-form .password-meter {
  height: 5px;
  margin-top: -4px;
}

.account-password-form [data-password-message] {
  color: #737b86;
  font-family: var(--font-sans);
  font-size: 10px;
}

.account-password-submit {
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  font-size: 13px;
}

/* Formulaire d'ajout d'une entreprise */
.business-submission-page {
  max-width: 1080px;
}

.business-intro-strip {
  max-width: 1000px;
  margin: 0 auto 24px;
  overflow: hidden;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 19px;
  box-shadow: 0 14px 42px rgba(17,24,39,.055);
}

.business-intro-strip > div {
  padding: 20px;
}

.business-intro-strip > div > span {
  background: #4f765b;
  box-shadow: 0 0 0 5px rgba(79,118,91,.09);
}

.business-intro-strip > div:nth-child(2) > span {
  background: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(216,95,61,.1);
}

.business-intro-strip > div:nth-child(3) > span {
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(17,24,39,.07);
}

.business-intro-strip strong {
  font-family: var(--font-display);
  font-size: 12px;
}

.business-intro-strip small {
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.4;
}

.business-form-modern {
  max-width: 1000px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.07), transparent 18rem),
    rgba(255,255,255,.92);
  border: 1px solid rgba(17,24,39,.09);
  border-radius: 29px;
  box-shadow: 0 26px 75px rgba(17,24,39,.1);
}

.business-form-heading {
  padding: clamp(32px, 4.5vw, 48px);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.11), transparent 17rem),
    #fbf8f3;
}

.business-form-heading-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #111827, #28384d);
  border-radius: 19px;
  box-shadow: 0 15px 32px rgba(17,24,39,.2);
}

.business-form-heading-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-form-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.business-form-heading > div > p:last-child {
  max-width: 630px;
  margin: 10px 0 0;
  color: #747c87;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
}

.business-form-time {
  min-height: 33px;
  padding: 7px 11px;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.1);
  border: 1px solid rgba(216,95,61,.17);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.business-form-section {
  padding: clamp(32px, 4.5vw, 48px);
  border-top: 1px solid #e8e1d8;
}

.business-section-heading {
  margin-bottom: 27px;
  display: grid;
  grid-template-columns: 38px 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.business-section-step {
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.business-section-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.1);
  border-radius: 14px;
}

.business-section-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.business-section-heading p {
  margin: 5px 0 0;
  color: #7a818b;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.5;
}

.business-field-grid {
  gap: 19px 16px;
}

.business-form-modern .form-control {
  gap: 8px;
}

.business-form-modern .form-control > span {
  color: #303844;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 750;
}

.business-form-modern .form-control input:not([type="checkbox"]):not([type="file"]),
.business-form-modern .form-control select {
  min-height: 58px;
  padding: 13px 15px;
  color: var(--navy);
  background-color: rgba(255,255,255,.98);
  border: 1px solid #d6d0c7;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
}

.business-form-modern .form-control textarea {
  min-height: 125px;
  padding: 15px;
  color: var(--navy);
  background: rgba(255,255,255,.98);
  border: 1px solid #d6d0c7;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  resize: vertical;
}

.business-form-modern .form-control input::placeholder,
.business-form-modern .form-control textarea::placeholder {
  color: #969ba3;
  opacity: 1;
}

.business-form-modern .form-control input:focus,
.business-form-modern .form-control select:focus,
.business-form-modern .form-control textarea:focus {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(216,95,61,.1);
}

.business-form-modern .form-control input:read-only {
  color: #6f7782;
  background: #f3efe9;
  border-style: dashed;
}

.business-form-modern .form-control > small {
  color: #747c87;
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.45;
}

.business-checkbox {
  padding: 15px;
  align-items: flex-start;
  gap: 11px;
  color: #343b46;
  background: #faf7f2;
  border: 1px solid #e4ddd3;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.45;
}

.business-checkbox span small {
  font-family: var(--font-sans);
  font-size: 9px;
}

.file-control input[type="file"] {
  min-height: 58px;
  padding: 7px;
  color: #747c87;
  background: var(--white);
  border: 1px dashed #cfc5b9;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 10px;
}

.file-control input[type="file"]::file-selector-button {
  min-height: 42px;
  margin-right: 10px;
  padding: 8px 13px;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.09);
  border: 0;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.business-hours-editor {
  overflow: visible;
  display: grid;
  gap: 9px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.business-hours-editor .hours-row {
  min-width: 0;
  min-height: 66px;
  padding: 10px 13px;
  grid-template-columns: minmax(90px, 1fr) 95px 120px 20px 120px;
  background: #faf8f4;
  border: 1px solid #e5ded5;
  border-radius: 13px;
}

.business-hours-editor .hours-row.has-hours-error {
  border-color: #c85f43;
  background: #fff8f5;
  box-shadow: 0 0 0 4px rgba(200, 95, 67, .1);
}

.business-hours-editor .hours-row input[aria-invalid="true"] {
  border-color: #c85f43;
  box-shadow: 0 0 0 3px rgba(200, 95, 67, .12);
}

.business-hours-editor .hours-row-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 11px;
  border-radius: 9px;
  color: #873c2a;
  background: #fbe9e3;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.business-hours-editor .hours-row-error[hidden] {
  display: none;
}

.business-draft-notice {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 0 0 18px;
  padding: 13px 16px;
  border: 1px solid #dfc9b7;
  border-radius: 12px;
  color: #5e493d;
  background: #fff8f1;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
}

.business-draft-notice strong {
  color: var(--navy);
}

.business-hours-editor .hours-row strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 11px;
}

.business-hours-editor .hours-row label {
  color: #56606d;
  font-family: var(--font-sans);
  font-size: 10px;
}

.business-hours-editor .hours-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--terracotta);
}

.business-hours-editor .hours-row input[type="time"] {
  min-height: 42px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #d7d0c8;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
}

.business-confirmation-section {
  background: #fcfaf7;
}

.business-confirmation-list {
  margin: 0;
  padding: 0;
  gap: 10px;
}

.business-confirmation-list .checkbox-control {
  min-height: 60px;
  padding: 15px;
  align-items: flex-start;
  gap: 12px;
  color: #343b46;
  background: var(--white);
  border: 1px solid #e1dad1;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.5;
}

.business-moderation-notice {
  margin-top: 18px;
  padding: 16px;
  align-items: center;
  color: #536056;
  background: #f0f6f1;
  border: 1px solid #d7e6da;
  border-radius: 15px;
}

.business-moderation-notice > span {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  color: #50755a;
  background: #deebe1;
  border-radius: 12px;
}

.business-moderation-notice svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.business-moderation-notice p,
.business-moderation-notice strong,
.business-moderation-notice small {
  display: block;
  margin: 0;
}

.business-moderation-notice strong {
  color: #35523d;
  font-family: var(--font-display);
  font-size: 11px;
}

.business-moderation-notice small {
  margin-top: 3px;
  color: #65726a;
  font-family: var(--font-sans);
  font-size: 9px;
  line-height: 1.45;
}

.business-submit-button {
  min-height: 61px;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  font-size: 15px;
}

.business-submit-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.business-submit-button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .account-profile-grid {
    grid-template-columns: 1fr;
  }

  .account-sidebar-modern {
    position: static;
  }

  .account-sidebar-nav {
    grid-template-columns: 1fr 1fr;
  }

  .business-form-heading {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .business-form-heading-icon {
    width: 58px;
    height: 58px;
  }

  .business-form-time {
    grid-column: 2;
    width: fit-content;
  }

  .business-hours-editor {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .business-hours-editor .hours-row {
    min-width: 650px;
  }
}

@media (max-width: 620px) {
  .page-mon-compte .page-hero,
  .page-ajouter .page-hero {
    padding: 43px 0 38px;
  }

  .page-mon-compte .page-hero h1,
  .page-ajouter .page-hero h1 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .page-mon-compte .page-content,
  .page-ajouter .page-content {
    padding-block: 38px 70px;
  }

  .account-sidebar-modern,
  .account-content-modern {
    border-radius: 22px;
  }

  .account-content-modern {
    padding: 27px 20px;
  }

  .account-content-heading {
    gap: 13px;
  }

  .account-heading-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .account-content-heading h2 {
    font-size: 34px;
  }

  .account-profile-details {
    grid-template-columns: 1fr;
  }

  .account-primary-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-primary-actions .button {
    width: 100%;
    justify-content: center;
  }

  .account-section-card {
    padding: 22px 17px;
    border-radius: 17px;
  }

  .account-section-heading > span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .account-section-heading h3 {
    font-size: 21px;
  }

  .account-save-button {
    width: 100%;
    justify-content: center;
  }

  .business-intro-strip {
    grid-template-columns: 1fr;
  }

  .business-intro-strip > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .business-form-modern {
    border-radius: 22px;
  }

  .business-form-heading {
    padding: 28px 20px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
  }

  .business-form-heading-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .business-form-heading-icon svg {
    width: 24px;
    height: 24px;
  }

  .business-form-heading h2 {
    font-size: 34px;
  }

  .business-form-section {
    padding: 30px 20px;
  }

  .business-section-heading {
    grid-template-columns: 34px 44px minmax(0, 1fr);
    gap: 9px;
  }

  .business-section-icon {
    width: 44px;
    height: 44px;
  }

  .business-section-heading h2 {
    font-size: 24px;
  }

  .business-field-grid {
    grid-template-columns: 1fr;
  }

  .business-field-grid > * {
    grid-column: 1 !important;
  }

  .file-control input[type="file"] {
    min-height: 66px;
  }

  .business-submit-button {
    width: 100%;
  }
}

/* Modification du profil — présentation dédiée */
.lifecycle-profile-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.075), transparent 310px),
    rgba(255,255,255,.93);
  border-color: rgba(17,24,39,.1);
  box-shadow: 0 20px 55px rgba(17,24,39,.07);
}

.lifecycle-profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), #eba087 58%, transparent);
}

.lifecycle-profile-card .account-section-heading {
  align-items: center;
  gap: 18px;
}

.lifecycle-profile-card .account-section-heading > span {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(216,95,61,.06);
}

.lifecycle-profile-card .account-section-heading > span svg {
  width: 27px;
  height: 27px;
}

.lifecycle-profile-card .account-section-heading .eyebrow {
  margin: 0 0 5px;
  font-size: 11px;
  letter-spacing: .16em;
}

.lifecycle-profile-card .account-section-heading h3 {
  font-size: clamp(27px, 3vw, 35px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.lifecycle-profile-card .account-section-heading small {
  max-width: 670px;
  margin-top: 8px;
  color: #69717d;
  font-size: 13px;
  line-height: 1.55;
}

.profile-edit-form {
  margin-top: 30px;
  padding-top: 27px;
  gap: 20px;
  border-top: 1px solid #e8e2da;
}

.profile-edit-field {
  min-width: 0;
  gap: 9px;
}

.profile-edit-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #28313e !important;
  font-family: var(--font-display);
  font-size: 13px !important;
  font-weight: 750 !important;
}

.profile-edit-label > small {
  margin: 0;
  padding: 3px 8px;
  color: #8b4b38;
  background: rgba(216,95,61,.09);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.4;
  text-transform: uppercase;
}

.profile-edit-input-wrap {
  position: relative;
}

.profile-edit-input-wrap input {
  width: 100%;
  min-height: 58px;
  padding: 14px 54px 14px 50px !important;
  color: var(--navy);
  background: rgba(255,255,255,.98);
  border: 1px solid #d5d0c8;
  border-radius: 15px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.profile-edit-input-wrap input:hover:not(:disabled) {
  border-color: #bbb3a9;
}

.profile-edit-input-wrap input:focus {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(216,95,61,.11);
}

.profile-edit-input-wrap input:disabled {
  color: #7c838d;
  background: #f0ece6;
  cursor: not-allowed;
}

.profile-edit-field-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 17px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #7d8490;
  transform: translateY(-50%);
  pointer-events: none;
  transition: color .18s ease;
}

.profile-edit-field-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-edit-at {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 750;
}

.profile-edit-input-wrap:focus-within .profile-edit-field-icon {
  color: var(--terracotta-dark);
}

.profile-edit-field .input-status-icon {
  right: 16px;
}

.profile-edit-help {
  min-height: 19px;
  color: #747c87 !important;
  font-family: var(--font-sans);
  font-size: 11px !important;
  line-height: 1.5;
}

.profile-edit-field .username-suggestions {
  margin-top: 1px;
}

.profile-edit-field .username-suggestions button {
  min-height: 30px;
  padding: 5px 11px;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.075);
  border-color: rgba(216,95,61,.22);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
}

.profile-edit-field .username-suggestions button:hover {
  color: var(--white);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.profile-save-button {
  width: fit-content;
  min-width: 230px;
  min-height: 54px;
  margin-top: 3px;
  padding-inline: 23px;
  justify-self: start !important;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(216,95,61,.2);
}

.profile-save-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.profile-save-button:hover svg {
  transform: scale(1.08);
}

@media (max-width: 620px) {
  .lifecycle-profile-card {
    padding: 23px 17px;
  }

  .lifecycle-profile-card .account-section-heading {
    align-items: flex-start;
    gap: 13px;
  }

  .lifecycle-profile-card .account-section-heading > span {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .lifecycle-profile-card .account-section-heading h3 {
    font-size: 25px;
  }

  .lifecycle-profile-card .account-section-heading small {
    font-size: 12px;
  }

  .profile-edit-form {
    margin-top: 24px;
    padding-top: 22px;
  }

  .profile-save-button {
    width: 100%;
    min-width: 0;
    justify-self: stretch !important;
  }
}

/* Priorité finale des composants de gestion ajoutés en v5 */
.hero-copy h1 {
  word-spacing: .08em;
}

.account-section-card.lifecycle-profile-card,
.account-section-card.lifecycle-email-card {
  background:
    radial-gradient(circle at 100% 0, rgba(200, 95, 63, .09), transparent 34%),
    rgba(255, 255, 255, .78);
}

.account-section-card.lifecycle-danger-zone {
  border-color: rgba(166, 53, 45, .2);
  background: linear-gradient(145deg, rgba(255, 248, 246, .96), rgba(255, 255, 255, .9));
}

.owner-business-row.lifecycle-business-row {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 285px);
  align-items: start;
  border-radius: 20px;
  padding: 26px;
}

.status-pill.revision-status {
  color: #9b452f;
  background: #f3e8df;
}

.status-pill.status-approved {
  color: #17603a;
  background: #e4f4e9;
}

.status-pill.status-closed {
  color: #8d2f29;
  background: #f9e6e2;
}

@media (max-width: 760px) {
  .owner-business-row.lifecycle-business-row {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* La carte de profil conserve sa finition après les règles de priorité v5. */
.account-section-card.lifecycle-profile-card {
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.075), transparent 310px),
    rgba(255,255,255,.93);
  border-color: rgba(17,24,39,.1);
}

/* Modification du courriel — même langage visuel que le profil */
.account-section-card.lifecycle-email-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 100% 0, rgba(216,95,61,.075), transparent 310px),
    rgba(255,255,255,.93);
  border-color: rgba(17,24,39,.1);
  box-shadow: 0 20px 55px rgba(17,24,39,.07);
}

.lifecycle-email-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), #eba087 58%, transparent);
}

.lifecycle-email-card .account-section-heading {
  align-items: center;
  gap: 18px;
}

.lifecycle-email-card .account-section-heading > span {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(216,95,61,.06);
}

.lifecycle-email-card .account-section-heading > span svg {
  width: 27px;
  height: 27px;
}

.lifecycle-email-card .account-section-heading .eyebrow {
  margin: 0 0 5px;
  font-size: 11px;
  letter-spacing: .16em;
}

.lifecycle-email-card .account-section-heading h3 {
  font-size: clamp(27px, 3vw, 35px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.lifecycle-email-card .account-section-heading small {
  max-width: 670px;
  margin-top: 8px;
  color: #69717d;
  font-size: 13px;
  line-height: 1.55;
}

.email-change-form {
  margin-top: 30px;
  padding-top: 27px;
  gap: 20px;
  border-top: 1px solid #e8e2da;
}

.email-change-field {
  min-width: 0;
  gap: 9px;
}

.email-change-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #28313e !important;
  font-family: var(--font-display);
  font-size: 13px !important;
  font-weight: 750 !important;
}

.email-change-label > small {
  margin: 0;
  padding: 3px 8px;
  color: #8b4b38;
  background: rgba(216,95,61,.09);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.4;
  text-transform: uppercase;
}

.email-change-input-wrap {
  position: relative;
}

.email-change-input-wrap input {
  width: 100%;
  min-height: 58px;
  padding: 14px 54px 14px 50px !important;
  color: var(--navy);
  background: rgba(255,255,255,.98);
  border: 1px solid #d5d0c8;
  border-radius: 15px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.email-change-input-wrap input::placeholder {
  color: #9298a1;
  opacity: 1;
}

.email-change-input-wrap input:hover:not(:disabled) {
  border-color: #bbb3a9;
}

.email-change-input-wrap input:focus {
  background: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(216,95,61,.11);
}

.email-change-input-wrap input:disabled {
  color: #7c838d;
  background: #f0ece6;
  cursor: not-allowed;
}

.email-change-field-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 17px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #7d8490;
  transform: translateY(-50%);
  pointer-events: none;
  transition: color .18s ease;
}

.email-change-field-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-change-input-wrap:focus-within .email-change-field-icon {
  color: var(--terracotta-dark);
}

.email-change-help {
  min-height: 19px;
  color: #747c87 !important;
  font-family: var(--font-sans);
  font-size: 11px !important;
  line-height: 1.5;
}

.email-confirmation-button {
  width: fit-content;
  min-width: 285px;
  min-height: 54px;
  margin-top: 3px;
  padding-inline: 23px;
  justify-self: start !important;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(216,95,61,.2);
}

.email-confirmation-button svg,
.email-change-pending a svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.email-confirmation-button:hover svg,
.email-change-pending a:hover svg {
  transform: translateX(3px);
}

.email-change-pending {
  margin: 24px 0 0;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  background: #fff8f4;
  border: 1px solid rgba(216,95,61,.2);
  border-radius: 14px;
  font-family: var(--font-sans);
}

.email-change-pending-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--terracotta-dark);
  background: rgba(216,95,61,.1);
  border-radius: 11px;
}

.email-change-pending-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.email-change-pending > div {
  display: grid;
  gap: 2px;
}

.email-change-pending strong {
  color: #323a46;
  font-size: 12px;
}

.email-change-pending > div > span {
  color: #747c87;
  font-size: 11px;
}

.email-change-pending a {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--terracotta-dark);
  background: var(--white);
  border: 1px solid rgba(216,95,61,.22);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 750;
}

@media (max-width: 620px) {
  .account-section-card.lifecycle-email-card {
    padding: 23px 17px;
  }

  .lifecycle-email-card .account-section-heading {
    align-items: flex-start;
    gap: 13px;
  }

  .lifecycle-email-card .account-section-heading > span {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .lifecycle-email-card .account-section-heading h3 {
    font-size: 25px;
  }

  .lifecycle-email-card .account-section-heading small {
    font-size: 12px;
  }

  .email-change-form {
    margin-top: 24px;
    padding-top: 22px;
  }

  .email-confirmation-button {
    width: 100%;
    min-width: 0;
    justify-self: stretch !important;
  }

  .email-change-pending {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .email-change-pending a {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* Descriptions des pages Explorer, Catégories, Régions et Annuaire */
.page-explorer .page-hero p:not(.eyebrow),
.page-categories .page-hero p:not(.eyebrow),
.page-regions .page-hero p:not(.eyebrow),
.page-annuaire .page-hero p:not(.eyebrow) {
  color: #69717d;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

/* Nom d’utilisateur affiché dans l’en-tête */
.header-actions .account-chip {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header-actions .account-chip > span {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

/* =========================================================
   Page Régions — présentation éditoriale et cartes locales
   ========================================================= */
.page-regions .page-hero {
  min-height: 340px;
  padding: 82px 0 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(17, 24, 39, .06);
  background:
    radial-gradient(circle at 84% 8%, rgba(216, 95, 61, .16), transparent 18rem),
    radial-gradient(circle at 73% 118%, rgba(38, 50, 68, .09), transparent 24rem),
    linear-gradient(135deg, #f0e9df 0%, #f8f5ef 72%);
}

.page-regions .page-hero::before {
  content: "";
  position: absolute;
  right: clamp(45px, 9vw, 180px);
  bottom: -58px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(216, 95, 61, .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(216, 95, 61, .035),
    0 0 0 70px rgba(216, 95, 61, .02);
  pointer-events: none;
}

.page-regions .page-hero .container {
  position: relative;
  z-index: 2;
}

.page-regions .page-hero .eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(185, 71, 44, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
}

.page-regions .page-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 5vw, 68px);
  letter-spacing: -.055em;
  line-height: 1;
}

.page-regions .page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}

.page-regions .page-content {
  position: relative;
  padding-top: 72px;
  padding-bottom: 112px;
}

.page-regions .catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-regions .catalog-card {
  min-height: 188px;
  padding: 27px 72px 27px 27px;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(17, 24, 39, .09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(216, 95, 61, .07), transparent 45%),
    rgba(255, 255, 255, .88);
  box-shadow: 0 14px 38px rgba(17, 24, 39, .055);
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .24s ease,
    background .24s ease;
}

.page-regions .catalog-card::before {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -70px;
  z-index: -1;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(216, 95, 61, .1);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
}

.page-regions .catalog-card::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, .84);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  transform: translateY(-50%);
  transition:
    color .22s ease,
    background .22s ease,
    border-color .22s ease,
    transform .22s ease;
}

.page-regions .catalog-card .category-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(216, 95, 61, .12);
  border-radius: 18px;
  color: var(--terracotta-dark);
  background: linear-gradient(145deg, #f8e9e2, #f3ddd4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  font-family: var(--font-sans);
  font-size: 22px;
  transition:
    color .22s ease,
    background .22s ease,
    transform .22s ease;
}

.page-regions .catalog-card > div {
  min-width: 0;
  align-self: center;
}

.page-regions .catalog-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--terracotta-dark);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
}

.page-regions .catalog-card h2 {
  max-width: 100%;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.page-regions .catalog-card p {
  margin-top: 9px;
  color: #737b87;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.5;
}

.page-regions .catalog-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 100% 0, rgba(38, 50, 68, .065), transparent 45%),
    rgba(255, 255, 255, .88);
}

.page-regions .catalog-card:nth-child(3n + 2) .category-icon {
  border-color: rgba(38, 50, 68, .1);
  color: var(--navy-soft);
  background: linear-gradient(145deg, #eef0f3, #e5e9ee);
}

.page-regions .catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 95, 61, .3);
  background: #fff;
  box-shadow: 0 24px 56px rgba(17, 24, 39, .11);
}

.page-regions .catalog-card:hover::before {
  background: rgba(216, 95, 61, .055);
  transform: scale(1.12);
}

.page-regions .catalog-card:hover::after {
  color: var(--white);
  border-color: var(--terracotta);
  background: var(--terracotta);
  transform: translate(4px, -50%);
}

.page-regions .catalog-card:hover .category-icon {
  color: var(--white);
  background: var(--terracotta);
  transform: rotate(-4deg) scale(1.04);
}

.page-regions .catalog-card:focus-visible {
  outline: 3px solid rgba(216, 95, 61, .35);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .page-regions .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .page-regions .page-hero {
    min-height: auto;
    padding: 58px 0 52px;
  }

  .page-regions .page-hero::before {
    right: -60px;
    bottom: -90px;
  }

  .page-regions .page-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .page-regions .page-content {
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .page-regions .catalog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-regions .catalog-card {
    min-height: 158px;
    padding: 23px 65px 23px 20px;
    gap: 15px;
    border-radius: 20px;
  }

  .page-regions .catalog-card .category-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 15px;
  }

  .page-regions .catalog-card h2 {
    font-size: 20px;
  }

  .page-regions .catalog-card::after {
    right: 18px;
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-regions .catalog-card,
  .page-regions .catalog-card::before,
  .page-regions .catalog-card::after,
  .page-regions .catalog-card .category-icon {
    transition: none;
  }
}

/* Ajout d'entreprise : retour visuel pour les images et l'envoi. */
.business-form-modern .file-control.has-upload-error {
  padding: 12px;
  border: 1px solid rgba(154, 48, 44, .35);
  border-radius: 14px;
  background: #fff7f6;
}
.business-submit-button.is-submitting {
  opacity: .72;
  cursor: wait;
  pointer-events: none;
}
