:root {
  --kw-red: #c8102e;
  --ink: #171412;
  --muted: #6f6862;
  --line: #eadfd5;
  --paper: #fffaf5;
  --white: #ffffff;
  --lagoon: #0787a0;
  --green: #147d4f;
  --shadow: 0 18px 45px rgba(35, 24, 17, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  padding-bottom: 76px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(7, 135, 160, .13), transparent 32rem),
    linear-gradient(180deg, #fffdf9 0%, #fff7ef 100%);
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 245, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 12px; min-width: 210px; flex: 0 0 auto; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--kw-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand strong { display: block; font-size: 1rem; line-height: 1.1; }
.brand span { display: block; color: var(--muted); font-size: .82rem; }
.menu { display: flex; align-items: center; gap: 6px; flex: 1 1 auto; flex-wrap: wrap; justify-content: flex-end; min-width: 0; }
.menu a { text-decoration: none; font-size: .92rem; padding: 9px 11px; border-radius: 999px; color: #403933; }
.menu a:hover, .menu a[aria-current="page"] { background: #fff; box-shadow: inset 0 0 0 1px var(--line); color: var(--kw-red); }
.nav-cta { background: var(--kw-red) !important; color: #fff !important; box-shadow: none !important; }
@media (max-width: 1120px) and (min-width: 861px) {
  .brand { min-width: 170px; }
  .menu { gap: 4px; }
  .menu a { font-size: .86rem; padding: 8px 9px; }
}
.hero {
  padding: 56px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 34px;
  align-items: center;
}
.eyebrow { color: var(--kw-red); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(2.15rem, 5vw, 4rem); letter-spacing: 0; max-width: 900px; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.7rem); }
h3 { font-size: 1.35rem; }
.lead { color: var(--muted); font-size: clamp(1.03rem, 2vw, 1.24rem); max-width: 720px; margin: 18px 0 0; }
.cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.cta-row.single { display: grid; grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 16px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  font: inherit;
  text-align: center;
  letter-spacing: 0;
  box-shadow: 0 14px 26px rgba(35, 24, 17, .16);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 18px 34px rgba(35, 24, 17, .20); }
.btn:active { transform: translateY(0); box-shadow: 0 8px 16px rgba(35, 24, 17, .13); }
.btn:focus-visible {
  outline: 3px solid rgba(200, 16, 46, .26);
  outline-offset: 3px;
}
.btn.primary {
  background: #f0002f;
  border-color: #9f001f;
  color: #fff;
  box-shadow: 0 16px 32px rgba(240, 0, 47, .36), 0 0 0 1px rgba(255,255,255,.42) inset;
}
.btn.dark {
  background: var(--ink);
  border-color: #000;
  color: #fff;
}
.btn.whatsapp {
  background: #00b84f;
  border-color: #008a3b;
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 184, 79, .36), 0 0 0 1px rgba(255,255,255,.42) inset;
}
.btn.ghost {
  background: #fff;
  border-color: #ad9a88;
  color: var(--ink);
  box-shadow: 0 10px 20px rgba(35, 24, 17, .10);
}
.btn.full { width: 100%; }
.btn.with-subtext { flex-direction: column; gap: 2px; line-height: 1.1; }
.btn.with-subtext small { display: block; font-size: .74rem; font-weight: 800; opacity: .86; }
.visit-request-cta { display: flex; flex: 1 1 220px; flex-direction: column; align-items: stretch; }
.proofs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill { display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 0; border-radius: 0; padding: 0; color: var(--muted); font-size: .9rem; font-weight: 800; cursor: default; user-select: none; }
.pill::before { content: "✓"; color: var(--kw-red); font-weight: 950; }
.visual-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-top {
  min-height: 240px;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 35, 48, .82), rgba(200, 16, 46, .28)),
    url("favicon.svg") center/120px no-repeat,
    linear-gradient(135deg, #0a7189, #f2d6b0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.visual-top strong { font-size: 2rem; line-height: 1.05; }
.visual-top span { opacity: .9; }
.visual-body { padding: 20px; display: grid; gap: 10px; }
.mini-stat { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 10px; color: var(--muted); }
.mini-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-stat strong { color: var(--ink); }
.section { padding: 54px 0; }
.section.alt { background: rgba(255,255,255,.58); border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 24px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 12px 0 0; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(35, 24, 17, .06);
}
.card p { color: var(--muted); margin: 10px 0 0; }
.card .btn { margin-top: 18px; }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kw-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.step p { color: var(--muted); margin: 6px 0 0; }
.listing {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  overflow: hidden;
  padding: 0;
}
.listing-media {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.42), rgba(7,135,160,.18)),
    linear-gradient(145deg, #0b6d84 0%, #83c9c7 45%, #f6d5a9 46%, #fbf4e8 100%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
}
.listing-media.property-photo {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.46)),
    url("/t2-punaauia.jpg") center/cover no-repeat;
}
.badge { display: inline-flex; width: fit-content; border-radius: 999px; padding: 6px 10px; font-size: .82rem; font-weight: 800; background: rgba(255,255,255,.9); color: var(--kw-red); }
.listing-body { padding: 24px; }
.price { font-size: 2rem; color: var(--kw-red); font-weight: 900; margin: 8px 0 12px; }
.features { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; padding: 0; list-style: none; }
.features li { display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 0; border-radius: 0; padding: 0; color: var(--muted); font-size: .92rem; font-weight: 800; cursor: default; user-select: none; }
.features li::before { content: "✓"; color: var(--kw-red); font-weight: 950; }
.contact-strip {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-strip p { margin: 6px 0 0; color: rgba(255,255,255,.72); }
.review-strip { margin-top: 18px; }
form { display: grid; gap: 12px; }
label { font-weight: 800; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 13px 12px;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.form-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.note { color: var(--muted); font-size: .92rem; margin: 8px 0 0; }
.cta-note { color: var(--muted); font-size: .9rem; line-height: 1.55; margin: 12px 0 0; }
.footer { background: #fff; border-top: 1px solid var(--line); padding: 34px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 24px; }
.footer a { display: block; text-decoration: none; color: var(--muted); margin: 7px 0; }
.footer a:hover { color: var(--kw-red); }
.sticky-whatsapp {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 12px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  width: min(300px, calc(100vw - 40px));
  max-width: 300px;
  min-height: 54px;
  padding: 13px 20px;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 18px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transform: translateX(-50%);
  box-shadow: 0 20px 44px rgba(34,197,94,.45), 0 0 0 1px rgba(20, 125, 79, .20);
}
.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;
}

@media (max-width: 860px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 12px 0; }
  .menu { justify-content: flex-start; gap: 4px; }
  .menu a { font-size: .85rem; padding: 7px 8px; }
  .hero { padding-top: 34px; }
  .hero-grid, .grid.two, .grid.three, .grid.four, .listing, .footer-grid { grid-template-columns: 1fr; }
  .visual-card { order: -1; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-row .btn {
    width: auto;
    max-width: min(100%, 300px);
  }
  .cta-row .btn.full { width: 100%; }
  .visit-request-cta { width: 100%; }
  .sticky-whatsapp { display: flex; }
}

/* Pages SEO : variante proche de la carte mobile originale */
body.seo-page {
  background: #faf8f4;
  display: flex;
  align-items: center;
  flex-direction: column;
}
body.seo-page::before {
  background: linear-gradient(180deg, #faf8f4 0%, #fffaf5 100%);
}
.seo-page .topbar,
.seo-page main,

.seo-page .lead-proof-list {
  display: grid;
  gap: 9px 14px;
  margin-top: 16px;
}
.seo-page .lead-proof-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: default;
  user-select: none;
  font-size: 12px;
  font-weight: 800;
}
.seo-page .lead-proof-list span::before {
  content: "✓";
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--kw-red);
  flex: 0 0 8px;
  font-weight: 950;
}
.seo-page .microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.seo-page .conversion-panel {
  display: grid;
  gap: 9px;
  margin: 0 0 12px;
}
.seo-page .conversion-panel div {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(35, 24, 17, .11);
  border-radius: 0;
  padding: 14px 0;
  box-shadow: none;
  cursor: default;
  user-select: none;
}
.seo-page .conversion-panel strong,
.seo-page .conversion-panel span {
  display: block;
}
.seo-page .conversion-panel strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}
.seo-page .conversion-panel span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.seo-page .seller-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 12px;
}
.seo-page .seller-signal {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
}
.seo-page .seller-signal.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.seo-page .seller-signal.primary .eyebrow,
.seo-page .seller-signal.primary p {
  color: rgba(255,255,255,.72);
}
.seo-page .seller-signal.primary .btn {
  max-width: 300px;
  margin-top: 16px;
}
.seo-page .seller-signal strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}
.seo-page .seller-signal ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}
.seo-page .seller-signal li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.seo-page .seller-signal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--kw-red);
}
.seo-page .section-cta {
  margin-top: 12px;
}
.seo-page .form-promise .trust-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.seo-page .form-promise .trust-list li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.seo-page .form-promise .trust-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--kw-red);
  font-weight: 900;
}
.seo-page .faq-mini {
  display: grid;
  gap: 10px;
}
.seo-page .faq-mini details {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 7px 18px rgba(35, 24, 17, .04);
}
.seo-page .faq-mini summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}
.seo-page .faq-mini p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.seo-page .form-reassurance {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.seo-page .proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.seo-page .proof-row article {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
}
.seo-page .proof-row strong,
.seo-page .proof-row p {
  display: block;
}
.seo-page .proof-row strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}
.seo-page .proof-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.seo-page .seller-path {
  display: grid;
  gap: 10px;
}
.seo-page .seller-path article {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
}
.seo-page .seller-path article.primary {
  background: #171412;
  border-color: #171412;
  color: #fff;
}
.seo-page .seller-path article.primary p,
.seo-page .seller-path article.primary span {
  color: rgba(255,255,255,.72);
}
.seo-page .seller-path strong,
.seo-page .seller-path span {
  display: block;
}
.seo-page .seller-path strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
}
.seo-page .seller-path span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.seo-page .review-proof {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
}
.seo-page .review-proof .stars {
  color: #f4b400;
  letter-spacing: .08em;
  font-size: 18px;
  margin: 0 0 8px;
}
.seo-page .review-proof p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page .review-proof strong {
  color: var(--ink);
}
.seo-page .review-proof .btn {
  margin-top: 14px;
}
.seo-page .route-grid {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) {
  .seo-page .seller-path,
  .seo-page .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.seo-page .footer {
  width: 100%;
  max-width: 430px;
}
.seo-page .topbar {
  background: rgba(250, 248, 244, .96);
  border-bottom: 1px solid var(--line);
}
.seo-page .nav {
  min-height: 0;
  padding: 12px 12px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.seo-page .wrap {
  width: calc(100% - 24px);
}
.seo-page .brand {
  min-width: 0;
}
.seo-page .text-brand {
  gap: 0;
  padding: 2px 0;
}
.seo-page .text-brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: .95;
  color: var(--ink);
}
.seo-page .text-brand span span {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--muted);
}
.seo-page .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.seo-page .brand strong {
  font-size: 15px;
}
.seo-page .brand span {
  font-size: 12px;
}
.seo-page .menu {
  width: 100%;
  flex-wrap: wrap;
  overflow-x: visible;
  justify-content: flex-start;
  gap: 6px;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.seo-page .menu::-webkit-scrollbar {
  display: none;
}
.seo-page .menu a {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
}
.seo-page .menu a[aria-current="page"] {
  color: var(--kw-red);
  border-color: #f1c8cf;
}
.seo-page .nav-cta {
  background: var(--kw-red) !important;
  border-color: var(--kw-red) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(200, 16, 46, .22) !important;
}
.seo-page .hero {
  padding: 20px 0 18px;
}
.seo-page .hero-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}
.seo-page .intro-card,
.seo-page .hero .wrap > div:not(.hero-grid),
.seo-page .hero-grid > div:first-child,
.seo-page .listing,
.seo-page form,
.seo-page .section-head,
.seo-page .contact-strip {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
}
.seo-page .intro-card,
.seo-page .hero .wrap > div:not(.hero-grid),
.seo-page .hero-grid > div:first-child,
.seo-page .section-head {
  padding: 22px 20px;
}
.seo-page h1 {
  font-size: 34px;
  line-height: 1.02;
}
.seo-page h2 {
  font-size: 25px;
}
.seo-page h3 {
  font-size: 16px;
}
.seo-page .lead,
.seo-page .section-head p,
.seo-page .card p,
.seo-page .step p {
  font-size: 13px;
  line-height: 1.6;
}
.seo-page .eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
}
  .seo-page .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    margin-top: 18px;
  }
  .seo-page .btn {
  width: auto;
  max-width: min(100%, 300px);
  min-height: 50px;
  border-radius: 16px;
  font-size: 13px;
}
.seo-page .btn.full,
.seo-page form .btn {
  width: 100%;
  max-width: none;
}
.seo-page .visual-card {
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.seo-page .visual-top {
  min-height: 170px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    linear-gradient(135deg, #0b6d84 0%, #78c6c0 48%, #f0cfaa 49%, #fff5e7 100%);
}
.seo-page .visual-card.estimation-card .visual-top {
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.58)),
    url("/ocean-aerial-polynesie.jpg") center 48%/cover no-repeat;
}
.seo-page .visual-top strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}
.seo-page .section {
  padding: 18px 0;
}
.seo-page .section.alt {
  background: transparent;
  border: 0;
}
.seo-page .grid,
.seo-page .grid.two,
.seo-page .grid.three,
.seo-page .grid.four,
.seo-page .seller-signal-grid,
.seo-page .proof-row {
  grid-template-columns: 1fr;
  gap: 10px;
}
.seo-page .card {
  border-radius: 18px;
  border: 1.5px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
  padding: 18px;
}
.seo-page main > .section > .wrap:not(.contact-strip):not(.properties-contact-band):not(.review-proof) {
  background: rgba(255,255,255,.74);
  border: 1.5px solid rgba(35,24,17,.10);
  border-radius: 26px;
  box-shadow: 0 16px 38px rgba(35,24,17,.075);
  padding: clamp(20px, 4vw, 38px);
}
.seo-page main > .section.alt > .wrap:not(.contact-strip):not(.properties-contact-band):not(.review-proof) {
  background: rgba(255,255,255,.68);
}
.seo-page main > .section > .wrap > .section-head,
.seo-page main > .section > .wrap.grid > .section-head,
.seo-page main > .section > .wrap > .form-promise {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(35,24,17,.10);
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 22px;
  max-width: 880px;
  padding: 0 0 22px;
}
.seo-page main > .section > .wrap > .section-head h2,
.seo-page main > .section > .wrap.grid > .section-head h2 {
  position: relative;
  margin-top: 0;
  padding-bottom: 12px;
}
.seo-page main > .section > .wrap > .section-head h2::after,
.seo-page main > .section > .wrap.grid > .section-head h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--kw-red);
}
.seo-page main > .section > .wrap > .grid,
.seo-page main > .section > .wrap > .steps,
.seo-page main > .section > .wrap > .faq-mini,
.seo-page main > .section > .wrap > .conversion-panel,
.seo-page main > .section > .wrap > .seller-signal-grid,
.seo-page main > .section > .wrap > .proof-row {
  gap: 0;
}
.seo-page main > .section > .wrap .card:not(.listing):not(.property-card-premium):not(.properties-mini-card):not(.property-criteria-card),
.seo-page main > .section > .wrap .step,
.seo-page main > .section > .wrap .conversion-panel,
.seo-page main > .section > .wrap .faq-mini details,
.seo-page main > .section > .wrap .seller-signal,
.seo-page main > .section > .wrap form {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.seo-page main > .section > .wrap .card:not(.listing):not(.property-card-premium):not(.properties-mini-card):not(.property-criteria-card),
.seo-page main > .section > .wrap .step,
.seo-page main > .section > .wrap .faq-mini details,
.seo-page main > .section > .wrap .seller-signal {
  padding: 18px 0;
  border-bottom: 1px solid rgba(35,24,17,.10);
}
.seo-page main > .section > .wrap .grid > .card:last-child,
.seo-page main > .section > .wrap .steps > .step:last-child,
.seo-page main > .section > .wrap .faq-mini > details:last-child,
.seo-page main > .section > .wrap .seller-signal-grid > .seller-signal:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.seo-page main > .section > .wrap .grid > .card:first-child,
.seo-page main > .section > .wrap .steps > .step:first-child,
.seo-page main > .section > .wrap .faq-mini > details:first-child,
.seo-page main > .section > .wrap .seller-signal-grid > .seller-signal:first-child {
  padding-top: 0;
}
.seo-page main > .section > .wrap form {
  padding: 0;
}
@media (min-width: 861px) {
  .seo-page main > .section > .wrap > .grid.two,
  .seo-page main > .section > .wrap > .grid.three,
  .seo-page main > .section > .wrap > .grid.four,
  .seo-page main > .section > .wrap > .seller-signal-grid,
  .seo-page main > .section > .wrap > .proof-row {
    column-gap: 0;
  }
  .seo-page main > .section > .wrap > .grid.two > .card:not(.listing):not(.property-card-premium):not(.properties-mini-card):not(.property-criteria-card),
  .seo-page main > .section > .wrap > .grid.three > .card:not(.listing):not(.property-card-premium):not(.properties-mini-card):not(.property-criteria-card),
  .seo-page main > .section > .wrap > .grid.four > .card:not(.listing):not(.property-card-premium):not(.properties-mini-card):not(.property-criteria-card),
  .seo-page main > .section > .wrap > .seller-signal-grid > .seller-signal,
  .seo-page main > .section > .wrap > .proof-row > .card:not(.listing) {
    border-bottom: 0;
    border-right: 1px solid rgba(35,24,17,.10);
    padding: 0 20px;
  }
  .seo-page main > .section > .wrap > .grid.two > .card:first-child,
  .seo-page main > .section > .wrap > .grid.three > .card:first-child,
  .seo-page main > .section > .wrap > .grid.four > .card:first-child,
  .seo-page main > .section > .wrap > .seller-signal-grid > .seller-signal:first-child,
  .seo-page main > .section > .wrap > .proof-row > .card:first-child {
    padding-left: 0;
  }
  .seo-page main > .section > .wrap > .grid.two > .card:last-child,
  .seo-page main > .section > .wrap > .grid.three > .card:last-child,
  .seo-page main > .section > .wrap > .grid.four > .card:last-child,
  .seo-page main > .section > .wrap > .seller-signal-grid > .seller-signal:last-child,
  .seo-page main > .section > .wrap > .proof-row > .card:last-child {
    border-right: 0;
    padding-right: 0;
  }
  .seo-page main > .section > .wrap > .steps {
    gap: 0;
  }
  .seo-page main > .section > .wrap > .steps > .step {
    padding: 20px 0;
  }
}
.seo-page .steps {
  gap: 10px;
}
.seo-page .step {
  border-radius: 18px;
  border: 1.5px solid var(--line);
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 16px;
}
.seo-page .step::before {
  width: 30px;
  height: 30px;
  font-size: 12px;
}
.seo-page .listing {
  display: block;
  overflow: hidden;
  padding: 0;
}
.seo-page .listing-media {
  min-height: 190px;
}
.seo-page .listing-body {
  padding: 18px;
}
.seo-page .price {
  font-size: 24px;
}
.seo-page .features {
  gap: 7px;
}
.seo-page .features li {
  font-size: 12px;
}
.seo-page form {
  padding: 18px;
}
.seo-page .form-grid {
  grid-template-columns: 1fr;
}
.seo-page input,
.seo-page select,
.seo-page textarea {
  border-radius: 12px;
  font-size: 14px;
}
.seo-page .contact-strip {
  background: var(--ink);
  border-color: transparent;
  border-radius: 18px;
  padding: 20px;
  justify-content: center;
  text-align: left;
}
.seo-page .contact-strip .cta-row {
  width: 100%;
  justify-items: center;
}
.seo-page .contact-strip .btn {
  max-width: 320px;
}
.seo-page .contact-mobile-section {
  padding-top: 4px;
}
.seo-page .contact-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.seo-page .contact-action-btn {
  min-height: 66px;
  border-radius: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(35, 24, 17, .08);
}
.seo-page .contact-action-btn.call {
  background: var(--kw-red);
}
.seo-page .contact-action-btn.whatsapp {
  background: #25d366;
}
.seo-page .contact-action-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
}
.seo-page .contact-share-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 22px;
}
.seo-page .contact-pill,
.seo-page .contact-wide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
}
.seo-page .contact-pill {
  gap: 9px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(35, 24, 17, .04);
}
.seo-page .contact-pill.primary {
  background: var(--kw-red);
  border-color: var(--kw-red);
  color: #fff;
}
.seo-page .contact-social-block {
  margin-top: 4px;
}
.seo-page .contact-mini-title {
  margin: 0 0 12px;
  color: #b7b2ad;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.seo-page .contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seo-page .contact-social-btn {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(35, 24, 17, .04);
}
.seo-page .contact-social-btn strong,
.seo-page .contact-social-btn small {
  display: block;
}
.seo-page .contact-social-btn strong {
  font-size: 14px;
  line-height: 1.1;
}
.seo-page .contact-social-btn small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}
.seo-page .contact-social-btn.off {
  opacity: .42;
  pointer-events: none;
}
.seo-page .contact-social-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.seo-page .contact-social-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 54%, #8134af);
}
.seo-page .contact-social-icon.facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 26px;
}
.seo-page .contact-social-icon.tiktok {
  background: #111;
}
.seo-page .contact-social-icon.linkedin {
  background: #0a66c2;
  font-size: 16px;
}
.seo-page .contact-bottom-actions {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.seo-page .contact-wide-btn {
  padding: 13px 16px;
  color: #fff;
}
.seo-page .contact-wide-btn.red {
  background: var(--kw-red);
}
.seo-page .contact-wide-btn.dark {
  background: var(--ink);
}
.seo-page .footer {
  background: transparent;
  border-top: 0;
  padding: 18px 0 28px;
}
.seo-page .footer-grid {
  width: calc(100% - 24px);
  grid-template-columns: 1fr;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  gap: 14px;
}
.seo-page .estimation-card .visual-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.seo-page.estimation-page .estimation-ads-hero {
  padding-top: 18px;
}
.seo-page.estimation-page .estimation-band-hero {
  background:
    radial-gradient(circle at 12% 12%, rgba(7,135,160,.18), transparent 25rem),
    linear-gradient(180deg, #fff6ed 0%, #ffe6d6 100%);
}
.seo-page.estimation-page .estimation-band-problem {
  background: #fffdf8;
  border-block: 1px solid rgba(222,190,162,.90);
}
.seo-page.estimation-page .estimation-band-analysis {
  background: linear-gradient(180deg, #ecfaf8 0%, #dff4f1 100%);
}
.seo-page.estimation-page .estimation-band-cases {
  background: linear-gradient(180deg, #ffefe4 0%, #ffe0cc 100%);
  border-block: 1px solid rgba(224,166,124,.78);
}
.seo-page.estimation-page .estimation-band-process {
  background: #f2eadf;
}
.seo-page.estimation-page .estimation-band-form {
  background:
    radial-gradient(circle at 86% 18%, rgba(200,16,46,.18), transparent 22rem),
    linear-gradient(180deg, #fff4ef 0%, #ffe7df 100%);
  border-block: 1px solid rgba(200,16,46,.20);
}
.seo-page.estimation-page .estimation-band-trust {
  background: linear-gradient(180deg, #eaf8ee 0%, #dff1e6 100%);
}
.seo-page.estimation-page .estimation-band-faq {
  background: #fffaf4;
  border-block: 1px solid rgba(222,190,162,.86);
}
.seo-page.estimation-page .estimation-band-final {
  background: linear-gradient(180deg, #ffeada 0%, #faf3ea 100%);
}
.seo-page.estimation-page .estimation-hero-grid {
  align-items: stretch;
}
.seo-page.estimation-page .estimation-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seo-page.estimation-page .section-head {
  position: relative;
  max-width: 860px;
}
.seo-page.estimation-page .section-head h2 {
  position: relative;
  margin-top: 0;
  padding-bottom: 12px;
  color: #171412;
  font-size: clamp(32px, 5vw, 52px);
  line-height: .94;
}
.seo-page.estimation-page .section-head h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--kw-red);
}
.seo-page.estimation-page .micro-copy {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.seo-page.estimation-page .estimation-photo-card {
  display: grid;
  align-content: end;
  min-height: 390px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(35, 24, 17, .11);
}
.seo-page.estimation-page .estimation-photo-card img,
.seo-page.estimation-page .estimation-trust-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.seo-page.estimation-page .estimation-photo-card div {
  padding: 18px;
  background: #171412;
  color: #fff;
}
.seo-page.estimation-page .estimation-photo-card strong,
.seo-page.estimation-page .estimation-photo-card span {
  display: block;
}
.seo-page.estimation-page .estimation-photo-card span {
  margin-top: 4px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.seo-page.estimation-page .estimation-insight-list,
.seo-page.estimation-page .estimation-value-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1.5px solid rgba(35,24,17,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 12px 28px rgba(35,24,17,.055);
}
.seo-page.estimation-page .estimation-insight-list p,
.seo-page.estimation-page .estimation-value-list p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid rgba(35,24,17,.08);
}
.seo-page.estimation-page .estimation-insight-list p:last-child,
.seo-page.estimation-page .estimation-value-list p:last-child {
  border-bottom: 0;
}
.seo-page.estimation-page .estimation-insight-list strong,
.seo-page.estimation-page .estimation-value-list strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}
.seo-page.estimation-page .estimation-insight-list span,
.seo-page.estimation-page .estimation-value-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page.estimation-page .estimation-insight-list p {
  grid-template-columns: minmax(130px, .34fr) minmax(0, 1fr);
  align-items: start;
}
.seo-page.estimation-page .estimation-case-grid .card {
  display: flex;
  flex-direction: column;
}
.seo-page.estimation-page .estimation-case-grid .btn {
  margin-top: auto;
}
.seo-page.estimation-page .estimation-trust-card {
  display: grid;
  gap: 14px;
  align-content: start;
}
.seo-page.estimation-page .estimation-trust-card img {
  border-radius: 16px;
}
.seo-page.estimation-page .estimation-trust-card strong {
  display: block;
  color: var(--ink);
  line-height: 1.25;
}
.seo-page.estimation-page .review-proof {
  margin: 12px 0 0;
  padding: 14px;
  border: 1.5px solid rgba(200,16,46,.18);
  border-radius: 16px;
  background: #fff8f6;
  color: #443b35;
  font-weight: 800;
}
.seo-page.estimation-page #formulaire-estimation {
  scroll-margin-top: 96px;
}
.seo-page.estimation-page .estimation-band-problem > .wrap,
.seo-page.estimation-page .estimation-band-analysis > .wrap,
.seo-page.estimation-page .estimation-band-cases > .wrap,
.seo-page.estimation-page .estimation-band-process > .wrap,
.seo-page.estimation-page .estimation-band-form > .wrap,
.seo-page.estimation-page .estimation-band-trust > .wrap,
.seo-page.estimation-page .estimation-band-faq > .wrap {
  background: rgba(255,255,255,.72);
  border: 1.5px solid rgba(35,24,17,.10);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 18px 42px rgba(35,24,17,.08);
}
.seo-page.estimation-page .estimation-band-problem .section-head,
.seo-page.estimation-page .estimation-band-analysis .section-head,
.seo-page.estimation-page .estimation-band-cases .section-head,
.seo-page.estimation-page .estimation-band-process .section-head,
.seo-page.estimation-page .estimation-band-form .section-head,
.seo-page.estimation-page .estimation-band-trust .section-head,
.seo-page.estimation-page .estimation-band-faq .section-head,
.seo-page.estimation-page .estimation-band-problem .card,
.seo-page.estimation-page .estimation-band-analysis .card,
.seo-page.estimation-page .estimation-band-cases .card,
.seo-page.estimation-page .estimation-band-process .card,
.seo-page.estimation-page .estimation-band-form form,
.seo-page.estimation-page .estimation-band-trust .card,
.seo-page.estimation-page .estimation-band-faq details,
.seo-page.estimation-page .estimation-insight-list,
.seo-page.estimation-page .estimation-value-list {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.seo-page.estimation-page .estimation-band-problem .section-head,
.seo-page.estimation-page .estimation-band-analysis .section-head,
.seo-page.estimation-page .estimation-band-cases .section-head,
.seo-page.estimation-page .estimation-band-process .section-head,
.seo-page.estimation-page .estimation-band-form .section-head,
.seo-page.estimation-page .estimation-band-trust .section-head,
.seo-page.estimation-page .estimation-band-faq .section-head {
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1.5px solid rgba(35,24,17,.10);
}
.seo-page.estimation-page .estimation-band-cases .card,
.seo-page.estimation-page .estimation-band-trust .card {
  padding: 0;
}
.seo-page.estimation-page .estimation-case-grid {
  gap: 0;
}
.seo-page.estimation-page .estimation-case-grid .card {
  padding: 18px 0;
  border-bottom: 1px solid rgba(35,24,17,.10);
}
.seo-page.estimation-page .estimation-case-grid .card:last-child {
  border-bottom: 0;
}
.seo-page.estimation-page .estimation-case-grid .btn {
  margin-top: 16px;
}
.seo-page.estimation-page .estimation-insight-list,
.seo-page.estimation-page .estimation-value-list {
  overflow: visible;
}
.seo-page.estimation-page .estimation-insight-list p,
.seo-page.estimation-page .estimation-value-list p,
.seo-page.estimation-page .steps article,
.seo-page.estimation-page .faq-mini details {
  padding: 18px 0;
  border-bottom: 1px solid rgba(35,24,17,.10);
}
.seo-page.estimation-page .estimation-insight-list p:first-child,
.seo-page.estimation-page .estimation-value-list p:first-child,
.seo-page.estimation-page .steps article:first-child,
.seo-page.estimation-page .faq-mini details:first-child {
  padding-top: 0;
}
.seo-page.estimation-page .estimation-insight-list p:last-child,
.seo-page.estimation-page .estimation-value-list p:last-child,
.seo-page.estimation-page .steps article:last-child,
.seo-page.estimation-page .faq-mini details:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.seo-page.estimation-page .steps {
  gap: 0;
}
.seo-page.estimation-page .steps article strong,
.seo-page.estimation-page .steps article span {
  display: block;
}
.seo-page.estimation-page .steps article strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}
.seo-page.estimation-page .steps article span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page.estimation-page .estimation-band-form form {
  padding: 0;
}
.seo-page.estimation-page .estimation-trust-card img {
  max-width: 260px;
  margin: 0 auto;
}
@media (min-width: 861px) {
  .seo-page.estimation-page .estimation-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
    gap: 22px;
  }
  .seo-page.estimation-page .grid.two,
  .seo-page.estimation-page .trust-proof-grid,
  .seo-page.estimation-page .estimation-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-page.estimation-page .grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .seo-page.estimation-page .grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .seo-page.estimation-page .estimation-value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-page.estimation-page .estimation-value-list p:nth-child(odd) {
    border-right: 1px solid rgba(35,24,17,.08);
  }
  .seo-page.estimation-page .estimation-value-list p:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .seo-page.estimation-page .estimation-case-grid .card {
    padding: 0 18px;
    border-bottom: 0;
    border-right: 1px solid rgba(35,24,17,.10);
  }
  .seo-page.estimation-page .estimation-case-grid .card:first-child {
    padding-left: 0;
  }
  .seo-page.estimation-page .estimation-case-grid .card:last-child {
    padding-right: 0;
    border-right: 0;
  }
  .seo-page.estimation-page .estimation-photo-card {
    min-height: 100%;
  }
  .seo-page.estimation-page .estimation-photo-card img {
    height: 100%;
    min-height: 390px;
  }
  .seo-page.estimation-page .micro-copy {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}
.seo-page .sticky-whatsapp {
  left: 50%;
  right: auto;
  bottom: 16px;
  width: min(300px, calc(100vw - 40px));
  max-width: 300px;
  margin: 0;
  border-radius: 20px;
  min-height: 56px;
  padding: 13px 20px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  transform: translateX(-50%);
}

.seo-page {
  overflow-x: hidden;
}

.seo-page.contact-page .sticky-whatsapp {
  display: none;
}

/* Navigation commune */
.nav-toggle {
  display: none;
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--kw-red);
  background: var(--kw-red);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 1120px) {
  .nav {
    position: relative;
  }
  .nav-toggle {
    display: flex;
    order: 2;
  }
  .nav .menu {
    order: 3;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 7px;
    padding-top: 8px;
    overflow: visible;
  }
  .nav .menu.open {
    display: grid;
  }
  .nav .menu a {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    text-align: center;
  }
  .seo-page .nav .menu {
    padding-right: 0;
  }
}

/* Page investissement USA */
.seo-page.usa-invest-page .hero {
  padding: 18px 0 28px;
  background:
    linear-gradient(180deg, rgba(255,250,245,.96), rgba(255,250,245,.82)),
    url("/ocean-aerial-polynesie.jpg") center 44%/cover no-repeat;
}
.seo-page.usa-invest-page .usa-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
  gap: 18px;
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.seo-page.usa-invest-page .usa-hero-copy,
.seo-page.usa-invest-page .usa-hero-form {
  background: rgba(255,255,255,.96);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(35, 24, 17, .09);
}
.seo-page.usa-invest-page .usa-hero-copy {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.seo-page.usa-invest-page .usa-hero-form {
  padding: 18px;
}
.seo-page.usa-invest-page .usa-hero-form form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.seo-page.usa-invest-page h1 {
  font-size: clamp(32px, 4vw, 48px);
  max-width: 760px;
}
.seo-page.usa-invest-page .lead {
  color: #443b35;
  font-weight: 500;
}
.seo-page.usa-invest-page .form-card-head {
  margin-bottom: 14px;
}
.seo-page.usa-invest-page .form-card-head h2 {
  font-size: 30px;
}
.seo-page.usa-invest-page .form-card-head p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page.usa-invest-page .usa-fast-path {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}
.seo-page.usa-invest-page .usa-fast-path span {
  position: relative;
  min-height: 40px;
  padding: 10px 12px 10px 34px;
  border-radius: 14px;
  background: #fff6f0;
  color: #2f2924;
  font-size: 13px;
  font-weight: 900;
}
.seo-page.usa-invest-page .usa-fast-path span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--kw-red);
}
.seo-page.usa-invest-page .usa-hero-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #171412;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page.usa-invest-page .usa-hero-note strong,
.seo-page.usa-invest-page .usa-hero-note span {
  display: block;
}
.seo-page.usa-invest-page .usa-hero-note strong {
  color: #fff;
  margin-bottom: 4px;
}
.seo-page .usa-snapshot .visual-top {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.66)),
    url("/ocean-aerial-polynesie.jpg") center 42%/cover no-repeat;
}
.seo-page.usa-invest-page .usa-qualification .section-head {
  max-width: none;
}
.seo-page .usa-check-grid {
  display: grid;
  gap: 9px;
}
.seo-page .usa-check-grid article {
  position: relative;
  min-height: 54px;
  padding: 15px 16px 15px 42px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 7px 18px rgba(35, 24, 17, .04);
}
.seo-page .usa-check-grid article::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--kw-red);
  box-shadow: 0 0 0 5px #fff0f2;
}
.seo-page .usa-feature-grid .card {
  min-height: 148px;
}
.seo-page .usa-file-note {
  margin-top: 10px;
  padding: 16px;
  border-radius: 18px;
  background: #171412;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.seo-page.usa-invest-page .usa-proof-strip {
  display: grid;
  gap: 10px;
}
.seo-page.usa-invest-page .usa-proof-strip > div {
  padding: 18px;
  border-radius: 18px;
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.045);
}
.seo-page.usa-invest-page .usa-proof-strip strong,
.seo-page.usa-invest-page .usa-proof-strip span {
  display: block;
}
.seo-page.usa-invest-page .usa-proof-strip strong {
  color: var(--ink);
}
.seo-page.usa-invest-page .usa-proof-strip span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page .usa-reasons {
  margin-bottom: 0;
}
.seo-page .usa-caution {
  background: #171412;
  border: 1.5px solid #171412;
  border-radius: 18px;
  padding: 22px 20px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(35, 24, 17, .10);
}
.seo-page .usa-caution .eyebrow {
  color: #f4bdc7;
}
.seo-page .usa-caution p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.6;
}
.seo-page .usa-caution .btn {
  margin-top: 18px;
}
.seo-page .usa-final-cta h2 {
  color: #fff;
}
.seo-page.usa-invest-page .sticky-whatsapp {
  background: var(--kw-red);
  box-shadow: 0 14px 34px rgba(200,16,46,.28);
}
@media (min-width: 720px) {
  .seo-page .usa-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-page.usa-invest-page .usa-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .seo-page.usa-invest-page .usa-hero-grid {
    grid-template-columns: 1fr;
  }
  .seo-page.usa-invest-page .hero {
    background-position: center top;
  }
}

/* Landing USA mobile-first : rapide, rassurante, orientée WhatsApp */
.seo-page.usa-invest-page .hero {
  padding: 14px 0 20px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff2ea 100%);
}
.seo-page.usa-invest-page .usa-hero-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}
.seo-page.usa-invest-page .usa-hero-copy,
.seo-page.usa-invest-page .usa-hero-form {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(35, 24, 17, .07);
}
.seo-page.usa-invest-page .usa-hero-copy {
  padding: 22px 18px 18px;
}
.seo-page.usa-invest-page .usa-hero-form {
  padding: 16px;
}
.seo-page.usa-invest-page h1 {
  font-size: clamp(34px, 10vw, 54px);
  line-height: .95;
}
.seo-page.usa-invest-page .lead {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.45;
}
.seo-page.usa-invest-page .usa-reassurance {
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 900;
}
.seo-page.usa-invest-page .usa-hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.seo-page.usa-invest-page .usa-hero-actions .btn {
  width: 100%;
  min-height: 52px;
}
.seo-page.usa-invest-page .usa-trust-row {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
.seo-page.usa-invest-page .usa-trust-row span {
  position: relative;
  min-height: 38px;
  padding: 9px 11px 9px 32px;
  border-radius: 12px;
  background: #fff6f0;
  color: #2f2924;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}
.seo-page.usa-invest-page .usa-trust-row span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--kw-red);
}
.seo-page.usa-invest-page .usa-direct-whatsapp {
  margin: 0 0 12px;
  padding: 12px;
  border-radius: 14px;
  background: #fff6f0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.seo-page.usa-invest-page .usa-direct-whatsapp a {
  color: var(--kw-red);
  font-weight: 900;
}
.seo-page.usa-invest-page .usa-flow-grid {
  display: grid;
  gap: 10px;
  counter-reset: usa-step;
}
.seo-page.usa-invest-page .usa-flow-grid article {
  position: relative;
  min-height: 132px;
  padding: 18px 16px 16px 58px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(35, 24, 17, .05);
}
.seo-page.usa-invest-page .usa-flow-grid article::before {
  counter-increment: usa-step;
  content: counter(usa-step);
  position: absolute;
  left: 16px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.seo-page.usa-invest-page .usa-flow-grid h3,
.seo-page.usa-invest-page .usa-fit-card h3 {
  margin: 0;
  font-size: 18px;
}
.seo-page.usa-invest-page .usa-flow-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page.usa-invest-page .usa-fit-grid {
  display: grid;
  gap: 10px;
}
.seo-page.usa-invest-page .usa-fit-card {
  padding: 18px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(35, 24, 17, .05);
}
.seo-page.usa-invest-page .usa-fit-card.positive {
  border-color: rgba(20, 125, 79, .28);
  background: #f4fbf6;
}
.seo-page.usa-invest-page .usa-fit-card.negative {
  border-color: rgba(200, 16, 46, .20);
  background: #fff8f6;
}
.seo-page.usa-invest-page .usa-fit-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #3d352f;
  font-size: 14px;
  line-height: 1.55;
}
.seo-page.usa-invest-page .usa-fit-card li + li {
  margin-top: 7px;
}
.seo-page.usa-invest-page .usa-caution {
  width: calc(100% - 24px);
  max-width: 980px;
  margin: 0 auto;
}
.seo-page.usa-invest-page .usa-caution .btn {
  background: #fff;
  color: var(--ink);
}
.seo-page.usa-invest-page .faq-mini details {
  background: #fff;
}
.seo-page.usa-invest-page .section-cta {
  margin-top: 18px;
}
.seo-page.usa-invest-page .usa-final-cta h2,
.seo-page.usa-invest-page .usa-final-cta p {
  color: #fff;
}
.seo-page.usa-invest-page .sticky-whatsapp {
  background: var(--kw-red);
  box-shadow: 0 14px 34px rgba(200,16,46,.28);
}
@media (min-width: 720px) {
  .seo-page.usa-invest-page .usa-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, .98fr);
    gap: 16px;
  }
  .seo-page.usa-invest-page .usa-hero-actions,
  .seo-page.usa-invest-page .usa-trust-row,
  .seo-page.usa-invest-page .usa-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-page.usa-invest-page .usa-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .seo-page.usa-invest-page .usa-flow-grid article {
    padding-left: 16px;
    padding-top: 58px;
  }
}
@media (min-width: 861px) {
  body.seo-page.usa-invest-page {
    padding-bottom: 0;
  }
}

/* Landing T2 Punaauia : parcours pub Facebook vers visite virtuelle */
.seo-page.t2-landing-page .hero {
  padding: 14px 0 18px;
}
.seo-page.t2-landing-page .t2-listing {
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(35, 24, 17, .08);
}
.seo-page.t2-landing-page .t2-gallery {
  position: relative;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 360px;
  overflow: hidden;
  background: #171412;
}
.seo-page.t2-landing-page .t2-gallery-main {
  position: relative;
  display: block;
  width: 100%;
  min-height: 280px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #171412;
  cursor: pointer;
}
.seo-page.t2-landing-page .t2-gallery-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.08) 50%, rgba(0,0,0,.58) 100%);
  pointer-events: none;
}
.seo-page.t2-landing-page .t2-gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .28s ease, opacity .18s ease;
}
.seo-page.t2-landing-page .t2-gallery-main:hover img {
  transform: scale(1.025);
}
.seo-page.t2-landing-page .t2-gallery-main .badge {
  position: absolute;
  left: 18px;
  top: 14px;
  z-index: 2;
}
.seo-page.t2-landing-page .t2-gallery-action {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 66px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 14px;
  background: rgba(23,20,18,.72);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.seo-page.t2-landing-page .t2-gallery-action span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(255,255,255,.86);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}
.seo-page.t2-landing-page .t2-gallery-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--kw-red);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(200,16,46,.34);
}
.seo-page.t2-landing-page .t2-gallery.is-gallery-engaged .t2-gallery-action {
  background: rgba(23,20,18,.92);
  box-shadow: 0 16px 38px rgba(0,0,0,.36), 0 0 0 2px rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.seo-page.t2-landing-page .t2-gallery.is-gallery-engaged .t2-gallery-action a::before {
  content: "";
}
.seo-page.t2-landing-page .t2-gallery-hint,
.seo-page.t2-landing-page .t2-gallery-counter {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: rgba(23,20,18,.76);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.seo-page.t2-landing-page .t2-gallery-hint {
  right: 14px;
  bottom: 18px;
  padding: 10px 12px;
}
.seo-page.t2-landing-page .t2-gallery-counter {
  right: 14px;
  top: 14px;
  padding: 9px 11px;
}
.seo-page.t2-landing-page .t2-gallery-nav {
  position: absolute;
  top: calc(50% - 42px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  color: #171412;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}
.seo-page.t2-landing-page .t2-gallery-nav.prev {
  left: 14px;
}
.seo-page.t2-landing-page .t2-gallery-nav.next {
  right: 14px;
}
.seo-page.t2-landing-page .t2-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 74px;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  background: rgba(255,255,255,.96);
  scrollbar-width: thin;
}
.seo-page.t2-landing-page .t2-gallery-thumbs button {
  height: 52px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  opacity: .72;
}
.seo-page.t2-landing-page .t2-gallery-thumbs button.is-active {
  border-color: var(--kw-red);
  opacity: 1;
}
.seo-page.t2-landing-page .t2-gallery-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seo-page.t2-landing-page .listing-media {
  min-height: 250px;
}
.seo-page.t2-landing-page .listing-body {
  padding: 20px 18px;
}
.seo-page.t2-landing-page h1 {
  font-size: clamp(34px, 10vw, 54px);
  line-height: .95;
}
.seo-page.t2-landing-page .price {
  margin: 10px 0 12px;
  font-size: clamp(26px, 7vw, 38px);
}
.seo-page.t2-landing-page .lead {
  color: #443b35;
  font-weight: 500;
}
.seo-page.t2-landing-page .t2-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.seo-page.t2-landing-page .t2-features li {
  display: flex;
  align-items: center;
  min-height: 40px;
  border-radius: 12px;
  background: #fff6f0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.seo-page.t2-landing-page .t2-hero-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 16px;
}
.seo-page.t2-landing-page .t2-hero-actions .btn {
  width: auto;
  max-width: min(100%, 300px);
  min-height: 52px;
}
.seo-page.t2-landing-page .t2-hero-note {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 14px;
  background: #171412;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.5;
}
.seo-page.t2-landing-page .t2-summary-grid {
  display: grid;
  gap: 10px;
}
.seo-page.t2-landing-page .t2-summary-grid .card {
  min-height: 150px;
}
.seo-page.t2-landing-page .t2-inline-cta,
.seo-page.t2-landing-page .t2-anchor-cta {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  border: 1.5px solid rgba(200,16,46,.20);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 24, 17, .07);
}
.seo-page.t2-landing-page .t2-inline-cta span,
.seo-page.t2-landing-page .t2-anchor-cta p,
.seo-page.t2-landing-page .t2-key-stack span {
  color: var(--muted);
}
.seo-page.t2-landing-page .t2-inline-cta span {
  font-weight: 800;
  line-height: 1.45;
}
.seo-page.t2-landing-page #visite-virtuelle {
  scroll-margin-top: 14px;
}
.seo-page.t2-landing-page #t2-formulaire-visite {
  scroll-margin-top: 92px;
}
.seo-page.t2-landing-page .t2-anchor-cta {
  margin-top: 0;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #fff4ed 100%);
}
.seo-page.t2-landing-page .t2-anchor-cta h2 {
  font-size: clamp(28px, 8vw, 44px);
  line-height: .98;
}
.seo-page.t2-landing-page .t2-reassurance {
  padding: 12px;
  border-radius: 14px;
  background: rgba(23,20,18,.07);
  font-size: 13px;
  line-height: 1.45;
}
.seo-page.t2-landing-page .t2-key-stack {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
  background: #171412;
}
.seo-page.t2-landing-page .t2-key-stack strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}
.seo-page.t2-landing-page .t2-key-stack span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.35;
}
.seo-page.t2-landing-page .t2-fit-grid {
  display: grid;
  gap: 12px;
}
.seo-page.t2-landing-page .t2-fit-grid .card {
  border-top: 1.5px solid var(--line);
}
.seo-page.t2-landing-page .t2-fit-grid .positive {
  background: linear-gradient(180deg, #ffffff 0%, #f6fff8 100%);
}
.seo-page.t2-landing-page .t2-fit-grid .negative {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
}
.seo-page.t2-landing-page .t2-process .conversion-panel div {
  background: #fff;
}
.seo-page.t2-landing-page .t2-form-grid form {
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(35, 24, 17, .07);
}
.seo-page.t2-landing-page .form-promise {
  align-self: center;
}
.seo-page.t2-landing-page .form-check {
  border: 1.5px solid rgba(200,16,46,.20);
  border-radius: 14px;
  padding: 12px;
  background: #fff8f6;
}
.seo-page.t2-landing-page .sticky-whatsapp {
  background: #f0002f;
  border-color: rgba(255,255,255,.92);
  box-shadow: 0 20px 44px rgba(240,0,47,.42), 0 0 0 1px rgba(159,0,31,.18);
  min-height: 52px;
}
@media (min-width: 720px) {
  .seo-page.t2-landing-page .t2-gallery-action {
    left: 18px;
    right: auto;
    bottom: 90px;
    width: min(360px, calc(100% - 36px));
  }
  .seo-page.t2-landing-page .t2-gallery-action a {
    min-width: 210px;
  }
  .seo-page.t2-landing-page .t2-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .seo-page.t2-landing-page .t2-hero-actions {
    grid-template-columns: 1fr 1fr;
  }
  .seo-page.t2-landing-page .t2-hero-actions .btn {
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 861px) {
  body.seo-page.t2-landing-page {
    padding-bottom: 0;
  }
  body.seo-page.t2-landing-page {
    align-items: stretch;
    background:
      radial-gradient(circle at 12% 8%, rgba(7,135,160,.12), transparent 28rem),
      linear-gradient(180deg, #fffdf9 0%, #fff5ec 100%);
  }
  .seo-page.t2-landing-page .topbar,
  .seo-page.t2-landing-page main,
  .seo-page.t2-landing-page .footer {
    width: 100%;
    max-width: none;
    margin-top: 0;
  }
  .seo-page.t2-landing-page .wrap,
  .seo-page.t2-landing-page .footer-grid {
    width: min(1160px, calc(100% - 56px));
  }
  .seo-page.t2-landing-page .nav {
    min-height: 74px;
    padding: 0;
    flex-direction: row;
    align-items: center;
  }
  .seo-page.t2-landing-page .menu {
    width: auto;
    justify-content: flex-end;
  }
  .seo-page.t2-landing-page .hero {
    padding: 34px 0 22px;
  }
  .seo-page.t2-landing-page .t2-listing {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
    min-height: 620px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(35, 24, 17, .14);
  }
  .seo-page.t2-landing-page .listing-media {
    min-height: 620px;
    padding: 28px;
    align-items: flex-start;
  }
  .seo-page.t2-landing-page .listing-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 46px;
  }
  .seo-page.t2-landing-page h1 {
    max-width: 650px;
    font-size: clamp(58px, 5.5vw, 82px);
    line-height: .88;
  }
  .seo-page.t2-landing-page .price {
    margin: 18px 0 14px;
    font-size: 42px;
  }
  .seo-page.t2-landing-page .lead {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.65;
  }
  .seo-page.t2-landing-page .t2-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }
  .seo-page.t2-landing-page .t2-features li {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .seo-page.t2-landing-page .t2-hero-actions {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr);
    gap: 12px;
    margin-top: 24px;
  }
  .seo-page.t2-landing-page .t2-hero-note {
    margin-top: 18px;
    padding: 15px 16px;
    font-size: 14px;
  }
  .seo-page.t2-landing-page .section {
    padding: 28px 0;
  }
  .seo-page.t2-landing-page .t2-gallery {
    min-height: 100%;
  }
  .seo-page.t2-landing-page .t2-gallery-main,
  .seo-page.t2-landing-page .t2-gallery-main img {
    min-height: 430px;
  }
  .seo-page.t2-landing-page .t2-gallery-thumbs {
    grid-auto-columns: 88px;
  }
  .seo-page.t2-landing-page .t2-gallery-thumbs button {
    height: 60px;
  }
  .seo-page.t2-landing-page .t2-gallery-main .badge {
    top: auto;
    bottom: 24px;
  }
  .seo-page.t2-landing-page .t2-summary-grid {
    gap: 16px;
  }
  .seo-page.t2-landing-page .t2-inline-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 22px;
  }
  .seo-page.t2-landing-page .t2-inline-cta .btn {
    width: auto;
    min-width: 260px;
  }
  .seo-page.t2-landing-page .t2-anchor-cta {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
    align-items: center;
    padding: 26px;
  }
  .seo-page.t2-landing-page .t2-anchor-cta .cta-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .seo-page.t2-landing-page .t2-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .seo-page.t2-landing-page .t2-fit-grid .card {
    padding: 26px;
  }
  .seo-page.t2-landing-page .t2-fit-grid h2 {
    font-size: 32px;
  }
  .seo-page.t2-landing-page .t2-summary-grid .card,
  .seo-page.t2-landing-page .faq-mini details {
    border-radius: 16px;
  }
  .seo-page.t2-landing-page .section-head {
    max-width: 760px;
    padding: 28px;
  }
  .seo-page.t2-landing-page .t2-process .section-head {
    margin-bottom: 16px;
  }
  .seo-page.t2-landing-page .t2-process .conversion-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
  .seo-page.t2-landing-page .t2-form-grid {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1fr);
    gap: 22px;
    align-items: start;
  }
  .seo-page.t2-landing-page .t2-form-grid .form-promise {
    position: sticky;
    top: 96px;
    align-self: start;
  }
  .seo-page.t2-landing-page .t2-form-grid form {
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 20px 54px rgba(35, 24, 17, .10);
  }
  .seo-page.t2-landing-page .faq-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-page.t2-landing-page .contact-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 28px;
  }
  .seo-page.t2-landing-page .contact-strip .cta-row {
    width: min(320px, 100%);
  }
  .seo-page.t2-landing-page .sticky-whatsapp {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
    min-width: 260px;
    max-width: 320px;
    border-radius: 16px;
  }
}

/* Page biens : grille plus aérée inspirée des vitrines immobilières modernes */
.seo-page.airy-properties-page .properties-hero {
  padding: 18px 0 28px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff4ec 100%);
}
.seo-page.airy-properties-page .properties-hero-inner {
  display: grid;
  gap: 16px;
}
.seo-page.airy-properties-page .properties-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 10vw, 64px);
  line-height: .95;
}
.seo-page.airy-properties-page .properties-hero .lead {
  max-width: 720px;
  color: #443b35;
  font-weight: 500;
}
.property-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.property-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}
.property-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.properties-mini-card,
.property-side-panel,
.property-criteria-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(35, 24, 17, .06);
}
.properties-mini-card strong,
.property-side-panel h3,
.property-criteria-card strong {
  color: var(--ink);
}
.properties-mini-card span,
.property-side-panel p,
.property-criteria-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.properties-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.properties-section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.property-showcase-grid {
  display: grid;
  gap: 16px;
}
.property-card-premium {
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(35, 24, 17, .08);
}
.property-card-image {
  position: relative;
  display: block;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.48)),
    url("/t2-punaauia.jpg") center/cover no-repeat;
  color: #fff;
  text-decoration: none;
}
.property-status,
.property-location {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.property-status {
  top: 14px;
  left: 14px;
  background: var(--kw-red);
  color: #fff;
}
.property-location {
  left: 14px;
  bottom: 14px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
}
.property-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.property-card-body .reference {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.property-card-body h3 {
  margin: 0;
  font-size: clamp(24px, 7vw, 36px);
  line-height: 1;
}
.property-price {
  margin: 0;
  color: var(--kw-red);
  font-size: 24px;
  font-weight: 900;
}
.property-summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.property-facts-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.property-facts-premium li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  cursor: default;
  user-select: none;
}
.property-facts-premium li::before { content: "✓"; color: var(--kw-red); font-weight: 950; }
.property-card-actions {
  display: grid;
  gap: 9px;
  margin-top: 6px;
}
.property-side-list {
  display: grid;
  gap: 8px;
}
.property-side-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  cursor: default;
  user-select: none;
}
.property-side-list span::before { content: "✓"; color: var(--kw-red); font-weight: 950; }
.properties-contact-band {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}
.properties-contact-band .eyebrow,
.properties-contact-band h2 {
  color: #fff;
}
.properties-contact-band p {
  color: rgba(255,255,255,.75);
}
@media (min-width: 760px) {
  .seo-page.airy-properties-page .properties-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: end;
  }
  .properties-section-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
  .property-showcase-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
  }
  .property-card-premium {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  }
  .property-card-image {
    min-height: 100%;
  }
  .property-card-actions {
    grid-template-columns: 1fr 1fr;
  }
  .properties-contact-band {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: center;
  }
}

/* Fix global mobile/tablette : bouton menu flottant et menu qui ne reste pas déplié */
@media (max-width: 1120px) {
  body {
    padding-bottom: 88px;
  }
  .topbar,
  .seo-page .topbar,
  .seo-page.t2-landing-page .topbar {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    left: auto;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    align-self: auto !important;
    margin: 0 !important;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    transition: transform .22s ease;
    will-change: transform;
    z-index: 90;
  }
  .topbar.is-nav-hidden,
  .seo-page .topbar.is-nav-hidden {
    transform: translateY(calc(-100% - 18px));
  }
  .nav,
  .seo-page .nav,
  .seo-page.t2-landing-page .nav {
    position: relative;
    width: auto !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 9px;
  }
  .brand,
  .seo-page .brand,
  .seo-page.t2-landing-page .brand {
    display: none;
  }
  .nav-toggle,
  .seo-page .nav-toggle,
  .seo-page.t2-landing-page .nav-toggle {
    width: auto !important;
    flex: 0 0 auto;
    min-height: 46px;
    min-width: 96px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1.5px solid var(--kw-red);
    background: var(--kw-red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
  }
  .nav .menu,
  .seo-page .nav .menu,
  .seo-page.t2-landing-page .nav .menu {
    display: none;
    width: min(300px, calc(100vw - 24px));
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 0;
    padding: 10px;
    overflow: visible;
    border: 1.5px solid var(--line);
    border-radius: 22px;
    background: rgba(250, 248, 244, .98);
    box-shadow: 0 18px 42px rgba(35, 24, 17, .16);
    backdrop-filter: blur(14px);
  }
  .nav .menu.open,
  .seo-page .nav .menu.open,
  .seo-page.t2-landing-page .nav .menu.open {
    display: grid;
  }
  .nav .menu a,
  .seo-page .nav .menu a {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    box-shadow: none;
  }
  .nav .menu a.nav-cta,
  .seo-page .nav .menu a.nav-cta {
    background: #fff !important;
    border-color: var(--line) !important;
    color: var(--ink) !important;
  }
  .sticky-whatsapp,
  .seo-page .sticky-whatsapp {
    left: 50% !important;
    right: auto !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    width: min(292px, calc(100vw - 48px)) !important;
    max-width: 292px !important;
    min-width: 0 !important;
    min-height: 58px;
    padding: 13px 18px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,.86);
    font-size: 14px;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    transform: translateX(-50%);
    box-shadow: 0 20px 44px rgba(35, 24, 17, .26), 0 14px 30px rgba(240, 0, 47, .30);
  }
  .nav .menu.open,
  .seo-page .nav .menu.open {
    max-height: calc(100vh - 104px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (min-width: 1121px) {
  body {
    padding-bottom: 0;
  }
  .topbar,
  .seo-page .topbar,
  .seo-page.t2-landing-page .topbar {
    position: fixed;
    top: 16px;
    right: 16px;
    left: auto;
    width: auto !important;
    max-width: calc(100vw - 32px) !important;
    align-self: auto !important;
    margin: 0 !important;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    transition: transform .22s ease;
    will-change: transform;
    z-index: 90;
  }
  .topbar.is-nav-hidden,
  .seo-page .topbar.is-nav-hidden,
  .seo-page.t2-landing-page .topbar.is-nav-hidden {
    transform: translateY(calc(-100% - 22px));
  }
  .nav,
  .seo-page .nav,
  .seo-page.t2-landing-page .nav {
    position: relative;
    width: auto !important;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 9px;
  }
  .brand,
  .seo-page .brand,
  .seo-page.t2-landing-page .brand {
    display: none;
  }
  .nav-toggle,
  .seo-page .nav-toggle,
  .seo-page.t2-landing-page .nav-toggle {
    display: flex;
    width: auto !important;
    flex: 0 0 auto;
    min-height: 48px;
    min-width: 104px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1.5px solid var(--kw-red);
    background: var(--kw-red);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    box-shadow: 0 14px 30px rgba(200, 16, 46, .28);
  }
  .nav .menu,
  .seo-page .nav .menu,
  .seo-page.t2-landing-page .nav .menu {
    display: none;
    width: min(320px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 0;
    padding: 10px;
    overflow: visible;
    border: 1.5px solid var(--line);
    border-radius: 22px;
    background: rgba(250, 248, 244, .98);
    box-shadow: 0 18px 42px rgba(35, 24, 17, .16);
    backdrop-filter: blur(14px);
  }
  .nav .menu.open,
  .seo-page .nav .menu.open,
  .seo-page.t2-landing-page .nav .menu.open {
    display: grid;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav .menu a,
  .seo-page .nav .menu a,
  .seo-page.t2-landing-page .nav .menu a,
  .nav .menu a.nav-cta,
  .seo-page .nav .menu a.nav-cta,
  .seo-page.t2-landing-page .nav .menu a.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    width: 100%;
    padding: 0 14px;
    border: 1.5px solid var(--line) !important;
    border-radius: 999px;
    background: #fff !important;
    color: var(--ink) !important;
    box-shadow: none !important;
    text-align: center;
  }
}

/* Landing vendeur Google Ads */
.seo-page.seller-ads-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(7, 135, 160, .10), transparent 30rem),
    linear-gradient(180deg, #fffdf9 0%, #fff6ef 52%, #faf8f4 100%);
}
.seo-page.seller-ads-page .hero {
  padding: 26px 0 24px;
}
.seo-page.seller-ads-page .seller-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 18px;
  align-items: stretch;
}
.seo-page.seller-ads-page .seller-hero-copy,
.seo-page.seller-ads-page .seller-photo-card,
.seo-page.seller-ads-page .seller-section-card,
.seo-page.seller-ads-page .seller-form-layout {
  background: rgba(255,255,255,.94);
  border: 1.5px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(35, 24, 17, .08);
}
.seo-page.seller-ads-page .seller-hero-copy {
  padding: clamp(22px, 4vw, 42px);
}
.seo-page.seller-ads-page h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 5.6vw, 4.85rem);
}
.seo-page.seller-ads-page .lead {
  max-width: 720px;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}
.seo-page.seller-ads-page .seller-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 18px;
}
.seo-page.seller-ads-page .seller-badges span {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: default;
  user-select: none;
  font-size: 13px;
  font-weight: 750;
}
.seo-page.seller-ads-page .seller-badges span::before {
  content: "✓";
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--kw-red);
  flex: 0 0 auto;
  font-weight: 950;
}
.seo-page.seller-ads-page .seller-hero-actions,
.seo-page.seller-ads-page .seller-inline-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}
.seo-page.seller-ads-page .seller-hero-actions .btn,
.seo-page.seller-ads-page .seller-inline-cta .btn,
.seo-page.seller-ads-page .seller-final-cta .btn {
  width: auto;
  max-width: 320px;
}
.seo-page.seller-ads-page .microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.seo-page.seller-ads-page .seller-photo-card {
  display: grid;
  grid-template-rows: minmax(340px, 1fr) auto;
  overflow: hidden;
  min-height: 100%;
}
.seo-page.seller-ads-page .seller-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.seo-page.seller-ads-page .seller-photo-card div {
  padding: 16px 18px;
  background: #15100d;
  color: #fff;
}
.seo-page.seller-ads-page .seller-photo-card strong,
.seo-page.seller-ads-page .seller-photo-card span {
  display: block;
}
.seo-page.seller-ads-page .seller-photo-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
}
.seo-page.seller-ads-page .seller-photo-card span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.seo-page.seller-ads-page .section {
  padding: 18px 0;
}
.seo-page.seller-ads-page .seller-band-problem,
.seo-page.seller-ads-page .seller-band-trust {
  background: rgba(255, 244, 238, .72);
}
.seo-page.seller-ads-page .seller-band-analysis,
.seo-page.seller-ads-page .seller-band-faq {
  background: rgba(235, 249, 249, .55);
}
.seo-page.seller-ads-page .seller-band-method,
.seo-page.seller-ads-page .seller-band-form {
  background: rgba(255, 251, 244, .70);
}
.seo-page.seller-ads-page .seller-section-card {
  padding: clamp(20px, 3.4vw, 34px);
}
.seo-page.seller-ads-page .section-head {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: 830px;
}
.seo-page.seller-ads-page .section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}
.seo-page.seller-ads-page .section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--kw-red);
}
.seo-page.seller-ads-page .seller-impact-grid,
.seo-page.seller-ads-page .seller-trust-grid {
  margin-top: 22px;
}
.seo-page.seller-ads-page .seller-impact-grid .card,
.seo-page.seller-ads-page .seller-trust-grid .card,
.seo-page.seller-ads-page .seller-steps .step,
.seo-page.seller-ads-page .faq-mini details {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
}
.seo-page.seller-ads-page .seller-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.seo-page.seller-ads-page .seller-check-grid span {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: default;
  user-select: none;
  font-size: 13px;
  font-weight: 850;
}
.seo-page.seller-ads-page .seller-check-grid span::before {
  content: "✓";
  color: var(--kw-red);
  font-weight: 950;
}
.seo-page.seller-ads-page .seller-review-proof {
  margin-top: 20px;
  background: #15100d;
  color: #fff;
}
.seo-page.seller-ads-page .seller-review-proof p {
  color: rgba(255,255,255,.74);
}
.seo-page.seller-ads-page .seller-review-proof .btn {
  color: #fff;
  border-color: rgba(255,255,255,.38);
}
.seo-page.seller-ads-page .seller-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}
.seo-page.seller-ads-page .form-promise {
  background: #15100d;
  color: #fff;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 30px);
}
.seo-page.seller-ads-page .form-promise p,
.seo-page.seller-ads-page .form-promise .trust-list {
  color: rgba(255,255,255,.74);
}
.seo-page.seller-ads-page .form-promise h2 {
  color: #fff;
}
.seo-page.seller-ads-page .form-promise .trust-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.seo-page.seller-ads-page .form-promise .trust-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}
.seo-page.seller-ads-page .form-promise .trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--kw-red);
}
.seo-page.seller-ads-page form {
  box-shadow: none;
  border-radius: 18px;
  padding: clamp(16px, 2.5vw, 24px);
}
.seo-page.seller-ads-page form label {
  display: grid;
  gap: 7px;
  color: #332b25;
}
.seo-page.seller-ads-page input,
.seo-page.seller-ads-page select,
.seo-page.seller-ads-page textarea {
  border-radius: 14px;
  border-color: #ead8ca;
  background: #fffdfb;
}
.seo-page.seller-ads-page input:focus,
.seo-page.seller-ads-page select:focus,
.seo-page.seller-ads-page textarea:focus {
  outline: 3px solid rgba(200, 16, 46, .12);
  border-color: rgba(200, 16, 46, .45);
}
.seo-page.seller-ads-page .seller-final-cta .contact-strip {
  background:
    linear-gradient(135deg, rgba(21,16,13,.96), rgba(70,44,36,.94)),
    url("/ocean-aerial-polynesie.jpg") center/cover no-repeat;
}
.seller-sticky-actions {
  display: none;
}

@media (max-width: 860px) {
  .seo-page.seller-ads-page {
    padding-bottom: 92px;
  }
  .seo-page.seller-ads-page .seller-hero-grid,
  .seo-page.seller-ads-page .seller-form-layout {
    grid-template-columns: 1fr;
  }
  .seo-page.seller-ads-page .seller-photo-card {
    order: -1;
    grid-template-rows: minmax(180px, 210px) auto;
  }
  .seo-page.seller-ads-page .seller-photo-card img {
    min-height: 180px;
    object-position: center 16%;
  }
  .seo-page.seller-ads-page .seller-photo-card div {
    padding: 12px 14px;
  }
  .seo-page.seller-ads-page h1 {
    font-size: 32px;
  }
  .seo-page.seller-ads-page .seller-hero-copy {
    padding: 18px 16px;
  }
  .seo-page.seller-ads-page .lead {
    font-size: 14px;
    line-height: 1.5;
  }
  .seo-page.seller-ads-page .seller-badges {
    grid-template-columns: 1fr;
  }
  .seo-page.seller-ads-page .seller-hero-actions,
  .seo-page.seller-ads-page .seller-inline-cta {
    justify-content: center;
  }
  .seo-page.seller-ads-page .seller-hero-actions .btn,
  .seo-page.seller-ads-page .seller-inline-cta .btn,
  .seo-page.seller-ads-page .seller-final-cta .btn {
    width: auto;
    max-width: min(100%, 300px);
  }
  .seo-page.seller-ads-page .seller-check-grid,
  .seo-page.seller-ads-page .seller-impact-grid,
  .seo-page.seller-ads-page .seller-trust-grid {
    grid-template-columns: 1fr;
  }
  .seo-page.seller-ads-page .seller-form-layout {
    padding: 12px;
  }
  .seo-page.seller-ads-page .form-promise {
    padding: 20px;
  }
  .seller-sticky-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 70;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .seller-sticky-actions a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
  }
  .seller-sticky-actions a:first-child {
    background: var(--green);
    color: #fff;
  }
  .seller-sticky-actions a:last-child {
    background: var(--kw-red);
    color: #fff;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .seo-page.seller-ads-page .seller-hero-grid {
    grid-template-columns: 1fr;
  }
  .seo-page.seller-ads-page .seller-photo-card {
    grid-template-columns: 280px 1fr;
    grid-template-rows: 1fr;
  }
  .seo-page.seller-ads-page .seller-photo-card img {
    min-height: 260px;
  }
  .seo-page.seller-ads-page .seller-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seo-page.seller-ads-page .seller-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 701px) and (max-width: 860px) {
  .seo-page.seller-ads-page {
    padding-bottom: 0;
  }
  .seller-sticky-actions {
    display: none;
  }
}

.seo-page.t2-landing-page .t2-features li {
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--muted);
  cursor: default;
  user-select: none;
}
.seo-page.t2-landing-page .t2-features li::before {
  content: "✓";
  color: var(--kw-red);
  font-weight: 950;
}

/* Seller dashboard MVP */
.seller-access-page{background:#fffaf7}
.seller-access-hero{padding:110px 0 54px;background:linear-gradient(135deg,#fff8f6 0%,#fff 52%,#f3eee8 100%)}
.seller-access-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.75fr);gap:28px;align-items:center}
.seller-access-copy h1{max-width:780px}
.seller-access-points{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:24px;max-width:680px}
.seller-access-points span{display:flex;align-items:center;min-height:48px;padding:12px 14px;border:1px solid rgba(200,16,46,.12);border-radius:18px;background:rgba(255,255,255,.74);font-weight:900;color:#3f342e}
.seller-access-card{padding:24px;border:1px solid rgba(35,24,17,.1);border-radius:24px;background:#fff;box-shadow:0 22px 54px rgba(35,24,17,.12)}
.seller-access-card h2{margin-bottom:8px}
.seller-access-card form{display:grid;gap:14px;margin:18px 0}
.seller-access-card label{display:grid;gap:7px;font-weight:900;color:#3f342e}
.seller-access-card input{width:100%;min-height:48px;border:1px solid rgba(35,24,17,.13);border-radius:14px;padding:12px 14px;font:inherit;background:#fff;color:#1f1a17}
.seller-access-card input:focus{outline:2px solid rgba(200,16,46,.18);border-color:rgba(200,16,46,.42)}
.seller-access-note{font-size:13px;color:var(--muted);font-weight:800;line-height:1.45}
.seller-access-demo{padding-top:36px}
.seller-access-demo-grid{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:20px;align-items:center}
@media(max-width:860px){.seller-access-hero{padding:92px 0 36px}.seller-access-grid,.seller-access-demo-grid{grid-template-columns:1fr}.seller-access-points{grid-template-columns:1fr}.seller-access-card{padding:18px}.seller-access-demo-grid .btn{width:100%}}
.seo-page.seller-ads-page .seller-client-space-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
}
.seo-page.seller-ads-page .seller-client-space-copy .lead {
  margin-top: 12px;
  color: var(--muted);
}
.seo-page.seller-ads-page .seller-client-space-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}
.seo-page.seller-ads-page .seller-client-space-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #493f38;
  font-size: 13px;
  font-weight: 850;
}
.seo-page.seller-ads-page .seller-client-space-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--kw-red);
  box-shadow: 0 0 0 5px rgba(200,16,46,.08);
  flex: 0 0 auto;
}
.seo-page.seller-ads-page .seller-client-space-preview {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 26px;
  background: linear-gradient(145deg, #171412 0%, #37251e 100%);
  color: #fff;
  box-shadow: 0 24px 54px rgba(35,24,17,.16);
  overflow: hidden;
}
.seo-page.seller-ads-page .seller-client-space-preview::before {
  content: "";
  position: absolute;
  inset: auto -30px -54px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(200,16,46,.34);
  filter: blur(10px);
}
.seo-page.seller-ads-page .seller-client-space-preview > * { position: relative; }
.seo-page.seller-ads-page .seller-client-space-preview strong {
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1;
}
.seo-page.seller-ads-page .seller-client-space-preview p {
  margin: 0;
  color: rgba(255,255,255,.76);
}
.seo-page.seller-ads-page .seller-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.seo-page.seller-ads-page .seller-mini-stats span {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
}
.seo-page.seller-ads-page .seller-mini-stats b {
  color: #fff;
  font-size: 20px;
}
.client-space-page {
  background: radial-gradient(circle at top left, rgba(200,16,46,.08), transparent 34rem), linear-gradient(180deg, #fffdf9 0%, #fff7ef 100%);
}
.client-hero { padding: clamp(76px, 10vw, 126px) 0 clamp(30px, 5vw, 56px); }
.client-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
}
.client-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: .92;
  font-weight: 300;
  letter-spacing: 0;
}
.client-hero .lead {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
}
.client-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.client-hero-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(200,16,46,.15);
  border-radius: 999px;
  background: #fff;
  color: #463b34;
  font-size: 13px;
  font-weight: 850;
}
.client-demo-note,
.client-access-card {
  border: 1.5px solid rgba(35,24,17,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 44px rgba(35,24,17,.09);
}
.client-demo-note { padding: 22px; }
.client-demo-note strong {
  display: block;
  font-size: 22px;
}
.client-demo-note p {
  margin: 8px 0 0;
  color: var(--muted);
}
.client-dashboard {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.client-section,
.client-final,
.client-access-card {
  padding: clamp(18px, 3vw, 30px);
  border: 1.5px solid rgba(35,24,17,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 40px rgba(35,24,17,.07);
}
.client-section:nth-child(even) { background: #fff8f6; }
.client-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.client-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: .98;
}
.client-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.client-stat-card {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(200,16,46,.12);
  border-radius: 18px;
  background: #fff;
}
.client-stat-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.client-stat-card strong {
  align-self: end;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}
.client-action-list,
.client-feedback-list,
.client-next-list {
  display: grid;
  gap: 10px;
}
.client-action-row,
.client-feedback-row,
.client-next-card,
.client-doc-card {
  border: 1px solid rgba(35,24,17,.08);
  border-radius: 18px;
  background: #fff;
}
.client-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 16px;
}
.client-action-row strong {
  display: block;
  margin-top: 8px;
}
.client-action-row p,
.client-feedback-row p,
.client-next-card p {
  margin: 7px 0 0;
  color: var(--muted);
}
.client-action-row time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.client-status,
.client-interest {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}
.client-status.termine,
.client-interest.chaud {
  background: rgba(34,197,94,.12);
  color: #14763a;
}
.client-status.en-cours,
.client-interest.tiede {
  background: rgba(245,158,11,.14);
  color: #915d08;
}
.client-status.prevu,
.client-interest.froid {
  background: rgba(107,114,128,.12);
  color: #4b5563;
}
.client-feedback-row { padding: 16px; }
.client-feedback-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.client-feedback-row time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}
.client-feedback-row dl,
.client-next-card dl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 10px;
  margin: 12px 0 0;
}
.client-feedback-row dt,
.client-next-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.client-feedback-row dd,
.client-next-card dd { margin: 0; }
.client-two-cols {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}
.client-doc-grid {
  display: grid;
  gap: 10px;
}
.client-doc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  color: inherit;
  text-decoration: none;
}
.client-doc-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.client-next-card { padding: 16px; }
.client-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: #15100d;
  color: #fff;
}
.client-final h2 {
  margin: 0;
  color: #fff;
}
.client-final p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.74);
}
.client-empty {
  margin: 0;
  color: var(--muted);
}
.client-shell {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 96px 0 42px;
}
.client-access-card { max-width: 640px; }
.client-access-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 300;
  line-height: .95;
}
.client-access-card p { color: var(--muted); }
@media (max-width: 860px) {
  .seo-page.seller-ads-page .seller-client-space-grid,
  .client-hero-grid,
  .client-two-cols,
  .client-final { grid-template-columns: 1fr; }
  .seo-page.seller-ads-page .seller-client-space-points,
  .seo-page.seller-ads-page .seller-mini-stats { grid-template-columns: 1fr; }
  .client-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-section-head { display: block; }
  .client-action-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .client-stats-grid { grid-template-columns: 1fr; }
  .client-hero { padding-top: 90px; }
  .client-section,
  .client-final,
  .client-access-card { border-radius: 20px; }
}
