:root {
  --bg: #f1f4f9;
  --bg-subtle: #e8edf5;
  --surface: #ffffff;
  --surface-2: #fafbfd;
  --text: #0c1222;
  --muted: #5c6678;
  --muted-light: #8b95a8;
  --border: #dfe6f0;
  --border-strong: #c5cedd;
  --accent: #0d5c56;
  --accent-hover: #0a4a45;
  --accent-soft: rgba(13, 92, 86, 0.09);
  --accent-glow: rgba(13, 92, 86, 0.18);
  --shadow-sm: 0 1px 2px rgba(12, 18, 34, 0.045);
  --shadow: 0 12px 40px rgba(12, 18, 34, 0.09);
  --shadow-card: 0 2px 14px rgba(12, 18, 34, 0.055);
  --radius: 12px;
  --radius-lg: 18px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(120% 80% at 50% -10%, #e4eaf4 0%, var(--bg) 42%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Overlay chargement (recherche / publication) */
.avf-page-loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(12, 18, 34, 0.38);
  backdrop-filter: blur(4px);
}

.avf-page-loading.is-visible {
  display: flex;
}

.avf-page-loading__panel {
  max-width: 22rem;
  width: 100%;
  padding: 1.35rem 1.5rem 1.45rem;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.avf-page-loading__spinner {
  width: 2.35rem;
  height: 2.35rem;
  margin: 0 auto 0.85rem;
  border: 3px solid var(--border-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: avf-spin 0.75s linear infinite;
}

@keyframes avf-spin {
  to {
    transform: rotate(360deg);
  }
}

.avf-page-loading__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.avf-page-loading__sub {
  margin: 0;
  font-size: 0.8625rem;
  color: var(--muted);
  line-height: 1.45;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 4px 24px rgba(12, 18, 34, 0.04);
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 0.95rem 0;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.175rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.brand-logo:hover {
  text-decoration: none;
  opacity: 0.88;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand-mark-svg {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  box-shadow: 0 2px 10px var(--accent-glow);
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.brand-name-core {
  font-weight: 700;
}

.brand-name-domain {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9em;
}

.brand-tagline {
  margin: 0;
  padding-left: calc(28px + 0.6rem);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.footer-mark {
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 520px) {
  .brand-tagline {
    padding-left: 0;
  }
}

.nav-links {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}

.main-wrap {
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.58rem 1.05rem;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.08s;
}

.btn:active {
  transform: scale(0.99);
}

.btn-sm {
  padding: 0.45rem 0.82rem;
  font-size: 0.875rem;
  border-radius: 9px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  text-decoration: none;
}

.btn-ghost {
  background: var(--surface);
  color: var(--muted);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: rgba(15, 118, 110, 0.45);
}

.btn-outline:hover {
  background: var(--accent-soft);
  text-decoration: none;
}

.flash-wrap {
  margin-bottom: 1.1rem;
}

.flash {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.935rem;
  border: 1px solid transparent;
}

.flash.success {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}

.flash.error {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

.hero {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 2rem 1.85rem;
  padding-left: 1.65rem;
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: linear-gradient(180deg, var(--accent), #134e4a);
}

.hero-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--text);
}

.hero-home h1 {
  max-width: 34ch;
}

.hero-lead {
  margin: 0;
  max-width: 52ch;
  font-size: 1rem;
  color: var(--muted);
}

.hero-policy {
  margin: 1rem 0 0;
  max-width: 58ch;
  padding: 0.75rem 0.95rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(13, 92, 86, 0.06);
  border: 1px solid rgba(13, 92, 86, 0.12);
  border-radius: 10px;
}

.hero-seo-links {
  margin: 0.75rem 0 0;
  font-size: 0.8375rem;
  color: var(--muted-light);
}

.hero-seo-links a {
  font-weight: 600;
}

.hero-seo-dot {
  margin: 0 0.35rem;
  opacity: 0.7;
}

.hero-policy-compact {
  margin-top: 0.85rem;
  font-size: 0.8625rem;
}

.policy-pill {
  display: inline-block;
  margin-right: 0.45rem;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #0a3d39 100%);
  vertical-align: middle;
}

.hero-compact {
  margin-bottom: 1.35rem;
  padding-bottom: 1.5rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.85rem;
}

@media (max-width: 1020px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  padding: 1.05rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.trust-item:hover {
  border-color: rgba(13, 92, 86, 0.2);
  box-shadow: 0 4px 18px rgba(12, 18, 34, 0.06);
}

.trust-title {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.trust-item p {
  margin: 0;
  font-size: 0.878rem;
  color: var(--muted);
  line-height: 1.5;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 0.85rem 1rem;
  align-items: end;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  padding: 1.2rem 1.3rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 1.25rem;
}

.filters-title {
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: 0.05rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.filters-subtitle {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.35rem 0 0;
  border-top: 1px dashed var(--border-strong);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-light);
}

.filter-hint {
  display: block;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.6875rem;
  color: var(--muted-light);
}

.fr-ac-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.filters label.ac-loc-wrap,
.form-panel label.ac-loc-wrap,
.help-ac-label {
  position: relative;
}

.fr-ac-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.fr-ac-item {
  padding: 0.52rem 0.72rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-bottom: 1px solid var(--border);
}

.fr-ac-item:last-child {
  border-bottom: none;
}

.fr-ac-item:hover {
  background: var(--bg);
}

.fr-ac-label {
  font-weight: 600;
  font-size: 0.928rem;
}

.fr-ac-meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.filter-inline-warn {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.93rem;
  line-height: 1.45;
}

.filters input,
.filters select {
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  font-size: 0.938rem;
  font-family: inherit;
  background: var(--surface);
}

.filters input[type="search"] {
  grid-column: span 2;
}

@media (max-width: 540px) {
  .filters input[type="search"] {
    grid-column: span 1;
  }
}

.filters input:focus-visible,
.filters select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.filter-check {
  flex-direction: row;
  align-items: center;
  text-transform: none;
  letter-spacing: normal;
  gap: 0.55rem;
  grid-column: 1 / -1;
}

.filter-check span {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  max-width: 44ch;
  line-height: 1.4;
}

.filter-check input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.filter-actions-inline {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  padding-top: 0.15rem;
}

.results-summary {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.results-count {
  font-weight: 700;
  color: var(--text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.card:hover {
  border-color: rgba(15, 118, 110, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card a.card-link {
  color: inherit;
  text-decoration: none;
}

.card-img {
  aspect-ratio: 16 / 10;
  background: var(--bg-subtle);
  object-fit: cover;
  width: 100%;
  display: block;
}

.card-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  background: linear-gradient(145deg, #f1f5f9 0%, #e8eef5 100%);
}

.card-body {
  padding: 1.05rem 1.1rem 1.15rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 0 0 0.55rem;
  line-height: 1.35;
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.pill-muted {
  background: #f1f5f9;
  color: var(--muted);
  font-weight: 600;
}

.card-meta {
  font-size: 0.8375rem;
  color: var(--muted);
  margin: 0 0 0.45rem;
}

.card-loc {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin: -0.1rem 0 0.4rem;
  line-height: 1.35;
}

.card-distance {
  font-size: 0.785rem;
  font-weight: 600;
  color: #0369a1;
  margin: 0 0 0.5rem;
}

.card-price {
  font-size: 1.325rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 0;
}

.card-expiry {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-light);
}

.empty {
  text-align: center;
  padding: 2.85rem 1.25rem;
  color: var(--muted);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-strong);
  line-height: 1.55;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
}

.breadcrumb a {
  font-weight: 600;
}

.breadcrumb-sep {
  color: var(--muted-light);
}

.breadcrumb-current {
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

.detail {
  margin: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.detail-main {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-title {
  margin: 0 0 0.55rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
}

.sidebar-muted {
  margin: 0;
  font-size: 0.825rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-panel {
  padding: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f8fafc;
}

.contact-panel-muted {
  background: var(--surface);
}

.contact-lines {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
  white-space: pre-wrap;
}

.trust-panel {
  padding: 1.05rem;
  border-radius: var(--radius);
  border: 1px solid #e7e5e4;
  background: #fafaf9;
}

.trust-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

.trust-list li {
  margin-bottom: 0.45rem;
}

.trust-list li:last-child {
  margin-bottom: 0;
}

.detail-gallery {
  background: #0f172a;
}

.detail-gallery-main {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.detail-thumbs {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.detail-thumb {
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  background: #1e293b;
  opacity: 0.78;
  transition: opacity 0.12s, border-color 0.12s;
}

.detail-thumb:hover,
.detail-thumb.is-active {
  opacity: 1;
  border-color: var(--accent);
}

.detail-thumb img {
  width: 76px;
  height: 50px;
  object-fit: cover;
  display: block;
}

.detail-visual {
  background: var(--bg-subtle);
}

.detail-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.detail-content {
  padding: 1.55rem 1.5rem 1.65rem;
}

.detail-h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.72rem);
  line-height: 1.3;
}

.detail-price {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 0.55rem;
}

.detail-expiry {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.8675rem;
  line-height: 1.52;
  color: var(--muted);
  background: rgba(13, 92, 86, 0.06);
  border: 1px solid rgba(13, 92, 86, 0.14);
  border-radius: 10px;
}

.detail-expiry strong {
  color: var(--text);
}

.policy-mini {
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: var(--shadow-sm);
}

.detail-distance {
  color: var(--muted);
  font-weight: 600;
  margin: -0.4rem 0 0.75rem;
  font-size: 0.9rem;
}

.detail-maplink {
  margin: -0.2rem 0 1rem;
}

.detail-heading {
  margin: 1.35rem 0 0.5rem;
  font-size: 0.9325rem;
  font-weight: 700;
  color: var(--text);
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.spec {
  background: var(--bg);
  padding: 0.65rem 0.72rem;
  border-radius: 10px;
  font-size: 0.8925rem;
  border: 1px solid var(--border);
}

.spec span {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-light);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.spec-wide {
  grid-column: 1 / -1;
}

.detail-desc {
  white-space: pre-wrap;
  color: #374151;
  margin: 0 0 1.35rem;
  font-size: 0.9625rem;
  line-height: 1.6;
}

.form-shell {
  max-width: 640px;
}

.form-panel {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.form-section-title {
  font-size: 0.81rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form-section-blurb {
  margin: -0.15rem 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-section-gap {
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8925rem;
  font-weight: 600;
  margin-bottom: 0;
}

.form-panel label span.hint {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-tip {
  margin-top: 1.15rem;
  padding: 0.92rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f8fafc;
  font-size: 0.855rem;
  color: var(--muted);
}

.form-tip strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-size: 0.8675rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 0.6rem 0.72rem;
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  font-size: 0.9575rem;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 128px;
  resize: vertical;
}

.form-panel input[type="file"] {
  padding: 0.45rem 0;
  border: none;
  font-size: 0.8575rem;
}

.geo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.geo-label-text {
  font-size: 0.8925rem;
  color: var(--muted);
  max-width: 38ch;
  line-height: 1.5;
}

.sell-geo-note {
  margin: 0 0 0.75rem;
  min-height: 1.35rem;
  font-size: 0.8375rem;
  color: var(--muted);
}

.phone-verify-panel .phone-verify-title {
  margin-bottom: 0.35rem;
}

.phone-verify-lead {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.8925rem;
  line-height: 1.55;
  color: var(--muted);
}

.phone-verify-mock-badge {
  color: var(--text);
}

.phone-verify-actions {
  margin: 0.5rem 0 0.75rem;
}

.sell-phone-code-row {
  margin-top: 0.75rem;
}

.sell-phone-code-row:not([hidden]) {
  padding-top: 0.35rem;
}

.results-page-hint {
  display: inline;
  font-size: 0.9em;
  color: var(--muted);
}

.pagination {
  margin: 2rem auto 3rem;
  max-width: 36rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.pagination-meta {
  font-size: 0.8925rem;
  color: var(--muted);
  padding: 0 0.25rem;
}

.pagination-edge-muted {
  font-size: 0.8375rem;
  color: var(--muted-light);
  padding: 0.35rem 0.65rem;
  user-select: none;
}

.form-actions {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 3.25rem;
  padding: 2.25rem 0 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: start;
  font-size: 0.8375rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer-list strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand strong {
  font-size: 0.9575rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-brand p {
  margin: 0;
}

.footer-list {
  margin: 0;
  padding-left: 1.1rem;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border);
  font-size: 0.8rem;
  color: var(--muted-light);
}

.footer-extra {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border);
  font-size: 0.8rem;
  color: var(--muted-light);
}

.footer-extra-label {
  font-weight: 600;
  color: var(--muted);
}

.footer-extra-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
}

.footer-extra-links a {
  color: var(--accent);
  font-weight: 600;
}

/* FAQ / guides contenu fixe — SEO pages */
.static-page {
  max-width: 43rem;
  margin: 0 auto;
}

.static-page-title {
  margin: 0 0 0.85rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.static-page-intro,
.static-disclaimer {
  margin: 0 0 1.6rem;
  font-size: 0.9575rem;
  color: var(--muted);
  line-height: 1.62;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: decimal;
  padding-left: 1.25rem;
}

.faq-item {
  margin: 0 0 2rem;
  padding-bottom: 1.85rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-q {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
}

.faq-a {
  margin: 0;
  padding: 0;
}

.faq-a p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.static-section {
  margin: 0 0 2rem;
}

.static-section:last-of-type {
  margin-bottom: 1.75rem;
}

.static-section h2 {
  margin: 0 0 0.6rem;
  font-size: 1.065rem;
  font-weight: 700;
}

.static-section p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.static-disclaimer {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid rgba(13, 92, 86, 0.12);
  margin-bottom: 1.85rem;
  font-size: 0.84rem !important;
  color: var(--muted);
}

.static-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}
