:root {
  --color-black: #0b0b0b;
  --color-card: #161616;
  --color-card-light: #202020;
  --color-gold: #c6a15b;
  --color-gold-light: #d8bc7a;
  --color-cream: #f7f4ee;
  --color-white: #ffffff;
  --color-grey: #b9b9b9;
  --color-text-dark: #181818;
  --color-text-soft: #606060;
  --color-border: rgba(198, 161, 91, 0.25);
  --color-border-dark: rgba(11, 11, 11, 0.1);
  --shadow-soft: 0 24px 70px rgba(11, 11, 11, 0.1);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.36);
  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;
  --container-width: 1180px;
  --header-height: 84px;
  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

/* Reset léger */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-text-dark);
  background: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
p,
blockquote,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

/* Accessibilité */
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--color-black);
  background: var(--color-gold-light);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 4px;
}

/* Typographie */
h1,
h2 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-white);
}

h1 span {
  color: var(--color-gold-light);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.35;
}

p {
  margin-bottom: 20px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #8b6728;
}

/* Conteneurs et sections */
.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(82px, 10vw, 138px);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-black);
}

.section-cream {
  background: var(--color-cream);
}

.section-light {
  background: var(--color-white);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 58px;
}

.section-heading p:last-child {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: 1.06rem;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered p:last-child {
  margin-inline: auto;
}

.section-heading-light h2 {
  color: var(--color-white);
}

.section-heading-light p:last-child {
  color: var(--color-grey);
}

/* Boutons */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-black);
  background: var(--color-gold);
  box-shadow: 0 12px 30px rgba(198, 161, 91, 0.19);
}

.button-primary:hover {
  background: var(--color-gold-light);
  box-shadow: 0 16px 38px rgba(198, 161, 91, 0.25);
}

.button-secondary {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-white);
}

.button-secondary-dark {
  color: var(--color-text-dark);
  background: transparent;
  border-color: rgba(11, 11, 11, 0.22);
}

.button-secondary-dark:hover {
  color: var(--color-white);
  background: var(--color-black);
  border-color: var(--color-black);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  color: var(--color-white);
  background: rgba(11, 11, 11, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: grid;
  min-height: var(--header-height);
  align-items: center;
  gap: 16px;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
}

.brand {
  display: inline-flex;
  width: min(100%, 340px);
  min-width: 0;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 12px;
  font-weight: 700;
  grid-column: 2;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--color-white);
  border-radius: 12px;
}

.brand-name {
  display: none;
}

.brand-logo-home {
  width: 100%;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Hero de la page Fonctionnement */
main:has(> #fonctionnement) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(36px, 3.2vw, 46px);
}

main:has(> #fonctionnement) > .html-section:first-child .section-heading,
main:has(> #fonctionnement) > .html-section:first-child h1 {
  margin-bottom: 0;
}

main:has(> #fonctionnement) > #fonctionnement {
  position: relative;
  z-index: 1;
}

main:has(> #fonctionnement) > #fonctionnement::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(> #fonctionnement) > #fonctionnement > .container {
  position: relative;
  z-index: 1;
}

main:has(> #fonctionnement) > .final-cta {
  position: relative;
  z-index: 1;
}

main:has(> #fonctionnement) > .final-cta::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

main:has(> #fonctionnement) > .final-cta > .container {
  position: relative;
  z-index: 1;
}

/* Rythme vertical de la page Réalisations */
main:has(> #realisations) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(36px, 3.2vw, 46px);
}

main:has(> #realisations) > .html-section:first-child .section-heading,
main:has(> #realisations) > .html-section:first-child h1 {
  margin-bottom: 0;
}

main > #realisations.project-section {
  padding-top: 0;
  padding-bottom: clamp(40px, 3.6vw, 52px);
}

main > #realisations .project-details {
  margin-bottom: 0;
}

/* Rythme vertical de la page Comprendre */
main:has(> #comprendre) > .section {
  padding-block: clamp(40px, 4vw, 52px);
}

main:has(> #comprendre) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(18px, 2vw, 24px);
}

main:has(> #comprendre) > #comprendre {
  position: relative;
  z-index: 1;
  padding-top: clamp(18px, 2.2vw, 26px);
}

main:has(> #comprendre) > #comprendre::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(> #comprendre) > #comprendre > .container {
  position: relative;
  z-index: 1;
}

body:has(main > #comprendre) .site-footer {
  position: relative;
  border-top: 0;
}

body:has(main > #comprendre) .site-footer::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

body:has(main > #comprendre) .site-footer > .container {
  position: relative;
  z-index: 1;
}

main:has(> #comprendre) > .html-section:first-child .section-heading,
main:has(> #comprendre) > .html-section:first-child h1 {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  main:has(> #comprendre) > #comprendre::before {
    top: -18px;
    height: 18px;
  }

  body:has(main > #comprendre) .site-footer::before {
    height: 18px;
  }
}

.main-navigation {
  position: absolute;
  z-index: 1001;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  height: calc(100dvh - var(--header-height) - 16px);
  max-height: none;
  padding: 25px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--color-white);
  background: #111111;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
}

.main-navigation.is-open {
  display: block;
}

.navigation-list {
  display: grid;
  min-width: 0;
  gap: 0 34px;
  grid-auto-flow: row;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.navigation-list li {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.navigation-list li:nth-child(-n + 5),
.navigation-list li:nth-child(12) {
  grid-column: 1;
}

.navigation-list li:nth-child(n + 6):nth-child(-n + 11) {
  grid-column: 2;
}

.navigation-list li:nth-child(6) {
  grid-row: 1;
}

.navigation-list li:nth-child(7) {
  grid-row: 2;
}

.navigation-list li:nth-child(8) {
  grid-row: 3;
}

.navigation-list li:nth-child(9) {
  grid-row: 4;
}

.navigation-list li:nth-child(10) {
  grid-row: 5;
}

.navigation-list li:nth-child(11),
.navigation-list li:nth-child(12) {
  grid-row: 6;
}

.navigation-list a {
  display: block;
  min-height: 52px;
  padding: 15px 10px;
  position: relative;
  color: #dedede;
  font-size: 0.95rem;
  font-weight: 600;
}

.navigation-list a::after {
  display: none;
}

.navigation-list a:hover {
  color: var(--color-white);
}

.navigation-list .navigation-item-seo {
  border-left: 2px solid var(--color-gold);
}

.navigation-list .navigation-item-seo a {
  padding-left: 12px;
}

.navigation-list a:hover::after,
.navigation-list a:focus-visible::after {
  transform: scaleX(1);
}

.navigation-list a[aria-current="page"] {
  color: var(--color-gold-light);
}

.navigation-cta {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.84rem;
}

.menu-toggle {
  display: block;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  color: var(--color-white);
  background: transparent;
  cursor: pointer;
  grid-column: 3;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero-section {
  padding-top: clamp(70px, 9vw, 120px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.hero-content {
  max-width: 670px;
}

.hero-description {
  max-width: 625px;
  margin-bottom: 32px;
  color: #d4d4d4;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
}

.hero-note {
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--color-grey);
  font-size: 0.86rem;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  right: -160px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.18), transparent 67%);
}

.hero-glow-two {
  bottom: -300px;
  left: -260px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.09), transparent 68%);
}

.device-scene {
  position: relative;
  min-height: 520px;
}

.desktop-device {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 0;
  width: min(100%, 570px);
  padding: 9px;
  background: #252525;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  box-shadow: var(--shadow-dark);
  transform: perspective(1100px) rotateY(-8deg) rotateX(2deg);
}

.device-topbar {
  display: flex;
  gap: 7px;
  padding: 7px 10px 12px;
}

.device-topbar span {
  width: 8px;
  height: 8px;
  background: #616161;
  border-radius: 50%;
}

.desktop-screen {
  min-height: 345px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(198, 161, 91, 0.14), transparent 34%),
    linear-gradient(135deg, #111111, #202020);
  border-radius: 18px;
}

.mock-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
}

.mock-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
}

.mock-links {
  display: flex;
  gap: 11px;
}

.mock-links span {
  width: 34px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.mock-hero {
  width: 73%;
}

.mock-hero p {
  margin-bottom: 11px;
  color: var(--color-gold-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mock-hero h2 {
  margin-bottom: 20px;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.mock-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.mock-lines span {
  display: block;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
}

.mock-lines span:last-child {
  width: 75%;
}

.mock-button {
  width: 95px;
  height: 30px;
  background: var(--color-gold);
  border-radius: 999px;
}

.mock-cards {
  display: grid;
  gap: 10px;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.mock-cards div {
  min-height: 78px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.phone-device {
  position: absolute;
  z-index: 2;
  right: 4%;
  bottom: 2px;
  width: 155px;
  padding: 8px;
  background: #292929;
  border: 1px solid var(--color-border);
  border-radius: 27px;
  box-shadow: var(--shadow-dark);
  transform: rotate(4deg);
}

.phone-speaker {
  width: 42px;
  height: 5px;
  margin: 2px auto 7px;
  background: #555555;
  border-radius: 999px;
}

.phone-screen {
  min-height: 294px;
  padding: 20px 13px;
  background:
    radial-gradient(circle at 50% 10%, rgba(198, 161, 91, 0.17), transparent 35%),
    #111111;
  border-radius: 20px;
}

.phone-logo {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 8px;
  font-size: 0.55rem;
  font-weight: 800;
}

.phone-title {
  width: 92%;
  height: 18px;
  margin-bottom: 13px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 4px;
}

.phone-line {
  width: 100%;
  height: 5px;
  margin-bottom: 7px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
}

.phone-line-short {
  width: 70%;
}

.phone-button {
  width: 67px;
  height: 24px;
  margin-block: 18px;
  background: var(--color-gold);
  border-radius: 999px;
}

.phone-card {
  height: 52px;
  margin-top: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip li {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  color: #dedede;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.trust-strip li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip span {
  color: var(--color-gold-light);
  font-size: 0.75rem;
}

/* Portes d'entrée de l'accueil */
.home-paths-section {
  padding-block: clamp(58px, 7vw, 92px);
  border-bottom: 1px solid var(--color-border-dark);
}

.home-paths-heading {
  max-width: 820px;
  margin-bottom: 38px;
  margin-inline: auto;
}

.home-paths-grid {
  display: grid;
  align-items: start;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-path-card {
  display: grid;
  min-width: 0;
  background: var(--color-card);
  border: 1px solid rgba(198, 161, 91, 0.24);
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 40px rgba(11, 11, 11, 0.08);
  grid-template-columns: minmax(118px, 38%) minmax(0, 1fr);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.home-path-card:hover {
  border-color: rgba(198, 161, 91, 0.58);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.home-path-visual {
  display: grid;
  min-height: 100%;
  padding: 22px 14px;
  background: var(--color-cream);
  place-items: center;
}

.home-path-image {
  display: block;
  width: auto;
  height: 124px;
  max-width: 100%;
  object-fit: contain;
}

.home-path-image-create {
  height: 132px;
}

.home-path-image-seo {
  width: 100%;
  height: 116px;
  object-fit: contain;
}

.home-path-content {
  display: flex;
  min-width: 0;
  padding: 24px 22px;
  flex-direction: column;
  gap: 30px;
}

.home-path-card h3 {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: clamp(1.15rem, 1.7vw, 1.38rem);
}

.home-path-card p {
  display: none;
}

.home-path-card .button {
  width: fit-content;
  min-height: 0;
  margin-top: 0;
  padding: 4px 0;
  color: var(--color-gold-light);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(216, 188, 122, 0.55);
  border-radius: 0;
  box-shadow: none;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.home-path-card .button::after {
  margin-left: 7px;
  content: "→";
  transition: transform 180ms ease;
}

.home-path-card .button:hover {
  color: var(--color-white);
  background: transparent;
  border-bottom-color: var(--color-gold-light);
  box-shadow: none;
  transform: none;
}

.home-path-card .button:hover::after {
  transform: translateX(3px);
}

.home-path-card .button:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 5px;
}

/* Icônes de contenu Studio Mozin */
.content-icon {
  display: block;
  width: auto;
  height: 76px;
  max-width: 84px;
  margin-bottom: 20px;
  object-fit: contain;
}

.content-icon-dark {
  padding: 7px;
  background: rgba(255, 252, 244, 0.96);
  border-radius: 18px;
}

.content-icon-compact {
  height: 68px;
  max-width: 76px;
  margin-bottom: 18px;
}

.benefit-card > .content-icon {
  margin-top: -24px;
}

.process-step > .content-icon {
  margin-top: -26px;
}

.home-path-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid var(--color-gold);
  border-radius: 16px;
}

.home-path-icon-create::before,
.home-path-icon-edit::before {
  position: absolute;
  top: 15px;
  left: 13px;
  width: 26px;
  height: 20px;
  content: "";
  border: 1px solid var(--color-gold-light);
  border-radius: 4px;
}

.home-path-icon-create::after {
  position: absolute;
  top: 21px;
  left: 18px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--color-gold-light);
  box-shadow: 0 6px 0 rgba(225, 199, 143, 0.65);
}

.home-path-icon-edit::after {
  position: absolute;
  right: 10px;
  bottom: 12px;
  width: 16px;
  height: 3px;
  content: "";
  background: var(--color-gold-light);
  border-radius: 999px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.home-path-icon-search::before {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 19px;
  height: 19px;
  content: "";
  border: 2px solid var(--color-gold-light);
  border-radius: 50%;
}

.home-path-icon-search::after {
  position: absolute;
  top: 32px;
  left: 31px;
  width: 13px;
  height: 2px;
  content: "";
  background: var(--color-gold-light);
  border-radius: 999px;
  transform: rotate(45deg);
  transform-origin: left center;
}

/* Visibilité Google sur l'accueil */
.home-google-section {
  padding-block: clamp(58px, 7vw, 88px);
}

.home-google-container {
  max-width: 980px;
}

.home-google-heading {
  display: grid;
  max-width: 900px;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 34px;
  grid-template-columns: 112px minmax(0, 1fr);
}

.home-google-heading > div:not(.home-google-introduction) {
  grid-column: 2;
}

.home-google-heading .eyebrow,
.home-google-heading h2 {
  margin-bottom: 0;
}

.home-google-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.home-google-icon {
  width: 104px;
  height: 94px;
  padding: 8px 11px;
  object-fit: contain;
  background: rgba(247, 244, 238, 0.96);
  border-radius: var(--radius-medium);
  grid-column: 1;
  grid-row: 1;
}

.home-google-introduction {
  width: min(100%, 620px);
  grid-column: 2;
}

.home-google-introduction summary {
  min-height: 52px;
  padding: 13px 56px 13px 17px;
  font-size: 0.92rem;
}

.home-google-introduction summary::after {
  right: 15px;
  width: 27px;
  height: 27px;
  font-size: 1rem;
}

.home-google-introduction .home-google-answer {
  padding: 2px 17px 18px;
}

.home-google-accordions {
  display: grid;
  gap: 10px;
}

.home-google-principle {
  max-width: 900px;
  margin: 0 0 28px;
  padding: 17px 20px;
  color: var(--color-cream);
  background: rgba(198, 161, 91, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
}

.home-google-details {
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: var(--radius-medium);
}

.home-google-details summary {
  position: relative;
  min-height: 66px;
  padding: 18px 70px 18px 22px;
  color: var(--color-white);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.home-google-details summary::marker {
  content: "";
}

.home-google-details summary::-webkit-details-marker {
  display: none;
}

.home-google-details summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.home-google-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.home-google-details summary:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: -4px;
}

.home-google-answer {
  max-width: 820px;
  padding: 2px 22px 22px;
  color: var(--color-grey);
}

.home-google-answer p {
  margin-bottom: 14px;
}

.home-google-answer p:last-child {
  margin-bottom: 0;
}

.home-google-answer h3 {
  margin: 20px 0 8px;
  color: var(--color-cream);
  font-size: 1rem;
}

.home-google-answer ul,
.tariffs-seo-answer ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
}

.home-google-answer li,
.tariffs-seo-answer li {
  position: relative;
  padding-left: 20px;
}

.home-google-answer li::before,
.tariffs-seo-answer li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.home-google-example,
.home-google-highlight {
  margin-block: 18px;
  padding: 16px 18px;
  color: var(--color-cream);
  background: rgba(198, 161, 91, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
}

.home-google-example p {
  margin-bottom: 7px;
}

.home-google-cta {
  margin-top: 24px;
}

/* Page dédiée au référencement SEO */
.seo-page-hero {
  padding-top: clamp(36px, 4vw, 52px);
  padding-bottom: clamp(42px, 4.5vw, 60px);
}

.seo-page-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.seo-page-hero-content {
  max-width: 760px;
}

.seo-page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.seo-page-intro {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--color-grey);
  font-size: 1.05rem;
}

.seo-page-visual {
  display: grid;
  min-height: 300px;
  padding: clamp(24px, 4vw, 44px);
  place-items: center;
  background: var(--color-cream);
  border: 1px solid rgba(216, 188, 122, 0.5);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-dark);
}

.seo-page-visual img {
  width: min(100%, 330px);
  height: 250px;
  object-fit: contain;
}

.seo-page-container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.seo-page-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(34px, 3.5vw, 46px);
  padding-bottom: clamp(46px, 4.5vw, 62px);
}

.seo-page-content::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.seo-page-principle,
.seo-page-url,
.seo-page-highlight,
.seo-page-example {
  padding: 17px 20px;
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
}

.seo-page-principle {
  margin: 0 0 30px;
  color: var(--color-cream);
  background: var(--color-black);
}

.seo-page-heading {
  max-width: 860px;
  margin-bottom: 24px;
}

.seo-page-heading > p:not(.eyebrow) {
  max-width: 800px;
}

.seo-page-url,
.seo-page-highlight,
.seo-page-example {
  background: rgba(198, 161, 91, 0.11);
}

.seo-page-url {
  margin-top: 22px;
}

.seo-page-accordions {
  display: grid;
  gap: 10px;
}

.seo-page-details {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--radius-medium);
}

.seo-page-details summary {
  position: relative;
  min-height: 66px;
  padding: 18px 70px 18px 22px;
  color: var(--color-text-dark);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.seo-page-details summary::marker {
  content: "";
}

.seo-page-details summary::-webkit-details-marker {
  display: none;
}

.seo-page-details summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.seo-page-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.seo-page-details summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -4px;
}

.seo-page-answer {
  max-width: 840px;
  padding: 2px 22px 24px;
  color: var(--color-text-soft);
}

.seo-page-answer p {
  margin-bottom: 14px;
}

.seo-page-answer p:last-child {
  margin-bottom: 0;
}

.seo-page-answer h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
}

.seo-page-answer ul {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
}

.seo-page-answer li {
  position: relative;
  padding-left: 20px;
}

.seo-page-answer li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.seo-page-example,
.seo-page-highlight {
  margin-block: 18px;
}

.seo-page-example p {
  margin-bottom: 7px;
}

.seo-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.seo-page-cta-section {
  position: relative;
  z-index: 1;
  padding-top: clamp(46px, 4.5vw, 60px);
  padding-bottom: clamp(42px, 4vw, 54px);
}

.seo-page-cta-section::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.seo-page-cta-section > .container {
  position: relative;
  z-index: 1;
}

.seo-page-cta h2 {
  margin-bottom: 0;
}

.seo-page-cta .button-group {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .seo-page-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-page-visual {
    min-height: 230px;
  }

  .seo-page-visual img {
    height: 190px;
  }

  .seo-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .seo-page-hero {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .seo-page-content {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .seo-page-content::before {
    top: -18px;
    height: 18px;
  }

  .seo-page-principle {
    margin-bottom: 24px;
  }

  .seo-page-heading {
    margin-bottom: 20px;
  }

  .seo-page-cta-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .seo-page-cta-section::before {
    height: 18px;
  }
}

@media (max-width: 560px) {
  .seo-page-details summary {
    min-height: 62px;
    padding: 16px 56px 16px 16px;
  }

  .seo-page-details summary::after {
    right: 14px;
    width: 27px;
    height: 27px;
  }

  .seo-page-answer {
    padding: 2px 16px 20px;
  }

  .seo-page-cta .button-group,
  .seo-page-cta .button {
    width: 100%;
  }
}

/* Offre SEO de la page Tarifs */
.tariffs-seo-section {
  padding-block: clamp(54px, 6vw, 78px);
}

.tariffs-seo-container {
  max-width: 980px;
}

.tariffs-seo-card {
  padding: clamp(24px, 4vw, 42px);
  background: radial-gradient(circle at 100% 0%, rgba(198, 161, 91, 0.17), transparent 34%), var(--color-card);
  border: 1px solid rgba(198, 161, 91, 0.42);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-dark);
}

.tariffs-seo-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.tariffs-seo-heading h2 {
  margin-bottom: 16px;
  color: var(--color-white);
}

.tariffs-seo-heading > p:last-child {
  margin-bottom: 0;
  color: var(--color-grey);
}

.tariffs-seo-offers {
  display: grid;
  align-items: start;
  gap: 18px;
  margin-bottom: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tariffs-seo-offer {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
  flex-direction: column;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: var(--radius-medium);
}

.tariffs-seo-offer-premium {
  background: linear-gradient(145deg, rgba(198, 161, 91, 0.13), rgba(255, 255, 255, 0.045));
  border-color: rgba(198, 161, 91, 0.62);
}

.tariffs-seo-offer-label {
  margin-bottom: 12px;
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tariffs-seo-badge {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 11px;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tariffs-seo-price {
  margin-bottom: 12px;
  color: var(--color-gold-light);
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
}

.tariffs-seo-price span {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.tariffs-seo-package,
.tariffs-seo-duration {
  color: var(--color-cream);
}

.tariffs-seo-duration {
  margin-bottom: 14px;
}

.tariffs-seo-monthly {
  margin-bottom: 14px;
  padding: 12px 14px;
  color: var(--color-cream);
  background: rgba(198, 161, 91, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
  font-size: 0.9rem;
  line-height: 1.45;
}

.tariffs-seo-fit {
  margin: 18px 0 0;
  color: var(--color-grey);
  font-size: 0.88rem;
}

.tariffs-seo-offer > .tariffs-seo-details {
  margin-top: auto;
}

.tariffs-seo-learn-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--color-gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.tariffs-seo-learn-link:hover {
  color: var(--color-white);
}

.tariffs-seo-accordions {
  display: grid;
  gap: 10px;
}

.tariffs-seo-details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: var(--radius-medium);
}

.tariffs-seo-details summary {
  position: relative;
  min-height: 66px;
  padding: 18px 68px 18px 20px;
  color: var(--color-white);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.tariffs-seo-details summary::marker {
  content: "";
}

.tariffs-seo-details summary::-webkit-details-marker {
  display: none;
}

.tariffs-seo-details summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.tariffs-seo-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.tariffs-seo-details summary:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: -4px;
}

.tariffs-seo-answer {
  max-width: 820px;
  padding: 2px 20px 22px;
  color: var(--color-grey);
}

.tariffs-seo-answer h3 {
  margin: 20px 0 8px;
  color: var(--color-cream);
  font-size: 1.02rem;
}

.tariffs-seo-answer p {
  margin-bottom: 14px;
}

.tariffs-seo-highlight {
  padding: 15px 17px;
  color: var(--color-cream);
  background: rgba(198, 161, 91, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
}

.tariffs-seo-transparency {
  margin: 22px 0 0;
  padding-top: 18px;
  color: var(--color-grey);
  border-top: 1px solid rgba(198, 161, 91, 0.25);
  font-size: 0.88rem;
}

.tariffs-seo-hero {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(30px, 3vw, 40px);
}

.tariffs-seo-hero-heading {
  max-width: 850px;
  margin-bottom: 0;
}

.tariffs-seo-hero-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.tariffs-seo-hero-link {
  margin-top: 20px;
  color: var(--color-grey);
}

.tariffs-seo-hero-link a {
  color: var(--color-gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.tariffs-seo-page .tariffs-seo-section {
  padding-top: 0;
  padding-bottom: clamp(42px, 4.5vw, 58px);
}

.tariffs-seo-final-cta .button-group {
  flex: 0 0 auto;
}

.tariffs-seo-page .tariffs-seo-heading {
  margin-bottom: 24px;
}

.tariffs-seo-page .tariffs-seo-offers {
  margin-bottom: 20px;
}

.tariffs-seo-page .tariffs-seo-final-cta {
  padding-top: clamp(46px, 4.5vw, 60px);
  padding-bottom: clamp(42px, 4vw, 54px);
}

.tariffs-seo-bridge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--color-card);
  border: 1px solid rgba(198, 161, 91, 0.38);
  border-radius: var(--radius-medium);
}

.tariffs-seo-bridge-inner h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.tariffs-seo-bridge-inner p:last-child {
  margin-bottom: 0;
  color: var(--color-grey);
}

.tariffs-seo-bridge-inner .button {
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .tariffs-seo-hero {
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .tariffs-seo-page .tariffs-seo-section {
    padding-bottom: 42px;
  }

  .tariffs-seo-page .tariffs-seo-heading {
    margin-bottom: 20px;
  }

  .tariffs-seo-page .tariffs-seo-final-cta {
    padding-block: 40px;
  }

  .tariffs-seo-bridge-inner,
  .tariffs-seo-final-cta .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .tariffs-seo-bridge-inner .button,
  .tariffs-seo-final-cta .button-group,
  .tariffs-seo-final-cta .button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .home-google-heading {
    display: block;
    margin-bottom: 28px;
  }

  .home-google-icon {
    width: 86px;
    height: 78px;
    margin-bottom: 18px;
  }

  .home-google-heading .eyebrow {
    margin-bottom: 12px;
  }

  .home-google-heading h2 {
    margin-bottom: 18px;
  }

  .home-google-details summary {
    min-height: 62px;
    padding: 16px 58px 16px 17px;
  }

  .home-google-details summary::after {
    right: 16px;
    width: 27px;
    height: 27px;
    font-size: 1rem;
  }

  .home-google-answer {
    padding: 2px 17px 19px;
  }

  .home-google-example,
  .home-google-highlight {
    padding: 14px 15px;
  }

  .home-google-cta {
    width: 100%;
  }

  .tariffs-seo-card {
    padding: 22px 17px;
  }

  .tariffs-seo-offers {
    grid-template-columns: minmax(0, 1fr);
  }

  .tariffs-seo-details summary {
    min-height: 62px;
    padding: 16px 56px 16px 16px;
  }

  .tariffs-seo-details summary::after {
    right: 14px;
    width: 27px;
    height: 27px;
  }

  .tariffs-seo-answer {
    padding: 2px 16px 18px;
  }
}

/* Rythme vertical de la page d'accueil */
.home-page .hero-section {
  padding-top: clamp(58px, 7vw, 96px);
}

.home-page .hero-grid {
  gap: clamp(44px, 6vw, 76px);
}

.home-page .hero-content > .eyebrow {
  margin-bottom: 14px;
}

.home-page .hero-content h1 {
  margin-bottom: 22px;
}

.home-page .hero-description {
  margin-bottom: 26px;
}

.home-page .hero-note {
  margin-top: 18px;
}

.home-page .device-scene {
  min-height: 480px;
}

.home-page .trust-strip {
  margin-top: 52px;
}

.home-page .trust-strip li {
  min-height: 70px;
  padding-block: 15px;
}

.home-page .home-paths-section {
  position: relative;
  z-index: 1;
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(48px, 4vw, 56px);
}

.home-page .home-paths-section::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.home-page .home-paths-section > .container {
  position: relative;
  z-index: 1;
}

.home-page .home-paths-heading {
  margin-bottom: 32px;
}

.home-page .home-paths-section + .section {
  padding-top: clamp(48px, 4vw, 56px);
  padding-bottom: clamp(48px, 5vw, 60px);
}

.home-page main > .section:last-child {
  padding-top: clamp(40px, 4.5vw, 52px);
  padding-bottom: clamp(56px, 7vw, 90px);
}

.home-page .home-paths-section + .section .split-layout {
  gap: clamp(40px, 6vw, 76px);
}

.home-page .home-paths-section + .section .split-content blockquote {
  margin-top: 26px;
}

.home-page main > .section:last-child .section-heading {
  margin-bottom: 38px;
}

.home-page .confidence-grid li {
  min-height: 0;
  padding: 20px 18px 20px 60px;
}

.home-page .confidence-grid li::before {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.home-page .home-paths-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .home-path-image-supports {
  height: 124px;
}

.home-page .home-path-card-supports .home-path-content {
  gap: 16px;
}

.home-page .home-path-card-supports p {
  display: block;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.65;
}

.home-page .home-path-card-supports .home-path-note {
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 600;
}

.home-page .site-footer {
  position: relative;
  padding-top: 40px;
}

.home-page .site-footer::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Cartes services */
.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 230px;
  padding: 30px;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 40px rgba(11, 11, 11, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.card-number {
  display: inline-block;
  margin-bottom: 45px;
  color: #9c772f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

/* Offre essentielle de la page Services */
main:has(.services-offer-section) > .section {
  padding-block: clamp(32px, 3.2vw, 44px);
}

main:has(.services-offer-section) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(36px, 3.2vw, 46px);
}

main:has(.services-offer-section) > #services {
  position: relative;
  z-index: 1;
  padding-top: clamp(4px, 0.6vw, 8px);
}

main:has(.services-offer-section) > #services::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(.services-offer-section) > #services > .container {
  position: relative;
  z-index: 1;
}

main:has(.services-offer-section) > .services-google-section::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

main:has(.services-offer-section) > .services-google-section > .container {
  position: relative;
  z-index: 1;
}

main:has(.services-offer-section) > .html-section:first-child .section-heading,
main:has(.services-offer-section) > .html-section:first-child h1 {
  margin-bottom: 0;
}

main:has(.services-offer-section) > .html-section:last-child {
  padding-bottom: clamp(32px, 3vw, 40px);
}

main:has(.services-offer-section) > .services-existing-section {
  padding-bottom: clamp(22px, 2vw, 26px);
}

main:has(.services-offer-section) > .services-google-section {
  position: relative;
  z-index: 1;
  padding-top: calc(clamp(22px, 2.2vw, 28px) + 30px);
  border-top: 0;
}

main:has(.services-offer-section) > #services .section-heading,
main:has(.services-offer-section) > .services-offer-section .section-heading,
main:has(.services-offer-section) > .html-section:last-child .section-heading {
  margin-bottom: 36px;
}

main:has(.services-offer-section) > .html-section:last-child .benefit-grid {
  margin-bottom: 20px;
}

main:has(.services-offer-section) .section-heading .eyebrow,
.services-existing-content > .eyebrow {
  margin-bottom: 12px;
}

main:has(.services-offer-section) .section-heading h2,
.services-existing-content > h2 {
  margin-bottom: 16px;
}

main:has(.services-offer-section) .content-icon {
  width: auto;
  height: 96px;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

main:has(.services-offer-section) .services-offer-heading .content-icon {
  width: auto;
  height: 100px;
}

main:has(.services-offer-section) .services-google-heading .content-icon {
  width: 116px;
  height: 100px;
  padding: 8px 12px;
  background: rgba(247, 244, 238, 0.96);
  border: 0;
  border-radius: 20px;
}

main:has(.services-offer-section) .benefit-card {
  min-height: 0;
}

main:has(.services-offer-section) .benefit-card > .content-icon {
  width: 108px;
  height: 94px;
  margin-top: -24px;
  margin-bottom: 18px;
  padding: 7px 11px;
  background: rgba(247, 244, 238, 0.96);
  border: 0;
  border-radius: 20px;
  box-shadow: none;
}

main:has(.services-offer-section) .benefit-card:nth-child(6) > .content-icon {
  padding: 3px 7px;
}

main:has(.services-offer-section) > #services .feature-grid,
main:has(.services-offer-section) > .html-section:last-child .benefit-grid {
  gap: 14px;
}

main:has(.services-offer-section) > #services .feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main:has(.services-offer-section) > #services .feature-card,
main:has(.services-offer-section) > .html-section:last-child .benefit-card {
  min-height: 0;
  padding: 22px;
}

main:has(.services-offer-section) > #services .card-number,
main:has(.services-offer-section) > .html-section:last-child .benefit-card > span {
  margin-bottom: 14px;
}

main:has(.services-offer-section) > #services .feature-card h3,
main:has(.services-offer-section) > .html-section:last-child .benefit-card h3 {
  margin-bottom: 8px;
}

main:has(.services-offer-section) .services-offer-heading,
main:has(.services-offer-section) .services-google-heading {
  display: grid;
  max-width: 920px;
  align-items: center;
  column-gap: 28px;
  grid-template-columns: 132px minmax(0, 1fr);
}

main:has(.services-offer-section) .services-offer-heading > *,
main:has(.services-offer-section) .services-google-heading > * {
  grid-column: 2;
}

main:has(.services-offer-section) .services-offer-heading > .content-icon,
main:has(.services-offer-section) .services-google-heading > .content-icon {
  grid-row: 1 / span 3;
  grid-column: 1;
  margin-bottom: 0;
}

main:has(.services-offer-section) .services-offer-heading .content-icon {
  height: 120px;
}

main:has(.services-offer-section) .services-google-heading .content-icon {
  width: 130px;
  height: 116px;
  padding: 9px 13px;
}

main:has(.services-offer-section) .services-existing-content {
  display: grid;
  align-items: start;
  column-gap: 26px;
  grid-template-columns: 126px minmax(0, 1fr);
}

main:has(.services-offer-section) .services-existing-content > * {
  grid-column: 2;
}

main:has(.services-offer-section) .services-existing-content > .content-icon {
  height: 116px;
  margin-bottom: 0;
  grid-row: 1 / span 3;
  grid-column: 1;
}

main:has(.services-offer-section) .services-offer-page-card,
main:has(.services-offer-section) .services-offer-detail-card,
main:has(.services-offer-section) .services-existing-panel {
  padding: 22px;
}

main:has(.services-offer-section) > .html-section:last-child .benefit-card > .content-icon {
  width: 82px;
  height: 70px;
  margin-top: -6px;
  margin-bottom: 14px;
  padding: 5px 8px;
  border-radius: 16px;
}

main:has(.services-offer-section) > .html-section:last-child .benefit-card:nth-child(6) > .content-icon {
  padding: 2px 5px;
}

.services-offer-section {
  border-top: 1px solid var(--color-border-dark);
}

.services-offer-heading {
  max-width: 780px;
}

.services-offer-pages {
  display: grid;
  gap: 18px;
  margin-bottom: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-offer-page-card,
.services-offer-detail-card {
  min-width: 0;
  padding: clamp(26px, 4vw, 34px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 40px rgba(11, 11, 11, 0.05);
}

.services-offer-page-card > span {
  display: inline-block;
  margin-bottom: 24px;
  color: #9c772f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.services-offer-page-card p,
.services-offer-detail-card p {
  color: var(--color-text-soft);
}

.services-offer-page-card p {
  margin-bottom: 0;
}

main:has(.services-offer-section) .services-offer-page-card,
main:has(.services-offer-section) > #services .services-benefit-card {
  padding: 0;
  overflow: hidden;
}

main:has(.services-offer-section) .services-offer-page-card summary,
main:has(.services-offer-section) > #services .services-benefit-card summary {
  position: relative;
  display: grid;
  min-height: 76px;
  align-content: center;
  gap: 4px;
  padding: 18px 62px 18px 20px;
  cursor: pointer;
  list-style: none;
}

main:has(.services-offer-section) .services-offer-page-card summary::marker,
main:has(.services-offer-section) > #services .services-benefit-card summary::marker {
  content: "";
}

main:has(.services-offer-section) .services-offer-page-card summary::-webkit-details-marker,
main:has(.services-offer-section) > #services .services-benefit-card summary::-webkit-details-marker {
  display: none;
}

main:has(.services-offer-section) .services-offer-page-card summary::after,
main:has(.services-offer-section) > #services .services-benefit-card summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

main:has(.services-offer-section) .services-offer-page-card[open] summary::after,
main:has(.services-offer-section) > #services .services-benefit-card[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(.services-offer-section) .services-offer-page-card summary:focus-visible,
main:has(.services-offer-section) > #services .services-benefit-card summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(.services-offer-section) .services-offer-page-number {
  color: #9c772f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

main:has(.services-offer-section) > #services .services-benefit-card summary .card-number {
  margin-bottom: 0;
}

main:has(.services-offer-section) .services-offer-page-card summary h3,
main:has(.services-offer-section) > #services .services-benefit-card summary h3 {
  margin-bottom: 0;
}

main:has(.services-offer-section) .services-offer-page-card > p,
main:has(.services-offer-section) > #services .services-benefit-card > p {
  padding: 0 20px 20px;
}

main:has(.services-offer-section) > #services .services-benefit-card:hover {
  transform: none;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card {
  padding: 0;
  overflow: hidden;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary {
  position: relative;
  display: grid;
  min-height: 76px;
  align-content: center;
  gap: 4px;
  padding: 18px 62px 18px 20px;
  cursor: pointer;
  list-style: none;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary::marker {
  content: "";
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary::-webkit-details-marker {
  display: none;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: var(--color-gold-light);
  background: rgba(216, 188, 122, 0.06);
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: -3px;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary > span {
  margin-bottom: 0;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary h3 {
  margin-bottom: 0;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card > p {
  padding: 0 20px 20px;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card:hover {
  transform: none;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-summary-with-icon {
  padding-right: 116px;
}

main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-icon {
  position: absolute;
  top: 50%;
  right: 58px;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 3px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: translateY(-50%);
}

.services-offer-details {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-offer-list {
  display: grid;
  gap: 12px;
}

.services-offer-list li {
  position: relative;
  padding-left: 24px;
}

.services-offer-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.services-offer-list .services-identity-option {
  display: grid;
  align-items: center;
  gap: 12px;
  padding-left: 0;
  grid-template-columns: 48px minmax(0, 1fr);
}

.services-offer-list .services-identity-option::before {
  content: none;
}

.services-identity-option .content-icon {
  width: 48px;
  height: 48px;
  max-width: none;
  margin: 0;
  border-radius: 10px;
}

.services-identity-option strong {
  color: var(--color-text-dark);
}

.services-identity-content {
  min-width: 0;
}

.services-identity-details {
  margin-top: 10px;
  overflow: hidden;
  border-top: 1px solid var(--color-border-dark);
}

.services-identity-details summary {
  position: relative;
  min-height: 48px;
  padding: 13px 46px 13px 0;
  color: var(--color-text-dark);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.services-identity-details summary::marker {
  content: "";
}

.services-identity-details summary::-webkit-details-marker {
  display: none;
}

.services-identity-details summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

.services-identity-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.services-identity-details summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.services-identity-answer {
  padding: 0 0 4px;
}

.services-offer-detail-card .services-identity-answer p {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.services-offer-detail-card .services-identity-answer p:last-child {
  margin-bottom: 0;
}

.services-offer-note {
  margin-top: 16px;
  font-weight: 600;
}

.services-offer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.services-offer-link {
  color: #79591f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.services-offer-link:hover {
  color: var(--color-black);
}

/* Visibilité Google */
.services-google-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-google-heading {
  max-width: 820px;
}

.services-google-grid {
  display: grid;
  max-width: 920px;
  gap: 10px;
  margin-bottom: 20px;
  grid-template-columns: minmax(0, 1fr);
}

.services-google-card {
  min-width: 0;
  background: var(--color-card);
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: var(--radius-medium);
}

.services-google-card summary {
  position: relative;
  padding: 17px 54px 17px 20px;
  color: var(--color-white);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.services-google-card summary::marker {
  content: "";
}

.services-google-card summary::-webkit-details-marker {
  display: none;
}

.services-google-card summary::before,
.services-google-card summary::after {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--color-gold-light);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.services-google-card summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.services-google-card[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.services-google-card summary:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: -4px;
  border-radius: var(--radius-medium);
}

.services-google-card p {
  margin: 0;
  padding: 0 54px 18px 20px;
  color: var(--color-grey);
}

.services-google-note {
  max-width: 900px;
  margin-bottom: 24px;
  padding: 18px 20px;
  color: var(--color-cream);
  background: rgba(198, 161, 91, 0.1);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
  font-size: 0.94rem;
}

.services-google-button {
  max-width: 100%;
}

/* Modification de sites existants */
.services-existing-section {
  padding-block: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--color-border-dark);
}

.services-existing-grid {
  display: grid;
  align-items: start;
  gap: clamp(24px, 4vw, 42px);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.services-existing-content,
.services-existing-panel {
  min-width: 0;
}

.services-existing-content > p:not(.eyebrow):not(.services-existing-clarification) {
  margin-bottom: 14px;
  color: var(--color-text-soft);
}

.services-existing-clarification {
  margin-top: 18px;
  padding: 18px 20px;
  color: var(--color-text-dark);
  background: rgba(198, 161, 91, 0.12);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  font-weight: 700;
}

.services-wordpress-study {
  margin-top: 20px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-small);
}

.services-wordpress-study summary {
  position: relative;
  min-height: 62px;
  padding: 17px 60px 17px 18px;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.services-wordpress-study summary::marker {
  content: "";
}

.services-wordpress-study summary::-webkit-details-marker {
  display: none;
}

.services-wordpress-study summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

.services-wordpress-study[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.services-wordpress-study summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

.services-wordpress-answer {
  padding: 0 18px 18px;
}

.services-wordpress-answer p {
  margin-bottom: 10px;
  color: var(--color-text-soft);
}

.services-wordpress-answer ul {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.services-wordpress-answer li {
  position: relative;
  padding-left: 19px;
  color: var(--color-text-soft);
}

.services-wordpress-answer li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.services-existing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.services-existing-link {
  color: #79591f;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.services-existing-link:hover {
  color: var(--color-black);
}

.services-existing-panel {
  padding: clamp(26px, 4vw, 36px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  box-shadow: 0 14px 40px rgba(11, 11, 11, 0.05);
}

.services-existing-list {
  display: grid;
  gap: 11px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-existing-list li {
  position: relative;
  min-width: 0;
  padding-left: 22px;
}

.services-existing-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.services-existing-check {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-dark);
}

.services-existing-check h3 {
  margin-bottom: 12px;
}

.services-existing-check p {
  margin-bottom: 12px;
  color: var(--color-text-soft);
}

.services-existing-check p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

/* Section proposition */
.split-layout {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 1fr 0.9fr;
}

.split-content p {
  max-width: 650px;
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.split-content blockquote {
  margin: 34px 0 0;
  padding: 18px 24px;
  color: var(--color-text-dark);
  background: var(--color-cream);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  font-family: var(--font-title);
  font-size: 1.25rem;
  line-height: 1.5;
}

.check-panel {
  padding: clamp(30px, 5vw, 54px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 95% 0%, rgba(198, 161, 91, 0.18), transparent 35%),
    var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.check-panel-title {
  margin-bottom: 25px;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.55rem;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding: 13px 14px 13px 46px;
  color: #e4e4e4;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.check-list li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  width: 20px;
  height: 20px;
  content: "✓";
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
  transform: translateY(-50%);
}

/* Pourquoi HTML */
.html-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    var(--color-black);
  background-size: 46px 46px;
}

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

.benefit-card {
  min-height: 240px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-medium);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--color-border);
  transform: translateY(-5px);
}

.benefit-card > span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--color-gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  color: var(--color-white);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--color-grey);
}

/* Offres */
.offer-grid {
  display: grid;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.primary-offers-grid {
  max-width: 900px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 48px rgba(11, 11, 11, 0.06);
}

.offer-card-featured {
  color: var(--color-white);
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 161, 91, 0.17), transparent 32%),
    var(--color-black);
  border-color: var(--color-border);
  transform: translateY(-14px);
}

.offer-badge {
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 7px 12px;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-label {
  margin-bottom: 16px;
  color: #79591f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card-featured .offer-label {
  color: var(--color-gold-light);
}

.offer-price {
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.05;
}

.offer-intro {
  min-height: 58px;
  color: var(--color-text-soft);
}

.offer-card-featured .offer-intro {
  color: #cfcfcf;
}

.offer-list {
  display: grid;
  gap: 13px;
  margin: 10px 0 34px;
}

.offer-list li {
  position: relative;
  padding-left: 25px;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.offer-card-featured .offer-list li {
  color: #dedede;
}

.offer-list li::before {
  position: absolute;
  top: 0.73em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.offer-card-discovery {
  min-height: 0;
  align-self: start;
  padding: clamp(26px, 3vw, 32px);
}

.offer-card-discovery .offer-intro {
  min-height: 0;
  margin-bottom: 16px;
}

.offer-discovery-credit {
  margin-bottom: 16px;
  padding: 11px 14px;
  color: #6f501b;
  background: rgba(198, 161, 91, 0.12);
  border: 1px solid rgba(198, 161, 91, 0.42);
  border-radius: var(--radius-small);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.offer-card-discovery .offer-discovery-button {
  margin-top: 0;
  color: var(--color-black);
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 10px 24px rgba(198, 161, 91, 0.2);
}

.offer-card-discovery .offer-discovery-button:hover {
  color: var(--color-gold-light);
  background: var(--color-black);
  border-color: var(--color-gold);
}

.offer-card-discovery .offer-discovery-button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

.offer-discovery-details {
  margin-top: 14px;
  overflow: hidden;
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

.offer-discovery-details summary {
  position: relative;
  min-height: 64px;
  padding: 18px 58px 18px 18px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.offer-discovery-details summary::marker {
  content: "";
}

.offer-discovery-details summary::-webkit-details-marker {
  display: none;
}

.offer-discovery-details summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

.offer-discovery-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.offer-discovery-details summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

.offer-card-discovery .offer-discovery-details .offer-list {
  gap: 9px;
  margin: 0;
  padding: 0 18px 18px;
}

main:has(.tariffs-existing-section) .offer-card-featured .button {
  margin-top: 0;
}

main:has(.tariffs-existing-section) .offer-featured-details,
main:has(.tariffs-existing-section) .tariffs-page-details {
  margin-top: 14px;
  overflow: hidden;
  border-radius: var(--radius-medium);
}

main:has(.tariffs-existing-section) .offer-featured-details {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(198, 161, 91, 0.35);
}

main:has(.tariffs-existing-section) .tariffs-page-details {
  margin-top: auto;
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
}

main:has(.tariffs-existing-section) .offer-featured-details summary,
main:has(.tariffs-existing-section) .tariffs-page-details summary {
  position: relative;
  min-height: 64px;
  padding: 18px 58px 18px 18px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

main:has(.tariffs-existing-section) .offer-featured-details summary {
  color: var(--color-white);
}

main:has(.tariffs-existing-section) .offer-featured-details summary::marker,
main:has(.tariffs-existing-section) .tariffs-page-details summary::marker {
  content: "";
}

main:has(.tariffs-existing-section) .offer-featured-details summary::-webkit-details-marker,
main:has(.tariffs-existing-section) .tariffs-page-details summary::-webkit-details-marker {
  display: none;
}

main:has(.tariffs-existing-section) .offer-featured-details summary::after,
main:has(.tariffs-existing-section) .tariffs-page-details summary::after,
main:has(.tariffs-existing-section) .tariffs-existing-price-details summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

main:has(.tariffs-existing-section) .offer-featured-details summary::after {
  color: var(--color-gold-light);
  background: rgba(216, 188, 122, 0.06);
  border-color: var(--color-gold-light);
}

main:has(.tariffs-existing-section) .tariffs-page-details summary::after,
main:has(.tariffs-existing-section) .tariffs-existing-price-details summary::after {
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
}

main:has(.tariffs-existing-section) .offer-featured-details[open] summary::after,
main:has(.tariffs-existing-section) .tariffs-page-details[open] summary::after,
main:has(.tariffs-existing-section) .tariffs-existing-price-details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(.tariffs-existing-section) .offer-featured-details summary:focus-visible,
main:has(.tariffs-existing-section) .tariffs-page-details summary:focus-visible,
main:has(.tariffs-existing-section) .tariffs-existing-price-details summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(.tariffs-existing-section) .offer-featured-details .offer-list,
main:has(.tariffs-existing-section) .tariffs-page-details .offer-list {
  gap: 9px;
  margin: 0;
  padding: 0 18px 18px;
}

main:has(.tariffs-existing-section) .tariffs-pages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main:has(.tariffs-existing-section) .tariffs-page-card {
  min-height: 0;
  padding: 22px;
}

main:has(.tariffs-existing-section) .tariffs-page-card .offer-intro {
  min-height: 0;
  margin-bottom: 16px;
}

main:has(.tariffs-existing-section) .tariffs-pages-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 18px;
  background: var(--color-cream);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
}

main:has(.tariffs-existing-section) .tariffs-guide-link {
  padding: 22px 24px;
}

main:has(.tariffs-existing-section) .tariffs-guide-content h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

main:has(.tariffs-existing-section) .tariffs-guide-button {
  color: var(--color-black);
  background: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 10px 24px rgba(198, 161, 91, 0.18);
}

main:has(.tariffs-existing-section) .tariffs-guide-button:hover {
  color: var(--color-gold-light);
  background: var(--color-black);
  border-color: var(--color-gold);
}

main:has(.tariffs-existing-section) .tariffs-guide-button:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

main:has(.tariffs-existing-section) .tariffs-writing-grid,
main:has(.tariffs-existing-section) .tariffs-visual-grid {
  display: grid;
  gap: 12px;
}

main:has(.tariffs-existing-section) .tariffs-writing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main:has(.tariffs-existing-section) .tariffs-visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 12px;
}

main:has(.tariffs-existing-section) .tariffs-writing-grid li,
main:has(.tariffs-existing-section) .tariffs-visual-grid li {
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-small);
}

main:has(.tariffs-existing-section) .tariffs-writing-grid li:last-child,
main:has(.tariffs-existing-section) .tariffs-visual-grid li:last-child {
  padding-bottom: 16px;
}

main:has(.tariffs-existing-section) .tariffs-writing-special {
  background: linear-gradient(135deg, var(--color-cream), #fbf6eb);
  border-color: rgba(198, 161, 91, 0.5);
  grid-column: 1 / -1;
}

main:has(.tariffs-existing-section) .tariffs-writing-grid strong,
main:has(.tariffs-existing-section) .tariffs-visual-grid strong {
  white-space: normal;
}

main:has(.tariffs-existing-section) .tariffs-existing-price-details {
  width: 100%;
}

main:has(.tariffs-existing-section) .tariffs-existing-price-details summary {
  position: relative;
  display: grid;
  align-items: center;
  gap: 10px 18px;
  padding: 4px 48px 4px 0;
  cursor: pointer;
  list-style: none;
  grid-template-columns: minmax(0, 1fr) auto;
}

main:has(.tariffs-existing-section) .tariffs-existing-price-details summary::marker {
  content: "";
}

main:has(.tariffs-existing-section) .tariffs-existing-price-details summary::-webkit-details-marker {
  display: none;
}

main:has(.tariffs-existing-section) .tariffs-existing-price-details summary::after {
  right: 0;
}

main:has(.tariffs-existing-section) .tariffs-existing-price-details .tariffs-existing-description {
  padding-right: 48px;
}

main:has(.tariffs-existing-section) #redaction,
main:has(.tariffs-existing-section) #visuels-personnalises {
  padding-block: clamp(34px, 3.5vw, 44px);
}

main:has(.tariffs-existing-section) > .tariffs-overview {
  position: relative;
  z-index: 1;
  padding-block: clamp(38px, 4vw, 52px);
}

main:has(.tariffs-existing-section) > .tariffs-overview::before,
main:has(.tariffs-existing-section) > .final-cta::before {
  position: absolute;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
}

main:has(.tariffs-existing-section) > .tariffs-overview::before {
  top: -30px;
  background: var(--color-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(.tariffs-existing-section) > .tariffs-overview > .container,
main:has(.tariffs-existing-section) > .final-cta > .container {
  position: relative;
  z-index: 1;
}

main:has(.tariffs-existing-section) .tariffs-overview-heading {
  margin-bottom: 24px;
}

main:has(.tariffs-existing-section) .tariffs-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

main:has(.tariffs-existing-section) .tariffs-overview-grid a {
  display: grid;
  min-width: 0;
  min-height: 96px;
  align-content: center;
  gap: 7px;
  padding: 18px 20px;
  color: var(--color-black);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

main:has(.tariffs-existing-section) .tariffs-overview-grid a:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

main:has(.tariffs-existing-section) .tariffs-overview-grid a:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

main:has(.tariffs-existing-section) .tariffs-overview-name {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main:has(.tariffs-existing-section) .tariffs-overview-action {
  position: relative;
  width: fit-content;
  padding-right: 15px;
  color: #79591f;
  font-size: 0.76rem;
  font-weight: 700;
}

main:has(.tariffs-existing-section) .tariffs-overview-action::after {
  position: absolute;
  right: 1px;
  content: "›";
  transition: transform 180ms ease;
}

main:has(.tariffs-existing-section) .tariffs-overview-grid a:hover .tariffs-overview-action::after,
main:has(.tariffs-existing-section) .tariffs-overview-grid a:focus-visible .tariffs-overview-action::after {
  transform: translateX(3px);
}

main:has(.tariffs-existing-section) .tariffs-overview-grid strong {
  color: #79591f;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.15;
}

main:has(.tariffs-existing-section) .tariffs-section-start-price {
  margin-bottom: 16px;
  color: #79591f;
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 700;
}

main:has(.tariffs-existing-section) .tariffs-guide-link {
  margin-top: 28px;
}

main:has(.tariffs-existing-section) .tariffs-main-details {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

main:has(.tariffs-existing-section) .tariffs-main-details > summary {
  position: relative;
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 5px 28px;
  padding: 24px 84px 24px 28px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: minmax(0, 1fr) auto;
  transition: background-color 180ms ease, border-color 180ms ease;
}

main:has(.tariffs-existing-section) .tariffs-main-details:not([open]) > summary:hover {
  background: #fbf7ed;
}

main:has(.tariffs-existing-section) .tariffs-main-details > summary::marker,
main:has(.tariffs-existing-section) .tariffs-main-details > summary::-webkit-details-marker {
  display: none;
}

main:has(.tariffs-existing-section) .tariffs-main-details > summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  content: "+";
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

main:has(.tariffs-existing-section) .tariffs-main-details[open] > summary {
  color: var(--color-white);
  background: var(--color-black);
}

main:has(.tariffs-existing-section) .tariffs-main-details[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(.tariffs-existing-section) .tariffs-main-details > summary:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(.tariffs-existing-section) .tariffs-main-kicker {
  color: #79591f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  grid-column: 1;
}

main:has(.tariffs-existing-section) .tariffs-main-details[open] .tariffs-main-kicker {
  color: var(--color-gold-light);
}

main:has(.tariffs-existing-section) .tariffs-main-title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  grid-column: 1;
}

main:has(.tariffs-existing-section) .tariffs-main-details > summary strong {
  align-self: center;
  color: #79591f;
  font-family: var(--font-title);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  grid-column: 2;
  grid-row: 1 / 4;
}

main:has(.tariffs-existing-section) .tariffs-main-details[open] > summary strong {
  color: var(--color-gold-light);
}

main:has(.tariffs-existing-section) .tariffs-main-action {
  width: fit-content;
  color: #79591f;
  font-size: 0.77rem;
  font-weight: 700;
  grid-column: 1;
}

main:has(.tariffs-existing-section) .tariffs-main-action::after {
  margin-left: 7px;
  content: "›";
}

main:has(.tariffs-existing-section) .tariffs-main-details[open] .tariffs-main-action {
  color: var(--color-gold-light);
}

main:has(.tariffs-existing-section) .offer-featured-details summary:hover,
main:has(.tariffs-existing-section) .tariffs-page-details summary:hover,
.offer-discovery-details summary:hover {
  background: rgba(198, 161, 91, 0.08);
}

main:has(.tariffs-existing-section) .tariffs-main-content {
  padding: clamp(24px, 4vw, 34px);
}

main:has(.tariffs-existing-section) .tariffs-main-content > .section-heading {
  margin-bottom: 24px;
}

main:has(.tariffs-existing-section) .tariffs-main-content > .section-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

main:has(.tariffs-existing-section) .tariffs-main-content > .tariffs-explanation {
  margin-top: 18px;
}

main:has(.tariffs-existing-section) > .tariffs-work-reassurance {
  padding-block: clamp(42px, 4.5vw, 58px);
}

@media (prefers-reduced-motion: reduce) {
  main:has(.tariffs-existing-section) .tariffs-overview-grid a,
  main:has(.tariffs-existing-section) .tariffs-overview-action::after,
  main:has(.tariffs-existing-section) .tariffs-main-details > summary,
  main:has(.tariffs-existing-section) .tariffs-main-details > summary::after {
    transition: none;
  }
}

@media (max-width: 1080px) {
  main:has(.tariffs-existing-section) .tariffs-writing-grid,
  main:has(.tariffs-existing-section) .tariffs-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main:has(.tariffs-existing-section) .tariffs-writing-special {
    grid-column: 1 / -1;
  }
}

@media (max-width: 940px) {
  main:has(.tariffs-existing-section) .tariffs-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main:has(.tariffs-existing-section) .tariffs-pages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main:has(.tariffs-existing-section) .tariffs-page-card:last-child {
    grid-column: 1 / -1;
  }
}

.offer-note {
  max-width: 760px;
  margin: 42px auto 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  text-align: center;
}

/* Grille tarifaire détaillée */
.tariffs-options-grid {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
}

.tariffs-options-card,
.tariffs-explanation,
.tariffs-reassurance {
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 48px rgba(11, 11, 11, 0.06);
}

.tariffs-options-card {
  padding: clamp(28px, 4vw, 40px);
  background: var(--color-white);
}

.tariffs-options-card h3 {
  margin-bottom: 28px;
}

.tariffs-price-list {
  display: grid;
  gap: 0;
}

.tariffs-price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border-dark);
}

.tariffs-price-list li:last-child {
  padding-bottom: 0;
}

.tariffs-price-list span {
  color: var(--color-text-soft);
}

.tariffs-price-list strong {
  flex: 0 0 auto;
  color: #79591f;
  font-family: var(--font-title);
  font-size: 1.15rem;
}

.tariffs-price-list-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
}

.tariffs-identity-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border-dark);
}

.tariffs-identity-heading {
  display: grid;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  grid-template-columns: 64px minmax(0, 1fr);
}

.tariffs-identity-heading .content-icon {
  width: 64px;
  height: 64px;
  max-width: none;
  margin: 0;
  border-radius: 14px;
}

.tariffs-identity-heading h4 {
  margin-bottom: 6px;
  color: var(--color-text-dark);
  font-family: var(--font-title);
  font-size: 1.35rem;
}

.tariffs-identity-heading p {
  margin-bottom: 4px;
  color: var(--color-text-soft);
}

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

.tariffs-identity-grid > section {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-dark);
}

.tariffs-identity-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.tariffs-identity-title h5 {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 1rem;
}

.tariffs-identity-title strong {
  flex: 0 0 auto;
  color: #79591f;
  font-family: var(--font-title);
  font-size: 1.15rem;
}

.tariffs-identity-grid ul {
  display: grid;
  gap: 7px;
}

.tariffs-identity-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-soft);
}

.tariffs-identity-grid li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.tariffs-identity-note {
  margin: 20px 0 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.tariffs-explanation {
  padding: clamp(26px, 4vw, 36px);
  background: var(--color-cream);
}

.tariffs-explanation p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.tariffs-existing-price-content {
  min-width: 0;
}

.tariffs-existing-service {
  display: block;
  color: var(--color-text-dark) !important;
  font-weight: 700;
}

.tariffs-existing-description {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.tariffs-existing-conditions h3 {
  margin-bottom: 18px;
}

.tariffs-existing-conditions > p {
  margin-bottom: 18px;
}

.tariffs-existing-conditions > p:last-child {
  margin-bottom: 0;
}

.tariffs-existing-check-list {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--color-text-soft);
}

.tariffs-existing-check-list li {
  position: relative;
  padding-left: 18px;
}

.tariffs-existing-check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.tariffs-existing-clarifications {
  margin-top: 24px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-medium);
}

.tariffs-existing-clarifications p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.tariffs-existing-clarifications p + p {
  margin-top: 10px;
}

.tariffs-existing-actions {
  margin-top: 24px;
}

.tariffs-reassurance {
  display: grid;
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  padding: clamp(32px, 6vw, 60px);
  background: var(--color-white);
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
}

.tariffs-reassurance h2 {
  margin-bottom: 20px;
}

.tariffs-reassurance div > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.tariffs-reassurance-highlight {
  margin-bottom: 0;
  padding-left: 24px;
  color: #79591f;
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
}

.tariffs-guide-link {
  display: grid;
  align-items: center;
  gap: 28px 44px;
  margin-bottom: clamp(48px, 7vw, 72px);
  padding: clamp(26px, 4vw, 38px);
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  grid-template-columns: minmax(0, 1fr) auto;
}

.tariffs-guide-content {
  max-width: 700px;
}

.tariffs-guide-content .eyebrow {
  margin-bottom: 12px;
}

.tariffs-guide-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.tariffs-guide-content > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.tariffs-guide-button {
  max-width: 300px;
  text-align: center;
}

/* Rythme vertical propre à la page Tarifs */
main:has(.tariffs-existing-section) > .section {
  padding-block: clamp(40px, 4vw, 52px);
}

main:has(.tariffs-existing-section) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(18px, 2vw, 24px);
}

main:has(.tariffs-existing-section) > #offres {
  padding-top: clamp(22px, 2.4vw, 30px);
}

main:has(.tariffs-existing-section) > .html-section:first-child .section-heading,
main:has(.tariffs-existing-section) > .html-section:first-child h1 {
  margin-bottom: 0;
}

main:has(.tariffs-existing-section) .section-heading {
  margin-bottom: 30px;
}

main:has(.tariffs-existing-section) .section-heading .eyebrow,
main:has(.tariffs-existing-section) .tariffs-reassurance .eyebrow {
  margin-bottom: 10px;
}

main:has(.tariffs-existing-section) .section-heading h2,
main:has(.tariffs-existing-section) .tariffs-reassurance h2,
main:has(.tariffs-existing-section) .final-cta h2 {
  margin-bottom: 16px;
}

main:has(.tariffs-existing-section) .offer-grid {
  gap: 16px;
}

main:has(.tariffs-existing-section) .offer-badge {
  margin-bottom: 16px;
}

main:has(.tariffs-existing-section) .offer-label {
  margin-bottom: 12px;
}

main:has(.tariffs-existing-section) .offer-price {
  margin-bottom: 10px;
}

main:has(.tariffs-existing-section) .offer-list {
  gap: 10px;
  margin: 6px 0 22px;
}

main:has(.tariffs-existing-section) .offer-note {
  margin-top: 24px;
}

main:has(.tariffs-existing-section) .tariffs-guide-link {
  gap: 20px 36px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

main:has(.tariffs-existing-section) .tariffs-guide-content .eyebrow {
  margin-bottom: 8px;
}

main:has(.tariffs-existing-section) .tariffs-guide-content h2 {
  margin-bottom: 10px;
}

main:has(.tariffs-existing-section) .tariffs-options-card h3 {
  margin-bottom: 18px;
}

main:has(.tariffs-existing-section) .tariffs-price-list li {
  padding-block: 14px;
}

main:has(.tariffs-existing-section) .tariffs-options-grid {
  gap: 18px;
}

main:has(.tariffs-existing-section) .tariffs-reassurance {
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(28px, 4vw, 44px);
}

main:has(.tariffs-existing-section) .tariffs-existing-conditions > p {
  margin-bottom: 14px;
}

main:has(.tariffs-existing-section) .tariffs-existing-conditions > p:last-child {
  margin-bottom: 0;
}

main:has(.tariffs-existing-section) .tariffs-existing-check-list {
  margin-bottom: 16px;
}

main:has(.tariffs-existing-section) .tariffs-existing-clarifications {
  margin-top: 18px;
}

main:has(.tariffs-existing-section) .tariffs-existing-clarifications p + p {
  margin-top: 8px;
}

main:has(.tariffs-existing-section) .tariffs-existing-actions {
  margin-top: 18px;
}

main:has(.tariffs-existing-section) > .tariffs-hosting-section {
  padding-top: 0;
  padding-bottom: clamp(42px, 5vw, 58px);
}

main:has(.tariffs-existing-section) .tariffs-hosting-panel {
  padding: clamp(26px, 4vw, 38px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 14px 38px rgba(11, 11, 11, 0.05);
}

main:has(.tariffs-existing-section) .tariffs-hosting-heading {
  max-width: 800px;
  margin-bottom: 24px;
}

main:has(.tariffs-existing-section) .tariffs-hosting-heading .eyebrow {
  margin-bottom: 8px;
}

main:has(.tariffs-existing-section) .tariffs-hosting-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

main:has(.tariffs-existing-section) .tariffs-hosting-heading > p:last-child,
main:has(.tariffs-existing-section) .tariffs-hosting-card > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

main:has(.tariffs-existing-section) .tariffs-hosting-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

main:has(.tariffs-existing-section) .tariffs-hosting-card {
  min-width: 0;
  overflow: hidden;
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

main:has(.tariffs-existing-section) .tariffs-hosting-card summary {
  position: relative;
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 7px;
  padding: 20px 60px 20px 22px;
  cursor: pointer;
}

main:has(.tariffs-existing-section) .tariffs-hosting-card summary::marker {
  content: "";
}

main:has(.tariffs-existing-section) .tariffs-hosting-card summary::-webkit-details-marker {
  display: none;
}

main:has(.tariffs-existing-section) .tariffs-hosting-card summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
}

main:has(.tariffs-existing-section) .tariffs-hosting-card[open] summary::after {
  content: "−";
}

main:has(.tariffs-existing-section) .tariffs-hosting-card summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(.tariffs-existing-section) .tariffs-hosting-label {
  display: block;
  color: #79591f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

main:has(.tariffs-existing-section) .tariffs-hosting-price {
  display: block;
  color: var(--color-text-dark);
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  font-weight: 700;
  line-height: 1.25;
}

main:has(.tariffs-existing-section) .tariffs-hosting-card > p {
  padding: 0 22px 20px;
}

main:has(.tariffs-existing-section) .tariffs-hosting-details {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

main:has(.tariffs-existing-section) .tariffs-hosting-details summary {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 13px 58px 13px 18px;
  cursor: pointer;
  color: var(--color-text-dark);
  background: var(--color-cream);
  font-weight: 700;
}

main:has(.tariffs-existing-section) .tariffs-hosting-details summary::marker {
  content: "";
}

main:has(.tariffs-existing-section) .tariffs-hosting-details summary::-webkit-details-marker {
  display: none;
}

main:has(.tariffs-existing-section) .tariffs-hosting-details summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
}

main:has(.tariffs-existing-section) .tariffs-hosting-details[open] summary::after {
  content: "−";
}

main:has(.tariffs-existing-section) .tariffs-hosting-details summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(.tariffs-existing-section) .tariffs-hosting-details-content {
  padding: 0 18px 18px;
}

main:has(.tariffs-existing-section) .tariffs-hosting-notice {
  margin: 0;
  padding: 16px 18px;
  color: var(--color-text-dark);
  background: rgba(198, 161, 91, 0.1);
  border-left: 3px solid var(--color-gold);
  font-weight: 600;
}

main:has(.tariffs-existing-section) .tariffs-hosting-ownership {
  margin: 12px 0 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  main:has(.tariffs-existing-section) .tariffs-hosting-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(.tariffs-existing-section) .tariffs-hosting-card summary {
    min-height: 84px;
    padding: 17px 56px 17px 19px;
  }

  main:has(.tariffs-existing-section) .tariffs-hosting-card > p {
    padding: 0 19px 18px;
  }
}

main:has(.tariffs-existing-section) > .final-cta {
  position: relative;
  z-index: 1;
  padding-top: calc(clamp(36px, 3.5vw, 44px) + 30px);
  padding-bottom: 0;
}

main:has(.tariffs-existing-section) > .final-cta::before {
  top: -1px;
  background: var(--color-cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

main:has(.tariffs-existing-section) .final-cta-inner {
  gap: 28px;
}

/* Guide de choix des pages */
main:has(.pages-guide-intro) > .section {
  padding-block: clamp(40px, 4vw, 52px);
}

main:has(.pages-guide-intro) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(18px, 2vw, 24px);
}

main:has(.pages-guide-intro) > .section:nth-child(2) {
  position: relative;
  z-index: 1;
  padding-top: clamp(18px, 2.4vw, 28px);
}

main:has(.pages-guide-intro) > .section:nth-child(2)::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(.pages-guide-intro) > .section:nth-child(2) > .container {
  position: relative;
  z-index: 1;
}

main:has(.pages-guide-intro) > .html-section:first-child .section-heading,
main:has(.pages-guide-intro) > .html-section:first-child h1 {
  margin-bottom: 0;
}

main:has(.pages-guide-intro) > .final-cta {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, 4vw, 52px);
  padding-bottom: 0;
}

main:has(.pages-guide-intro) > .final-cta::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

main:has(.pages-guide-intro) > .final-cta > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  main:has(.pages-guide-intro) > .section:nth-child(2)::before {
    top: -18px;
    height: 18px;
  }

  main:has(.pages-guide-intro) > .final-cta::before {
    height: 18px;
  }
}

.pages-guide-intro {
  max-width: 820px;
}

.pages-guide-intro-note {
  margin-top: 30px;
  padding-left: 22px;
  color: var(--color-gold-light) !important;
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-title);
  font-size: 1.18rem !important;
}

.pages-guide-essential-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pages-guide-essential-card {
  padding: clamp(28px, 4vw, 40px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 48px rgba(11, 11, 11, 0.06);
}

.pages-guide-essential-card > span {
  display: block;
  margin-bottom: 24px;
  color: #79591f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pages-guide-essential-card h3 {
  margin-bottom: 16px;
}

.pages-guide-essential-card p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

main:has(.pages-guide-intro) .pages-guide-essential-grid {
  align-items: start;
  gap: 14px;
}

main:has(.pages-guide-intro) .pages-guide-essential-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-medium);
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary {
  position: relative;
  display: grid;
  min-height: 78px;
  align-content: center;
  gap: 4px;
  padding: 18px 76px 18px 20px;
  cursor: pointer;
  list-style: none;
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary::marker {
  content: "";
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary::-webkit-details-marker {
  display: none;
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  content: "";
  background: rgba(198, 161, 91, 0.05);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 33px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid #79591f;
  border-bottom: 1.5px solid #79591f;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms ease;
}

main:has(.pages-guide-intro) .pages-guide-essential-card[open] summary {
  color: var(--color-gold-light);
  background: var(--color-black);
}

main:has(.pages-guide-intro) .pages-guide-essential-card[open] summary::after {
  background: rgba(216, 188, 122, 0.06);
  border-color: var(--color-gold-light);
}

main:has(.pages-guide-intro) .pages-guide-essential-card[open] summary::before {
  border-color: var(--color-gold-light);
  transform: translateY(-35%) rotate(225deg);
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary > span {
  margin-bottom: 0;
  color: #79591f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

main:has(.pages-guide-intro) .pages-guide-essential-card[open] summary > span {
  color: var(--color-gold-light);
}

main:has(.pages-guide-intro) .pages-guide-essential-card summary h3 {
  margin-bottom: 0;
}

main:has(.pages-guide-intro) .pages-guide-essential-card > p {
  padding: 0 20px 20px;
}

@media (max-width: 600px) {
  main:has(.pages-guide-intro) .pages-guide-essential-card summary {
    min-height: 70px;
    padding: 15px 60px 15px 16px;
  }

  main:has(.pages-guide-intro) .pages-guide-essential-card summary::after {
    right: 16px;
    width: 30px;
    height: 30px;
  }

  main:has(.pages-guide-intro) .pages-guide-essential-card summary::before {
    right: 27px;
  }

  main:has(.pages-guide-intro) .pages-guide-essential-card > p {
    padding: 0 16px 16px;
  }
}

.pages-guide-essential-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 34px;
  margin-top: 38px;
  text-align: center;
  flex-wrap: wrap;
}

.pages-guide-essential-note p {
  margin-bottom: 0;
}

.pages-guide-essential-note a {
  color: #79591f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pages-guide-table-wrap {
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 48px rgba(11, 11, 11, 0.06);
}

.pages-guide-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

.pages-guide-table th,
.pages-guide-table td {
  padding: 20px;
  border-bottom: 1px solid var(--color-border-dark);
  text-align: left;
  vertical-align: top;
}

.pages-guide-table thead th {
  color: var(--color-gold-light);
  background: var(--color-black);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pages-guide-table tbody th {
  color: #79591f;
  font-family: var(--font-title);
  font-size: 1.08rem;
}

.pages-guide-table tbody td {
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.pages-guide-table tbody tr:last-child th,
.pages-guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.pages-guide-table-note {
  max-width: 780px;
  margin: 30px auto 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  text-align: center;
}

.pages-guide-categories {
  display: grid;
  gap: 16px;
}

.pages-guide-category {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

.pages-guide-category summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  padding: 20px 82px 20px 28px;
  cursor: pointer;
  flex-direction: column;
  list-style: none;
}

.pages-guide-category summary span {
  align-self: flex-start;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
}

.pages-guide-category summary small {
  align-self: flex-start;
  margin-top: 4px;
  color: var(--color-text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pages-guide-category summary::marker {
  content: "";
}

.pages-guide-category summary::-webkit-details-marker {
  display: none;
}

.pages-guide-category summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  content: "";
  background: rgba(198, 161, 91, 0.05);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pages-guide-category summary::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 41px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid #79591f;
  border-bottom: 1.5px solid #79591f;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms ease;
}

.pages-guide-category[open] summary {
  color: var(--color-gold-light);
  background: var(--color-black);
}

.pages-guide-category[open] summary small {
  color: var(--color-grey);
}

.pages-guide-category[open] summary::after {
  background: rgba(216, 188, 122, 0.06);
  border-color: var(--color-gold-light);
}

.pages-guide-category[open] summary::before {
  border-color: var(--color-gold-light);
  transform: translateY(-35%) rotate(225deg);
}

.pages-guide-category-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--color-cream);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pages-guide-page-card {
  min-width: 0;
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

.pages-guide-page-card h3 {
  margin-bottom: 14px;
  color: #79591f;
  font-size: 1.2rem;
}

.pages-guide-page-card > p {
  margin-bottom: 14px;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.pages-guide-page-card > strong {
  color: #79591f;
  font-size: 0.82rem;
}

.pages-guide-page-card dl {
  display: grid;
  gap: 12px;
}

.pages-guide-page-card dl div {
  display: grid;
  gap: 4px;
}

.pages-guide-page-card dt {
  color: #79591f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pages-guide-page-card dd {
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

.pages-guide-trades {
  display: grid;
  gap: 16px;
}

.pages-guide-trade {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

.pages-guide-trade summary {
  position: relative;
  padding: 24px 82px 24px 28px;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  list-style: none;
}

.pages-guide-trade summary::marker {
  content: "";
}

.pages-guide-trade summary::-webkit-details-marker {
  display: none;
}

.pages-guide-trade summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  content: "";
  background: rgba(198, 161, 91, 0.05);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pages-guide-trade summary::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 41px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid #79591f;
  border-bottom: 1.5px solid #79591f;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms ease;
}

.pages-guide-trade[open] summary {
  color: var(--color-gold-light);
  background: var(--color-black);
}

.pages-guide-trade[open] summary::after {
  background: rgba(216, 188, 122, 0.06);
  border-color: var(--color-gold-light);
}

.pages-guide-trade[open] summary::before {
  border-color: var(--color-gold-light);
  transform: translateY(-35%) rotate(225deg);
}

.pages-guide-trade-content {
  display: grid;
  gap: 30px 24px;
  padding: 30px 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pages-guide-trade-content h3 {
  margin-bottom: 16px;
  color: #79591f;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pages-guide-trade-content ul {
  display: grid;
  gap: 10px;
}

.pages-guide-trade-content li {
  position: relative;
  padding-left: 18px;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.pages-guide-trade-content li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pages-guide-trade-content > p {
  margin-bottom: 0;
  padding-top: 24px;
  color: var(--color-text-soft);
  border-top: 1px solid var(--color-border-dark);
  grid-column: 1 / -1;
}

.pages-guide-trade-content-wide {
  grid-column: 1 / -1;
}

.pages-guide-trade-content-wide p:last-child {
  margin-bottom: 0;
}

.pages-guide-reassurance {
  display: grid;
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
  padding: clamp(32px, 6vw, 60px);
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 18px 48px rgba(11, 11, 11, 0.06);
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
}

.pages-guide-reassurance h2 {
  margin-bottom: 20px;
}

.pages-guide-reassurance div > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.pages-guide-reassurance-highlight {
  margin-bottom: 0;
  padding-left: 24px;
  color: #79591f;
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
}

.pages-guide-cta-buttons {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

/* Fonctionnement */
.process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  min-height: 235px;
  padding: 30px;
  border-top: 1px solid var(--color-border-dark);
  border-right: 1px solid var(--color-border-dark);
}

.process-step:nth-child(4n) {
  border-right: 0;
}

.process-step:nth-child(n + 5) {
  border-bottom: 1px solid var(--color-border-dark);
}

.process-step > span {
  display: block;
  margin-bottom: 46px;
  color: #9a7228;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step p {
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

main:has(> #fonctionnement) .process-grid {
  align-items: start;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

main:has(> #fonctionnement) .process-step-item {
  min-width: 0;
}

main:has(> #fonctionnement) .process-step {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 32px rgba(11, 11, 11, 0.05);
}

main:has(> #fonctionnement) .process-step summary {
  position: relative;
  display: grid;
  min-height: 78px;
  align-content: center;
  gap: 4px;
  padding: 18px 62px 18px 20px;
  cursor: pointer;
  list-style: none;
}

main:has(> #fonctionnement) .process-step summary::marker {
  content: "";
}

main:has(> #fonctionnement) .process-step summary::-webkit-details-marker {
  display: none;
}

main:has(> #fonctionnement) .process-step summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

main:has(> #fonctionnement) .process-step[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(> #fonctionnement) .process-step summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(> #fonctionnement) .process-step summary > span {
  margin-bottom: 0;
  color: #9a7228;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

main:has(> #fonctionnement) .process-step summary h3 {
  margin-bottom: 0;
}

main:has(> #fonctionnement) .process-step > p {
  padding: 0 20px 20px;
}

main:has(> #fonctionnement) .process-step-summary-with-icon {
  min-height: 142px;
  padding-right: 208px;
}

main:has(> #fonctionnement) .process-step-icon {
  position: absolute;
  top: 50%;
  right: 62px;
  width: 125px;
  height: 120px;
  max-width: none;
  margin: 0;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: translateY(-50%);
}

@media (max-width: 940px) {
  main:has(> #fonctionnement) .process-step-summary-with-icon {
    min-height: 122px;
    padding-right: 180px;
  }

  main:has(> #fonctionnement) .process-step-icon {
    width: 105px;
    height: 100px;
  }
}

@media (max-width: 720px) {
  main:has(> #fonctionnement) > #fonctionnement::before {
    top: -18px;
    height: 18px;
  }

  main:has(> #fonctionnement) > .final-cta::before {
    height: 18px;
  }

  main:has(> #fonctionnement) .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(> #fonctionnement) .process-step summary {
    min-height: 70px;
    padding: 15px 54px 15px 16px;
  }

  main:has(> #fonctionnement) .process-step summary::after {
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  main:has(> #fonctionnement) .process-step > p {
    padding: 0 16px 16px;
  }

  main:has(> #fonctionnement) .process-step-summary-with-icon {
    min-height: 104px;
    padding-right: 142px;
  }

  main:has(> #fonctionnement) .process-step-icon {
    right: 50px;
    width: 84px;
    height: 80px;
  }
}

/* Réalisation */
.project-section {
  padding-top: clamp(32px, calc(10vw - 50px), 88px);
  background:
    radial-gradient(circle at 16% 30%, rgba(198, 161, 91, 0.1), transparent 27%),
    var(--color-black);
}

.project-grid {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  grid-template-columns: minmax(0, 1fr);
}

.project-gallery {
  display: grid;
  gap: 20px;
}

.project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-dark);
}

.project-gallery-main {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-gallery-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-gallery-card {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-gallery-card:last-child {
  width: 78%;
  height: auto;
  justify-self: center;
  aspect-ratio: auto;
  object-fit: contain;
}

.project-link-row {
  display: flex;
  justify-content: center;
}

.project-content {
  width: min(100%, 880px);
  margin-inline: auto;
}

.project-content h2 {
  color: var(--color-white);
}

.project-content > p:not(.eyebrow) {
  color: var(--color-grey);
  font-size: 1.03rem;
}

.project-details {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.project-details div {
  display: grid;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 110px 1fr;
}

.project-details dt {
  color: var(--color-gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-details dd {
  color: #e4e4e4;
}

/* Pédagogie */
.learning-layout {
  display: grid;
  align-items: start;
  gap: clamp(50px, 7vw, 90px);
  grid-template-columns: 0.9fr 1.1fr;
}

.learning-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  margin-bottom: 0;
}

.learning-quote {
  margin: 30px 0 0;
  padding: 21px 24px;
  color: var(--color-text-dark);
  background: var(--color-white);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  font-family: var(--font-title);
  font-size: 1.16rem;
  line-height: 1.5;
}

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

.learning-card {
  min-height: 170px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

.learning-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
}

.learning-card p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.understand-url-card {
  min-width: 0;
  padding: clamp(24px, 4vw, 34px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  grid-column: 1 / -1;
}

.understand-url-heading {
  margin-bottom: 10px;
  color: #79591f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.understand-url-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.understand-url-card > p:not(.understand-url-heading):not(.understand-url-highlight):not(.understand-url-note) {
  margin-bottom: 12px;
  color: var(--color-text-soft);
}

.understand-url-examples {
  display: grid;
  gap: 10px;
  margin-block: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.understand-url-example {
  min-width: 0;
  padding: 14px 16px;
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-small);
}

.understand-url-example strong,
.understand-url-example span {
  display: block;
}

.understand-url-example strong {
  margin-bottom: 3px;
  color: #79591f;
  font-size: 0.8rem;
}

.understand-url-example span {
  overflow-wrap: anywhere;
  color: var(--color-text-dark);
  font-size: 0.85rem;
}

.understand-url-highlight {
  margin-bottom: 12px;
  padding-left: 16px;
  color: #79591f;
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: 700;
}

.understand-url-note {
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.understand-guide-section {
  padding-block: clamp(64px, 8vw, 92px);
}

.understand-guide-card {
  display: grid;
  align-items: center;
  gap: 28px 44px;
  padding: clamp(28px, 5vw, 46px);
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  grid-template-columns: minmax(0, 1fr) auto;
}

.understand-guide-content {
  max-width: 720px;
}

.understand-guide-content .eyebrow {
  margin-bottom: 12px;
}

.understand-guide-content h2 {
  margin-bottom: 16px;
  color: var(--color-white);
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

.understand-guide-content > p:not(.eyebrow) {
  margin-bottom: 10px;
  color: var(--color-grey);
}

.understand-guide-content > p:last-child {
  margin-bottom: 0;
}

.understand-guide-button {
  max-width: 300px;
  text-align: center;
}

main:has(> #comprendre) .learning-layout {
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
}

main:has(> #comprendre) .learning-layout .section-heading {
  position: static;
  max-width: 780px;
}

main:has(> #comprendre) .learning-quote {
  margin-top: 22px;
  padding: 18px 22px;
}

main:has(> #comprendre) .learning-grid {
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main:has(> #comprendre) .learning-card {
  min-width: 0;
  min-height: 0;
  padding: 19px;
}

main:has(> #comprendre) .learning-card summary {
  position: relative;
  display: grid;
  align-items: center;
  gap: 5px 12px;
  padding-right: 42px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: minmax(0, 1fr);
}

main:has(> #comprendre) .learning-card summary::marker {
  content: "";
}

main:has(> #comprendre) .learning-card summary::-webkit-details-marker {
  display: none;
}

main:has(> #comprendre) .learning-card summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  content: "+";
  color: var(--color-black);
  background: var(--color-gold);
  border: 1px solid rgba(121, 89, 31, 0.24);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(198, 161, 91, 0.18);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

main:has(> #comprendre) .learning-card[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(> #comprendre) .learning-card-number {
  display: block;
  color: #9c772f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

main:has(> #comprendre) .learning-card-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

main:has(> #comprendre) .learning-card > p {
  margin-top: 8px;
}

main:has(> #comprendre) .learning-card-responsive {
  background: linear-gradient(135deg, var(--color-white), #fbf6eb);
  border-color: rgba(198, 161, 91, 0.34);
}

main:has(> #comprendre) .learning-card-responsive summary {
  grid-template-columns: minmax(0, 1fr) 138px;
}

main:has(> #comprendre) .learning-card-responsive .learning-card-number,
main:has(> #comprendre) .learning-card-responsive .learning-card-title {
  grid-column: 1;
}

main:has(> #comprendre) .learning-card-responsive .content-icon {
  width: 138px;
  height: 132px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  align-self: center;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: contrast(1.06) saturate(1.04);
  transform: translateX(-2px);
  grid-row: 1 / span 2;
  grid-column: 2;
}

main:has(> #comprendre) .understand-url-card {
  display: grid;
  gap: 10px 30px;
  padding: 28px;
  background: linear-gradient(135deg, var(--color-white), #fbf8f1);
  border-color: rgba(198, 161, 91, 0.28);
  box-shadow: 0 18px 48px rgba(11, 11, 11, 0.06);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

main:has(> #comprendre) .understand-url-heading,
main:has(> #comprendre) .understand-url-card h3,
main:has(> #comprendre) .understand-url-highlight,
main:has(> #comprendre) .understand-url-note {
  grid-column: 1 / -1;
}

main:has(> #comprendre) .understand-url-card h3 {
  margin-bottom: 8px;
}

main:has(> #comprendre) .understand-url-card > p:not(.understand-url-heading):not(.understand-url-highlight):not(.understand-url-note) {
  margin-bottom: 0;
  grid-column: 1;
}

main:has(> #comprendre) .understand-url-examples {
  align-self: stretch;
  margin: 0;
  grid-row: 3 / span 3;
  grid-column: 2;
}

main:has(> #comprendre) .understand-url-example {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
}

main:has(> #comprendre) .understand-url-highlight {
  margin-top: 8px;
  margin-bottom: 0;
}

main:has(> #comprendre) .understand-url-card {
  display: block;
  padding: 0;
  overflow: hidden;
}

main:has(> #comprendre) .understand-url-card summary {
  position: relative;
  display: grid;
  min-height: 116px;
  align-content: center;
  gap: 6px;
  padding: 22px 72px 22px 24px;
  cursor: pointer;
  list-style: none;
}

main:has(> #comprendre) .understand-url-card summary::marker {
  content: "";
}

main:has(> #comprendre) .understand-url-card summary::-webkit-details-marker {
  display: none;
}

main:has(> #comprendre) .understand-url-card summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 180ms ease;
}

main:has(> #comprendre) .understand-url-card[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(> #comprendre) .understand-url-card summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(> #comprendre) .understand-url-card summary .understand-url-heading {
  margin-bottom: 0;
}

main:has(> #comprendre) .understand-url-title {
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
}

main:has(> #comprendre) .understand-url-summary-text {
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

main:has(> #comprendre) .understand-url-content {
  display: grid;
  gap: 16px 24px;
  padding: 0 24px 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

main:has(> #comprendre) .understand-url-explanation {
  display: grid;
  align-content: start;
  gap: 12px;
}

main:has(> #comprendre) .understand-url-explanation p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

main:has(> #comprendre) .understand-url-content .understand-url-examples {
  margin: 0;
  grid-row: auto;
  grid-column: 2;
}

main:has(> #comprendre) .understand-url-content .understand-url-highlight,
main:has(> #comprendre) .understand-url-content .understand-url-note {
  grid-column: 1 / -1;
}

@media (max-width: 940px) {
  main:has(> #comprendre) .understand-url-content {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(> #comprendre) .understand-url-content .understand-url-examples {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  main:has(> #comprendre) .understand-url-card summary {
    min-height: 108px;
    padding: 18px 54px 18px 16px;
  }

  main:has(> #comprendre) .understand-url-card summary::after {
    right: 14px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  main:has(> #comprendre) .understand-url-title {
    font-size: 1.3rem;
  }

  main:has(> #comprendre) .understand-url-content {
    padding: 0 16px 18px;
  }
}

main:has(> #comprendre) .understand-guide-card {
  gap: 24px 36px;
  padding: clamp(26px, 3.5vw, 34px);
}

@media (min-width: 601px) {
  main:has(> #comprendre) .learning-card > p {
    display: block;
  }
}

@media (max-width: 940px) {
  main:has(> #comprendre) .learning-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main:has(> #comprendre) .understand-url-card {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(> #comprendre) .understand-url-card > *,
  main:has(> #comprendre) .understand-url-examples {
    grid-row: auto;
    grid-column: 1;
  }

  main:has(> #comprendre) .learning-card-responsive summary {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  main:has(> #comprendre) .learning-card-responsive .content-icon {
    width: 112px;
    height: 108px;
  }
}

@media (max-width: 600px) {
  main:has(> #comprendre) .learning-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(> #comprendre) .learning-card {
    padding: 0;
  }

  main:has(> #comprendre) .learning-card summary,
  main:has(> #comprendre) .learning-card-responsive summary {
    position: relative;
    min-height: 68px;
    gap: 2px 10px;
    padding: 13px 48px 13px 16px;
    cursor: pointer;
    grid-template-columns: auto minmax(0, 1fr);
  }

  main:has(> #comprendre) .learning-card summary::after {
    right: 14px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  main:has(> #comprendre) .learning-card summary:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: -3px;
    border-radius: var(--radius-medium);
  }

  main:has(> #comprendre) .learning-card-number {
    margin: 0;
    grid-row: 1;
    grid-column: 1;
  }

  main:has(> #comprendre) .learning-card-title {
    grid-row: 1;
    grid-column: 2;
  }

  main:has(> #comprendre) .learning-card > p {
    margin: 0;
    padding: 0 48px 15px 16px;
  }

  main:has(> #comprendre) .learning-card-responsive summary {
    min-height: 96px;
    padding-right: 116px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  main:has(> #comprendre) .learning-card-responsive .content-icon {
    position: absolute;
    top: 50%;
    right: 36px;
    width: 86px;
    height: 84px;
    transform: translateY(-50%);
  }

  main:has(> #comprendre) .learning-card-responsive > p {
    padding-right: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  main:has(> #comprendre) .learning-card summary::after {
    transition: none;
  }
}

/* Comparaison HTML, WordPress et Wix */
main:has(.comparison-hero) > .section:not([hidden]) {
  padding-block: clamp(40px, 4vw, 52px);
}

main:has(.comparison-hero) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(18px, 2vw, 24px);
}

main:has(.comparison-hero) > .comparison-overview {
  position: relative;
  z-index: 1;
  padding-top: clamp(18px, 2.4vw, 28px);
  padding-bottom: clamp(22px, 2.2vw, 28px);
}

main:has(.comparison-hero) > .comparison-overview::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(.comparison-hero) > .comparison-overview > .container {
  position: relative;
  z-index: 1;
}

main:has(.comparison-hero) > .comparison-accordion-section {
  padding-top: clamp(22px, 2.2vw, 28px);
}

main:has(.comparison-hero) > .html-section:first-child .section-heading,
main:has(.comparison-hero) > .html-section:first-child h1 {
  margin-bottom: 0;
}

main:has(.comparison-hero) > .final-cta {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, 4vw, 52px);
  padding-bottom: 0;
}

main:has(.comparison-hero) > .final-cta::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 24px;
  content: "";
  pointer-events: none;
  background: var(--color-white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

main:has(.comparison-hero) > .final-cta > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  main:has(.comparison-hero) > .comparison-overview::before {
    top: -18px;
    height: 18px;
  }

  main:has(.comparison-hero) > .final-cta::before {
    height: 14px;
  }
}

.comparison-section {
  padding-block: clamp(68px, 8vw, 100px);
}

.comparison-hero {
  max-width: 850px;
}

.comparison-hero-note {
  margin-top: 28px;
  padding-left: 22px;
  color: var(--color-gold-light) !important;
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-title);
  font-size: 1.16rem !important;
}

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

.comparison-overview-card {
  padding: clamp(24px, 4vw, 34px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
}

.comparison-overview-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.comparison-overview-card > p {
  margin-bottom: 14px;
  color: var(--color-text-soft);
}

.comparison-overview-card .comparison-inline-list {
  margin-bottom: 0;
}

.comparison-overview-note {
  max-width: 850px;
  margin: 28px auto 0;
  color: var(--color-text-soft);
  text-align: center;
}

.comparison-accordion-section {
  padding-top: 0;
}

.comparison-accordions {
  display: grid;
  gap: 14px;
}

.comparison-accordion {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

.comparison-accordion summary {
  position: relative;
  min-height: 76px;
  padding: 20px 82px 20px 24px;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  list-style: none;
}

.comparison-accordion summary::marker {
  content: "";
}

.comparison-accordion summary::-webkit-details-marker {
  display: none;
}

.comparison-accordion summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  content: "";
  background: rgba(198, 161, 91, 0.05);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.comparison-accordion summary::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 37px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid #79591f;
  border-bottom: 1.5px solid #79591f;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms ease;
}

.comparison-accordion[open] summary {
  color: var(--color-gold-light);
  background: var(--color-black);
}

.comparison-accordion[open] summary::after {
  background: rgba(216, 188, 122, 0.06);
  border-color: var(--color-gold-light);
}

.comparison-accordion[open] summary::before {
  border-color: var(--color-gold-light);
  transform: translateY(-35%) rotate(225deg);
}

.comparison-accordion-content {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--color-cream);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-accordion-content > div,
.comparison-accordion-content > article {
  min-width: 0;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
}

.comparison-accordion-content h3 {
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
}

.comparison-accordion-wide {
  grid-column: 1 / -1;
}

.comparison-accordion-table {
  padding: 20px;
  background: var(--color-cream);
}

.comparison-split,
.comparison-choice-grid,
.comparison-explanation-grid {
  display: grid;
  align-items: start;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-copy p:not(.eyebrow),
.comparison-choice-card > p:not(.eyebrow) {
  color: var(--color-text-soft);
}

.comparison-analogy {
  margin: 28px 0 0;
  padding: 20px 22px;
  background: var(--color-white);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  font-family: var(--font-title);
  line-height: 1.5;
}

.comparison-analogy-wide {
  max-width: 900px;
  margin: -20px 0 34px;
  background: var(--color-cream);
}

.comparison-feature-list {
  display: grid;
  gap: 10px;
}

.comparison-diagnostic-list {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-feature-list li {
  position: relative;
  padding: 12px 14px 12px 34px;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-small);
}

.comparison-feature-list li::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.comparison-note {
  margin: 22px 0 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.comparison-two-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card,
.comparison-choice-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
}

.comparison-card h3 {
  margin-bottom: 22px;
  font-family: var(--font-title);
  font-size: 1.45rem;
}

.comparison-dark-card {
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
}

.comparison-dark-card h2 {
  color: var(--color-white);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.comparison-dark-card > p:not(.eyebrow),
.comparison-dark-card blockquote {
  color: var(--color-grey);
}

.comparison-dark-card blockquote {
  margin: 24px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--color-gold);
}

.comparison-inline-list {
  display: flex;
  gap: 8px;
  margin: 20px 0 24px;
  flex-wrap: wrap;
}

.comparison-inline-list li {
  padding: 7px 11px;
  color: var(--color-grey);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8rem;
}

.comparison-feature-list-dark li {
  color: var(--color-grey);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-border);
}

.comparison-highlight-dark,
.comparison-highlight {
  margin-bottom: 0;
  padding-left: 20px;
  border-left: 3px solid var(--color-gold);
  font-family: var(--font-title);
  font-size: 1.08rem;
}

.comparison-highlight-dark {
  color: var(--color-gold-light) !important;
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

.comparison-table th,
.comparison-table td {
  padding: 19px 20px;
  border-bottom: 1px solid var(--color-border-dark);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: var(--color-gold-light);
  background: var(--color-black);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: #79591f;
  font-family: var(--font-title);
}

.comparison-table tbody td {
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-choice-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
}

.comparison-inline-list-light li {
  color: var(--color-text-soft);
  background: var(--color-cream);
  border-color: var(--color-border-dark);
}

.comparison-highlight {
  color: #79591f !important;
}

.comparison-reassurance {
  display: grid;
  align-items: center;
  gap: clamp(28px, 6vw, 64px);
  padding: clamp(30px, 5vw, 50px);
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
}

.comparison-reassurance h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.comparison-reassurance div > p:last-child {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.comparison-cta-buttons {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

/* Finalisation ciblée de la comparaison HTML / WordPress-Wix */
main:has(.comparison-hero) .comparison-overview-grid {
  align-items: start;
  gap: 16px;
}

main:has(.comparison-hero) .comparison-overview-card {
  min-height: 0;
  padding: 22px;
}

main:has(.comparison-hero) .comparison-overview-card:first-child {
  background: linear-gradient(135deg, var(--color-white), #fbf6eb);
  border-color: rgba(198, 161, 91, 0.55);
  box-shadow: 0 14px 36px rgba(198, 161, 91, 0.1);
}

main:has(.comparison-hero) .comparison-overview-card:first-child h3 {
  color: #6f501b;
}

main:has(.comparison-hero) .comparison-overview-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.58);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-small);
}

main:has(.comparison-hero) .comparison-accordions {
  align-items: start;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

main:has(.comparison-hero) .comparison-accordion {
  min-width: 0;
}

main:has(.comparison-hero) .comparison-accordion[open] {
  border-color: rgba(198, 161, 91, 0.55);
  box-shadow: 0 14px 36px rgba(11, 11, 11, 0.06);
  grid-column: 1 / -1;
}

main:has(.comparison-hero) .comparison-accordion summary {
  min-height: 70px;
  padding: 18px 68px 18px 20px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

main:has(.comparison-hero) .comparison-accordion summary::after {
  right: 20px;
  width: 30px;
  height: 30px;
}

main:has(.comparison-hero) .comparison-accordion summary::before {
  right: 31px;
}

main:has(.comparison-hero) .comparison-accordion summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(.comparison-hero) .comparison-accordion-content {
  gap: 12px;
  padding: 16px;
}

main:has(.comparison-hero) .comparison-accordion-content > div,
main:has(.comparison-hero) .comparison-accordion-content > article {
  padding: 18px;
}

main:has(.comparison-hero) .comparison-accordion-table {
  padding: 16px;
}

main:has(.comparison-hero) .comparison-reassurance {
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(28px, 4vw, 42px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 161, 91, 0.14), transparent 34%),
    var(--color-black);
  border-color: rgba(198, 161, 91, 0.42);
  box-shadow: 0 18px 48px rgba(11, 11, 11, 0.14);
}

main:has(.comparison-hero) .comparison-reassurance .eyebrow {
  color: var(--color-gold-light);
}

main:has(.comparison-hero) .comparison-reassurance h2 {
  color: var(--color-white);
}

main:has(.comparison-hero) .comparison-reassurance div > p:last-child {
  color: var(--color-grey);
}

main:has(.comparison-hero) .comparison-reassurance .comparison-highlight {
  color: var(--color-gold-light) !important;
}

@media (max-width: 720px) {
  main:has(.comparison-hero) .comparison-overview-grid,
  main:has(.comparison-hero) .comparison-accordions {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison-diagnostic-list {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(.comparison-hero) .comparison-accordion[open] {
    grid-column: auto;
  }

  main:has(.comparison-hero) .comparison-accordion summary {
    min-height: 66px;
    padding: 16px 58px 16px 16px;
  }

  main:has(.comparison-hero) .comparison-accordion summary::after {
    right: 16px;
    width: 26px;
    height: 26px;
  }

  main:has(.comparison-hero) .comparison-accordion summary::before {
    right: 25px;
  }

  main:has(.comparison-hero) .comparison-overview-card {
    padding: 20px;
  }
}

/* Confiance */
.confidence-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.confidence-grid li {
  position: relative;
  min-height: 140px;
  padding: 48px 22px 22px;
  background: var(--color-cream);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  font-size: 0.92rem;
  font-weight: 600;
}

.confidence-grid li::before {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 28px;
  height: 2px;
  content: "";
  background: var(--color-gold);
}

/* FAQ */
main:has(> #faq) > .section {
  padding-block: clamp(40px, 4vw, 52px);
}

main:has(> #faq) > .html-section:first-child {
  padding-top: clamp(32px, 3vw, 42px);
  padding-bottom: clamp(18px, 2vw, 24px);
}

main:has(> #faq) > #faq {
  position: relative;
  z-index: 1;
  padding-top: clamp(18px, 2.4vw, 28px);
}

main:has(> #faq) > #faq::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(> #faq) > #faq > .container {
  position: relative;
  z-index: 1;
}

main:has(> #faq) > .html-section:first-child .section-heading,
main:has(> #faq) > .html-section:first-child h1 {
  margin-bottom: 0;
}

main:has(> #faq) > .final-cta {
  position: relative;
  z-index: 1;
  padding-top: clamp(40px, 4vw, 52px);
  padding-bottom: 0;
}

main:has(> #faq) > .final-cta::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

main:has(> #faq) > .final-cta > .container {
  position: relative;
  z-index: 1;
}

main:has(> #faq) .faq-layout {
  gap: clamp(32px, 4vw, 48px);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(46px, 8vw, 100px);
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  margin-bottom: 0;
}

.faq-accordion {
  border-top: 1px solid var(--color-border-dark);
}

.faq-item {
  border-bottom: 1px solid var(--color-border-dark);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 4px;
  color: var(--color-text-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.faq-question:hover {
  color: #8a6626;
}

.faq-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(11, 11, 11, 0.18);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 48px 23px 4px;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

main:has(> #faq) .faq-layout {
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
}

main:has(> #faq) .faq-layout .section-heading {
  position: static;
  max-width: 780px;
}

main:has(> #faq) .faq-accordion {
  display: grid;
  align-items: start;
  gap: 14px;
  border-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

main:has(> #faq) .faq-item {
  min-width: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 28px rgba(11, 11, 11, 0.04);
}

main:has(> #faq) .faq-item[open] {
  border-color: rgba(198, 161, 91, 0.55);
  box-shadow: 0 14px 36px rgba(11, 11, 11, 0.06);
  grid-column: 1 / -1;
}

main:has(> #faq) .faq-summary {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--color-text-dark);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  list-style: none;
}

main:has(> #faq) .faq-summary:hover {
  color: #8a6626;
}

main:has(> #faq) .faq-summary::marker {
  content: "";
}

main:has(> #faq) .faq-summary::-webkit-details-marker {
  display: none;
}

main:has(> #faq) .faq-summary:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: -3px;
}

main:has(> #faq) .faq-icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

main:has(> #faq) .faq-item[open] .faq-summary {
  color: #79591f;
  background: rgba(198, 161, 91, 0.06);
}

main:has(> #faq) .faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

main:has(> #faq) .faq-answer {
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(198, 161, 91, 0.24);
}

@media (max-width: 720px) {
  main:has(> #faq) > #faq::before {
    top: -18px;
    height: 18px;
  }

  main:has(> #faq) > .final-cta::before {
    height: 18px;
  }

  main:has(> #faq) .faq-accordion {
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(> #faq) .faq-item[open] {
    grid-column: auto;
  }

  main:has(> #faq) .faq-summary {
    min-height: 68px;
    gap: 14px;
    padding: 16px;
  }

  main:has(> #faq) .faq-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  main:has(> #faq) .faq-answer {
    padding: 16px;
  }
}

/* Appel à l'action */
.final-cta {
  padding-block: clamp(78px, 9vw, 120px);
  background:
    radial-gradient(circle at 85% 50%, rgba(198, 161, 91, 0.16), transparent 35%),
    var(--color-black);
}

.final-cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.final-cta-inner > div:first-child {
  max-width: 720px;
}

.final-cta h2 {
  color: var(--color-white);
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--color-grey);
  font-size: 1.03rem;
}

.contact-placeholder {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-placeholder p {
  margin-bottom: 0;
  color: #cfcfcf;
  font-size: 0.88rem;
}

/* Contact : préparation du projet */
.html-section:has(+ .contact-prep-intro) {
  padding-bottom: clamp(10px, calc(10vw - 72px), 66px);
}

.html-section:has(+ .contact-prep-intro) .section-heading {
  margin-bottom: 40px;
}

.contact-prep-intro {
  padding-top: clamp(12px, 1.75vw, 28px);
}

.contact-prep-intro .final-cta-inner {
  align-items: center;
}

main:has(> .maquette-express-section) > .contact-prep-intro {
  padding-bottom: clamp(48px, 4vw, 60px);
}

main:has(> .maquette-express-section) > .maquette-express-section,
main:has(> .maquette-express-section) > .contact-prep-section,
main:has(> .maquette-express-section) > .contact-prep-process,
main:has(> .maquette-express-section) > .contact-prep-contact,
main:has(> .maquette-express-section) > .contact-prep-final {
  padding-block: clamp(48px, 4vw, 60px);
}

.maquette-express-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 161, 91, 0.12), transparent 30%),
    var(--color-black);
}

.maquette-express-heading {
  max-width: 850px;
}

.maquette-express-heading > p:last-child {
  color: var(--color-grey);
  font-size: 1.03rem;
}

.maquette-express-offer {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--radius-medium);
}

.maquette-express-offer p {
  margin: 0;
  color: var(--color-grey);
}

.maquette-express-offer .maquette-express-price {
  color: var(--color-gold-light);
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
}

.maquette-express-offer .maquette-express-delay {
  color: var(--color-white);
  font-weight: 700;
}

.maquette-express-details {
  margin-top: 24px;
}

.maquette-express-trigger {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 4vw, 32px);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--radius-medium);
  cursor: pointer;
  list-style: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.maquette-express-trigger::-webkit-details-marker {
  display: none;
}

.maquette-express-trigger:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(198, 161, 91, 0.62);
}

.maquette-express-trigger:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 4px;
}

.maquette-express-trigger-text {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.maquette-express-trigger-small {
  color: var(--color-gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.maquette-express-trigger-title {
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
}

.maquette-express-trigger-description {
  color: var(--color-grey);
  font-size: 0.94rem;
}

.maquette-express-chevron {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
}

.maquette-express-chevron::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid var(--color-gold-light);
  border-bottom: 2px solid var(--color-gold-light);
  transform: translate(-50%, -65%) rotate(45deg);
  transition: transform 240ms ease;
}

.maquette-express-details[open] .maquette-express-chevron::before {
  transform: translate(-50%, -35%) rotate(225deg);
}

.maquette-express-checklist {
  padding-top: clamp(32px, 5vw, 48px);
}

.maquette-express-checklist-intro {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--color-grey);
  font-size: 1rem;
}

.maquette-express-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.maquette-express-column {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.maquette-express-question {
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: var(--radius-medium);
}

.maquette-express-question legend {
  width: 100%;
  margin-bottom: 18px;
  padding: 0;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
}

.maquette-express-question h3 {
  margin-bottom: 12px;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.22rem;
}

.maquette-express-question > p {
  margin-bottom: 0;
  color: var(--color-grey);
}

.maquette-express-question > label:not(:first-of-type),
.maquette-express-question > label:first-of-type {
  display: block;
  margin-bottom: 8px;
  color: #e5e5e5;
  font-size: 0.86rem;
  font-weight: 600;
}

.maquette-express-question input[type="text"],
.maquette-express-question textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-small);
  font: inherit;
}

.maquette-express-question textarea {
  min-height: 96px;
  resize: vertical;
}

.maquette-express-question input[type="text"]::placeholder,
.maquette-express-question textarea::placeholder {
  color: #b8b8b8;
  opacity: 1;
}

.maquette-express-question input[type="text"]:focus-visible,
.maquette-express-question textarea:focus-visible,
.maquette-express-options input:focus-visible,
.maquette-express-summary .button:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 3px;
}

.maquette-express-options {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.maquette-express-options:last-child {
  margin-bottom: 0;
}

.maquette-express-options label {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  color: #eeeeee;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.maquette-express-options label:hover {
  border-color: rgba(198, 161, 91, 0.5);
}

.maquette-express-options input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
  accent-color: var(--color-gold);
}

.maquette-express-help {
  margin: 10px 0 0;
  color: #bfbfbf;
  font-size: 0.82rem;
}

.maquette-express-summary {
  max-width: 760px;
  margin: clamp(34px, 5vw, 54px) auto 0;
  padding: clamp(28px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--radius-large);
  text-align: center;
}

.maquette-express-summary h3 {
  color: var(--color-white);
}

.maquette-express-summary > p:not(.maquette-express-status) {
  color: var(--color-grey);
}

.maquette-express-status {
  margin: 14px 0 0;
  color: var(--color-gold-light);
  font-size: 0.84rem;
  font-weight: 600;
}

.contact-prep-section {
  position: relative;
  z-index: 1;
  background: var(--color-cream);
}

main:has(> .maquette-express-section) > .contact-prep-section::before {
  position: absolute;
  z-index: 0;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

main:has(> .maquette-express-section) > .contact-prep-section > .container {
  position: relative;
  z-index: 1;
}

.contact-prep-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-prep-card {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

main:has(> .maquette-express-section) .contact-prep-card[open] {
  grid-column: 1 / -1;
}

main:has(> .maquette-express-section) .contact-prep-card summary {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  padding: 18px 66px 18px 22px;
  cursor: pointer;
  list-style: none;
}

main:has(> .maquette-express-section) .contact-prep-card summary::marker,
main:has(> .maquette-express-section) .contact-prep-card summary::-webkit-details-marker {
  display: none;
}

main:has(> .maquette-express-section) .contact-prep-card summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-gold);
  border-radius: 50%;
  content: "+";
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

main:has(> .maquette-express-section) .contact-prep-card[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

main:has(> .maquette-express-section) .contact-prep-card summary:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

main:has(> .maquette-express-section) .contact-prep-card summary h3 {
  margin: 0;
}

.contact-prep-card-content {
  padding: 0 22px 20px;
  border-top: 1px solid var(--color-border);
}

.contact-prep-card-content p {
  margin: 18px 0 0;
}

.contact-prep-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--color-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-prep-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.contact-prep-step {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.28);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.04);
}

.contact-process-details summary {
  position: relative;
  display: grid;
  min-height: 88px;
  align-content: center;
  gap: 5px;
  padding: 18px 62px 18px 22px;
  cursor: pointer;
}

.contact-process-details summary::marker {
  content: "";
}

.contact-process-details summary::-webkit-details-marker {
  display: none;
}

.contact-process-details summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: var(--color-gold-light);
  background: rgba(198, 161, 91, 0.06);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
}

.contact-process-details[open] summary::after {
  content: "−";
}

.contact-process-details summary:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
}

.contact-prep-step-number {
  display: block;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-process-details h3 {
  margin: 0;
  color: var(--color-white);
}

.contact-process-details > p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--color-grey);
}

.contact-prep-contact {
  background: var(--color-cream);
}

.contact-prep-notice {
  max-width: 1040px;
  margin-inline: auto;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.contact-prep-notice > p:not(.eyebrow):not(.contact-prep-note) {
  max-width: 820px;
}

.contact-prep-notice h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.contact-prep-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-soft);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  main:has(> .maquette-express-section) .contact-prep-card summary::after {
    transition: none;
  }
}

.contact-prep-final {
  position: relative;
  z-index: 1;
  padding-block: clamp(70px, 8vw, 100px);
}

main:has(> .maquette-express-section) > .contact-prep-final::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
  content: "";
  pointer-events: none;
  background: var(--color-cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

main:has(> .maquette-express-section) > .contact-prep-final > .container {
  position: relative;
  z-index: 1;
}

.contact-prep-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

main:has(> .maquette-express-section) > .contact-direct-section {
  padding-block: clamp(46px, 5vw, 62px);
}

.contact-direct-details {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.contact-direct-details > summary {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 7px;
  padding: 22px 72px 22px clamp(22px, 4vw, 34px);
  cursor: pointer;
}

.contact-direct-details > summary::marker {
  content: "";
}

.contact-direct-details > summary::-webkit-details-marker {
  display: none;
}

.contact-direct-details > summary::after {
  position: absolute;
  top: 50%;
  right: clamp(20px, 3vw, 30px);
  display: grid;
  width: 34px;
  height: 34px;
  box-sizing: border-box;
  place-items: center;
  content: "+";
  color: #79591f;
  background: rgba(198, 161, 91, 0.08);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
}

.contact-direct-details[open] > summary::after {
  content: "−";
}

.contact-direct-details > summary:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
}

.contact-direct-details > summary .eyebrow {
  margin: 0;
}

.contact-direct-details > summary h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.contact-direct-action {
  color: #79591f;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-direct-content {
  padding: 0 clamp(22px, 4vw, 34px) clamp(24px, 4vw, 34px);
  border-top: 1px solid var(--color-border-dark);
}

.contact-direct-content > p {
  margin: 22px 0 20px;
  color: var(--color-text-soft);
}

.contact-direct-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-direct-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 92px;
  align-content: center;
  gap: 6px;
  padding: 20px 48px 20px 20px;
  color: var(--color-text-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 30px rgba(11, 11, 11, 0.05);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contact-direct-card::after {
  position: absolute;
  top: 50%;
  right: 18px;
  content: "↗";
  color: #79591f;
  font-size: 1rem;
  transform: translateY(-50%);
}

.contact-direct-card[href^="tel:"]::after,
.contact-direct-card[href^="mailto:"]::after {
  content: "→";
}

.contact-direct-label {
  color: #79591f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.3;
}

.contact-direct-card:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .contact-direct-card:hover {
    border-color: rgba(198, 161, 91, 0.7);
    box-shadow: 0 15px 34px rgba(11, 11, 11, 0.08);
    transform: translateY(-3px);
  }
}

@media (max-width: 720px) {
  .contact-direct-details > summary {
    min-height: 104px;
    padding: 18px 62px 18px 19px;
  }

  .contact-direct-content {
    padding: 0 19px 22px;
  }

  .contact-direct-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-direct-card {
    min-height: 78px;
    padding-block: 17px;
  }
}

.contact-prep-final-inner > div:first-child {
  max-width: 680px;
}

.contact-prep-final h2 {
  color: var(--color-white);
}

.contact-prep-final p {
  margin-bottom: 0;
  color: var(--color-grey);
}

.contact-prep-actions {
  flex: 0 0 auto;
}

/* Footer */
.site-footer {
  padding-top: 48px;
  color: var(--color-grey);
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.footer-brand {
  grid-column: auto;
}

.footer-logo-link {
  display: block;
  width: min(100%, 360px);
  margin-bottom: 16px;
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  margin-bottom: 0;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.79rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-static li {
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a:hover {
  color: var(--color-gold-light);
}

/* Responsive */
@media (max-width: 1080px) {
  .navigation-list {
    gap: 15px;
  }

  .navigation-list a {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .device-scene {
    min-height: 470px;
  }

  .feature-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  main:has(.services-offer-section) > #services .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 74px;
  }

  .contact-prep-grid,
  .contact-prep-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maquette-express-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-logo-home {
    width: 100%;
    height: auto;
    max-height: 56px;
  }

  .footer-logo-link {
    width: min(100%, 300px);
  }

  .services-offer-pages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-paths-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-path-card {
    grid-template-columns: 1fr;
  }

  .home-path-visual {
    min-height: 154px;
    padding: 16px;
  }

  .home-path-image,
  .home-path-image-create {
    height: 108px;
  }

  .home-path-image-seo {
    height: 100px;
  }

  .home-path-content {
    padding: 22px;
  }

  .home-path-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  .home-path-card:nth-child(3) p {
    max-width: 760px;
  }

  .home-path-card:nth-child(3) .button {
    width: fit-content;
  }

  .home-page .home-path-card:nth-child(3) {
    grid-column: auto;
  }

  .home-page .home-path-image-supports {
    height: 94px;
  }

  .home-page .confidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .confidence-grid li {
    padding: 18px 16px 18px 50px;
  }

  .home-page .confidence-grid li::before {
    left: 16px;
    width: 22px;
  }

  .home-page .device-scene {
    min-height: 430px;
  }

  .navigation-list {
    display: grid;
    gap: 0;
  }

  .navigation-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .navigation-list a {
    display: block;
    padding: 15px 2px;
    font-size: 0.95rem;
  }

  .navigation-list a::after {
    display: none;
  }

  .navigation-cta {
    width: 100%;
    margin-top: 20px;
  }

  .hero-grid,
  .split-layout,
  .project-grid,
  .learning-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 35px;
  }

  .device-scene {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-featured {
    transform: none;
  }

  .tariffs-options-grid,
  .tariffs-reassurance {
    grid-template-columns: 1fr;
  }

  .tariffs-guide-link {
    grid-template-columns: 1fr;
  }

  .pages-guide-essential-grid {
    grid-template-columns: 1fr;
  }

  .pages-guide-reassurance {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(4n) {
    border-right: 1px solid var(--color-border-dark);
  }

  .process-step:nth-child(2n) {
    border-right: 0;
  }

  .project-content {
    max-width: 740px;
  }

  .project-gallery-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery-card:last-child {
    grid-column: 1 / -1;
  }

  .learning-layout .section-heading,
  .faq-layout .section-heading {
    position: static;
  }

  .understand-guide-card {
    grid-template-columns: 1fr;
  }

  .comparison-split,
  .comparison-choice-grid,
  .comparison-explanation-grid,
  .comparison-reassurance {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container-width));
  }

  main:has(.tariffs-existing-section) > .tariffs-overview::before,
  main:has(.tariffs-existing-section) > .final-cta::before {
    height: 18px;
  }

  main:has(.tariffs-existing-section) > .tariffs-overview::before {
    top: -18px;
  }

  main:has(.tariffs-existing-section) > .final-cta {
    padding-top: calc(clamp(36px, 3.5vw, 44px) + 18px);
  }

  main:has(.tariffs-existing-section) .tariffs-overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(.tariffs-existing-section) .tariffs-overview-grid a {
    min-height: 82px;
    padding: 15px 17px;
  }

  main:has(.tariffs-existing-section) .tariffs-main-details > summary {
    min-height: 112px;
    padding: 20px 58px 20px 18px;
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(.tariffs-existing-section) .tariffs-main-details > summary::after {
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  main:has(.tariffs-existing-section) .tariffs-main-details > summary strong {
    margin-top: 5px;
    grid-column: 1;
    grid-row: auto;
  }

  main:has(.tariffs-existing-section) .tariffs-main-content {
    padding: 20px 18px;
  }

  main:has(.tariffs-existing-section) .tariffs-pages-grid,
  main:has(.tariffs-existing-section) .tariffs-writing-grid,
  main:has(.tariffs-existing-section) .tariffs-visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(.tariffs-existing-section) .tariffs-page-card:last-child,
  main:has(.tariffs-existing-section) .tariffs-writing-special {
    grid-column: auto;
  }

  main:has(.tariffs-existing-section) .offer-featured-details summary,
  main:has(.tariffs-existing-section) .tariffs-page-details summary {
    min-height: 60px;
    padding: 16px 52px 16px 16px;
  }

  main:has(.tariffs-existing-section) .offer-featured-details summary::after,
  main:has(.tariffs-existing-section) .tariffs-page-details summary::after,
  main:has(.tariffs-existing-section) .tariffs-existing-price-details summary::after {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  main:has(.tariffs-existing-section) .tariffs-existing-price-details summary {
    align-items: start;
    padding-right: 42px;
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(.tariffs-existing-section) .tariffs-existing-price-details .tariffs-existing-description {
    padding-right: 42px;
  }

  .offer-card.offer-card-discovery {
    padding: 24px 20px;
  }

  .offer-discovery-details summary {
    min-height: 60px;
    padding: 16px 52px 16px 16px;
  }

  .offer-discovery-details summary::after {
    right: 14px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  .offer-card-discovery .offer-discovery-details .offer-list {
    padding: 0 16px 16px;
  }

  .contact-prep-grid,
  .contact-prep-steps {
    grid-template-columns: 1fr;
  }

  main:has(> .maquette-express-section) > .contact-prep-section::before {
    top: -18px;
    height: 18px;
  }

  main:has(> .maquette-express-section) > .contact-prep-final::before {
    height: 18px;
  }

  .contact-prep-step {
    padding: 0;
  }

  main:has(> .maquette-express-section) .contact-prep-card summary {
    min-height: 62px;
    padding: 16px 56px 16px 18px;
  }

  main:has(> .maquette-express-section) .contact-prep-card summary::after {
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  .contact-prep-card-content {
    padding: 0 18px 18px;
  }

  .maquette-express-question {
    padding: 22px 18px;
  }

  .maquette-express-trigger {
    min-height: 108px;
    gap: 18px;
    padding: 20px 18px;
  }

  .maquette-express-chevron {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .maquette-express-summary .button {
    width: 100%;
  }

  .contact-prep-final-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-prep-actions {
    width: 100%;
  }

  .contact-prep-actions .button {
    width: 100%;
  }

  .section {
    padding-block: 78px;
  }

  main:has(> .maquette-express-section) > .contact-prep-intro {
    padding-bottom: 46px;
  }

  main:has(> .maquette-express-section) > .maquette-express-section,
  main:has(> .maquette-express-section) > .contact-prep-section,
  main:has(> .maquette-express-section) > .contact-prep-process,
  main:has(> .maquette-express-section) > .contact-prep-contact,
  main:has(> .maquette-express-section) > .contact-prep-final {
    padding-block: 46px;
  }

  .services-existing-section {
    padding-block: 48px;
  }

  main:has(.services-offer-section) > #services::before {
    top: -18px;
    height: 18px;
  }

  main:has(.services-offer-section) > .services-google-section::before {
    height: 18px;
  }

  main:has(.services-offer-section) > .services-google-section {
    padding-top: calc(clamp(22px, 2.2vw, 28px) + 18px);
  }

  .services-existing-grid,
  .services-existing-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-existing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .services-existing-actions .button {
    width: 100%;
  }

  .services-google-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-google-button {
    width: 100%;
  }

  .services-offer-pages,
  .services-offer-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-offer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .services-offer-actions .button {
    width: 100%;
  }

  main:has(.services-offer-section) .content-icon {
    width: auto;
    height: 72px;
    margin-bottom: 18px;
    padding: 0;
    border-radius: 0;
  }

  main:has(.services-offer-section) .services-offer-heading .content-icon {
    width: auto;
    height: 92px;
  }

  main:has(.services-offer-section) .services-google-heading .content-icon {
    width: 106px;
    height: 94px;
    padding: 7px 10px;
    border-radius: 17px;
  }

  main:has(.services-offer-section) .services-offer-heading,
  main:has(.services-offer-section) .services-google-heading,
  main:has(.services-offer-section) .services-existing-content {
    display: block;
  }

  main:has(.services-offer-section) .services-offer-heading > .content-icon,
  main:has(.services-offer-section) .services-google-heading > .content-icon,
  main:has(.services-offer-section) .services-existing-content > .content-icon {
    margin-bottom: 18px;
  }

  main:has(.services-offer-section) .services-existing-content > .content-icon {
    height: 88px;
  }

  main:has(.services-offer-section) .benefit-card > .content-icon {
    width: 94px;
    height: 80px;
    margin-top: -24px;
    margin-bottom: 16px;
    padding: 6px 9px;
    border-radius: 17px;
  }

  main:has(.services-offer-section) .benefit-card:nth-child(6) > .content-icon {
    padding: 2px 5px;
  }

  .tariffs-price-list-wide {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .tariffs-identity-grid {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .tariffs-guide-button {
    width: 100%;
    max-width: none;
  }

  .tariffs-existing-actions .button {
    width: 100%;
  }

  .pages-guide-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .pages-guide-table,
  .pages-guide-table tbody,
  .pages-guide-table tr,
  .pages-guide-table th,
  .pages-guide-table td {
    display: block;
    width: 100%;
  }

  .pages-guide-table {
    background: transparent;
  }

  .pages-guide-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .pages-guide-table tbody {
    display: grid;
    gap: 18px;
  }

  .pages-guide-table tr {
    padding: 24px 22px;
    background: var(--color-white);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-medium);
    box-shadow: 0 14px 36px rgba(11, 11, 11, 0.05);
  }

  .pages-guide-table tbody th,
  .pages-guide-table tbody td {
    padding: 0;
    border: 0;
  }

  .pages-guide-table tbody th {
    margin-bottom: 20px;
    font-size: 1.35rem;
  }

  .pages-guide-table tbody td {
    display: grid;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-dark);
  }

  .pages-guide-table tbody td::before {
    color: #79591f;
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pages-guide-trade-content {
    grid-template-columns: 1fr;
  }

  .pages-guide-category-grid {
    gap: 10px;
    padding: 10px;
    grid-template-columns: 1fr;
  }

  .pages-guide-page-card {
    padding: 16px;
  }

  .brand-name {
    display: none;
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-content {
    text-align: left;
  }

  .button-group {
    align-items: stretch;
    flex-direction: column;
  }

  .button-group .button {
    width: 100%;
  }

  .device-scene {
    min-height: 390px;
  }

  .desktop-device {
    top: 10px;
    width: 96%;
    transform: none;
  }

  .desktop-screen {
    min-height: 265px;
    padding: 16px;
  }

  .mock-navigation {
    margin-bottom: 34px;
  }

  .mock-hero h2 {
    font-size: 1.65rem;
  }

  .mock-cards {
    margin-top: 25px;
  }

  .mock-cards div {
    min-height: 52px;
  }

  .phone-device {
    right: 0;
    width: 122px;
  }

  .phone-screen {
    min-height: 232px;
    padding: 15px 10px;
  }

  .phone-logo {
    margin-bottom: 20px;
  }

  .phone-card {
    height: 37px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-grid,
  .benefit-grid,
  .learning-grid,
  .confidence-grid {
    grid-template-columns: 1fr;
  }

  main:has(.services-offer-section) > #services .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  main:has(.services-offer-section) .services-offer-page-card summary,
  main:has(.services-offer-section) > #services .services-benefit-card summary {
    min-height: 68px;
    padding: 14px 54px 14px 16px;
  }

  main:has(.services-offer-section) .services-offer-page-card summary::after,
  main:has(.services-offer-section) > #services .services-benefit-card summary::after {
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  main:has(.services-offer-section) .services-offer-page-card > p,
  main:has(.services-offer-section) > #services .services-benefit-card > p {
    padding: 0 16px 16px;
  }

  main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary {
    min-height: 68px;
    padding: 14px 54px 14px 16px;
  }

  main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card summary::after {
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }

  main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-card > p {
    padding: 0 16px 16px;
  }

  main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-summary-with-icon {
    min-height: 76px;
    padding-right: 100px;
  }

  main:has(.services-offer-section) > .html-section:last-child .services-html-benefit-icon {
    right: 50px;
    width: 40px;
    height: 40px;
  }

  .home-paths-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .home-paths-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-path-visual {
    min-height: 132px;
    padding: 14px;
  }

  .home-path-image,
  .home-path-image-create {
    height: 94px;
  }

  .home-path-image-seo {
    height: 88px;
  }

  .home-path-content {
    padding: 20px;
  }

  .home-path-card:nth-child(3) {
    grid-column: auto;
  }

  .home-path-card:nth-child(3) p {
    max-width: none;
  }

  .home-path-card:nth-child(3) .button {
    width: fit-content;
  }

  .home-page .hero-section {
    padding-top: 48px;
  }

  .home-page .device-scene {
    min-height: 360px;
  }

  .home-page .trust-strip {
    margin-top: 42px;
  }

  .home-page .home-paths-section {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .home-page .home-paths-section::before {
    top: -18px;
    height: 18px;
  }

  .home-page .home-paths-section + .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-page main > .section:last-child {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .home-page .site-footer::before {
    height: 18px;
  }

  .home-page .home-paths-heading,
  .home-page main > .section:last-child .section-heading {
    margin-bottom: 30px;
  }

  .understand-url-examples {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  .footer-grid {
    width: min(100% - 28px, var(--container-width));
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr);
    transform: none;
  }

  .footer-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: 0;
    box-sizing: border-box;
    grid-column: 1;
    transform: none;
  }

  .footer-links,
  .footer-static {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer-logo-link {
    width: min(100%, 250px);
  }

  .feature-card,
  .benefit-card {
    min-height: auto;
  }

  .card-number,
  .benefit-card > span {
    margin-bottom: 26px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid var(--color-border-dark);
  }

  .process-step > span {
    margin-bottom: 24px;
  }

  .project-gallery-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-gallery-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .project-details div {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .pages-guide-cta-buttons {
    width: 100%;
  }

  .pages-guide-cta-buttons .button {
    flex: 1 1 220px;
  }

  .understand-guide-button {
    width: 100%;
    max-width: none;
  }

  .comparison-two-cards {
    grid-template-columns: 1fr;
  }

  .comparison-overview-grid,
  .comparison-accordion-content {
    grid-template-columns: 1fr;
  }

  .comparison-accordion summary {
    padding: 20px 74px 20px 20px;
  }

  .comparison-accordion-content,
  .comparison-accordion-table {
    padding: 18px;
  }

  .comparison-accordion-content > div,
  .comparison-accordion-content > article {
    padding: 18px;
  }

  .comparison-accordion-wide {
    grid-column: auto;
  }

  .comparison-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table {
    background: transparent;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .comparison-table tbody {
    display: grid;
    gap: 14px;
  }

  .comparison-table tr {
    padding: 20px 18px;
    background: var(--color-white);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-medium);
  }

  .comparison-table tbody th,
  .comparison-table tbody td {
    padding: 0;
    border: 0;
  }

  .comparison-table tbody th {
    margin-bottom: 16px;
    font-size: 1.25rem;
  }

  .comparison-table tbody td {
    display: grid;
    gap: 5px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border-dark);
  }

  .comparison-table tbody td::before {
    color: #79591f;
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-cta-buttons {
    width: 100%;
  }

  .comparison-cta-buttons .button {
    flex: 1 1 220px;
  }

  .footer-bottom {
    width: min(100% - 28px, var(--container-width));
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }
}

@media (max-width: 430px) {
  .content-icon {
    height: 58px;
    max-width: 64px;
    margin-bottom: 16px;
  }

  .content-icon-dark {
    padding: 5px;
    border-radius: 14px;
  }

  .content-icon-compact {
    height: 54px;
    max-width: 60px;
  }

  .benefit-card > .content-icon {
    margin-top: -18px;
  }

  .process-step > .content-icon {
    margin-top: -28px;
  }

  .brand-logo-home {
    width: min(100%, 240px);
    max-width: 240px;
    height: auto;
  }

  .home-page .device-scene {
    min-height: 325px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .tariffs-price-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .device-scene {
    min-height: 350px;
  }

  .desktop-screen {
    min-height: 230px;
  }

  .mock-navigation {
    margin-bottom: 25px;
  }

  .mock-links span {
    width: 24px;
  }

  .mock-hero {
    width: 80%;
  }

  .mock-hero h2 {
    margin-bottom: 14px;
    font-size: 1.38rem;
  }

  .mock-cards {
    margin-top: 20px;
  }

  .phone-device {
    width: 104px;
  }

  .phone-screen {
    min-height: 198px;
    padding: 12px 8px;
  }

  .phone-logo {
    width: 23px;
    height: 23px;
    margin-bottom: 15px;
  }

  .phone-button {
    margin-block: 12px;
  }

  .phone-card {
    height: 29px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .offer-card {
    padding: 27px 22px;
  }

  .faq-answer {
    padding-right: 4px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    gap: 8px;
    grid-template-columns: 44px minmax(0, 1fr) 48px;
  }

  .menu-toggle {
    flex: 0 0 48px;
  }

  .main-navigation {
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    max-height: none;
    padding: 18px 20px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #111111;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .main-navigation .navigation-list {
    gap: 0 10px;
  }

  .main-navigation .navigation-list a {
    min-height: 50px;
    padding: 14px 4px;
    font-size: 0.78rem;
  }

  .main-navigation .navigation-item-seo a {
    padding-left: 9px;
  }
}

/* Les effets restent limités aux encarts qui contiennent un vrai lien. */
.home-path-card:has(a[href]),
.offer-card:has(a[href]),
.tariffs-guide-link:has(a[href]),
.understand-guide-card:has(a[href]) {
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.home-path-card:has(a[href]) .home-path-image,
.offer-card:has(a[href]) .content-icon,
.tariffs-guide-link:has(a[href]) .content-icon,
.understand-guide-card:has(a[href]) .content-icon {
  transition: transform 240ms ease;
}

.home-path-card:has(a:focus-visible),
.offer-card:has(a:focus-visible),
.tariffs-guide-link:has(a:focus-visible),
.understand-guide-card:has(a:focus-visible) {
  border-color: rgba(198, 161, 91, 0.72);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
}

@media (max-width: 940px) and (hover: hover) and (pointer: fine) {
  .main-navigation .navigation-list a {
    transition:
      color 220ms ease,
      transform 220ms ease;
  }

  .main-navigation .navigation-list a:hover {
    color: var(--color-gold-light);
    transform: translateX(3px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .home-path-card:has(a[href]):hover,
  .offer-card:has(a[href]):hover,
  .tariffs-guide-link:has(a[href]):hover,
  .understand-guide-card:has(a[href]):hover {
    border-color: rgba(198, 161, 91, 0.62);
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.11);
    transform: translateY(-4px);
  }

  .offer-card-featured:has(a[href]):hover {
    transform: translateY(-18px);
  }

  .home-path-card:has(a[href]):hover .home-path-image,
  .offer-card:has(a[href]):hover .content-icon,
  .tariffs-guide-link:has(a[href]):hover .content-icon,
  .understand-guide-card:has(a[href]):hover .content-icon {
    transform: translateY(-2px) scale(1.03);
  }
}

@media (max-width: 940px) and (hover: hover) and (pointer: fine) {
  .offer-card-featured:has(a[href]):hover {
    transform: translateY(-4px);
  }
}

@media (hover: none), (pointer: coarse) {
  .home-path-card:has(a[href]):hover {
    transform: none;
  }
}

.studio-scroll-progress {
  position: fixed;
  z-index: 900;
  top: calc(var(--header-height) + 18px);
  bottom: 18px;
  width: 2px;
  pointer-events: none;
  background: rgba(198, 161, 91, 0.14);
  border-radius: 999px;
}

.studio-scroll-progress-left {
  left: 5px;
}

.studio-scroll-progress-right {
  right: 5px;
}

.studio-scroll-progress-bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-gold-light), var(--color-gold));
  border-radius: inherit;
  box-shadow: 0 0 7px rgba(198, 161, 91, 0.32);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

@media (max-width: 430px) {
  .studio-scroll-progress {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  html.studio-cursor-enabled,
  html.studio-cursor-enabled * {
    cursor: none !important;
  }

  .studio-cursor {
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    display: block;
    width: 34px;
    height: 34px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    background: rgba(198, 161, 91, 0.025);
    border: 1px solid rgba(216, 188, 122, 0.82);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(198, 161, 91, 0.1);
    transform: translate3d(-50px, -50px, 0) translate(-50%, -50%);
    transition:
      width 180ms ease,
      height 180ms ease,
      opacity 160ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
    will-change: transform;
  }

  .studio-cursor::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(198, 161, 91, 0.1);
    border-radius: inherit;
    transform: scaleY(0.18);
    transform-origin: bottom;
    animation: studio-cursor-fill 2.8s ease-in-out infinite;
  }

  .studio-cursor::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    content: "";
    background: var(--color-gold-light);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(216, 188, 122, 0.38);
    transform: translate(-50%, -50%);
  }

  .studio-cursor.is-visible {
    opacity: 1;
  }

  .studio-cursor.is-interactive {
    width: 42px;
    height: 42px;
    border-color: var(--color-gold-light);
    box-shadow: 0 0 13px rgba(198, 161, 91, 0.18);
  }

  .studio-cursor.is-interactive::before {
    background: rgba(198, 161, 91, 0.15);
  }
}

@keyframes studio-cursor-fill {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleY(0.18);
  }

  50% {
    opacity: 0.82;
    transform: scaleY(0.72);
  }
}

/* Réduction des mouvements */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .studio-cursor::before {
    opacity: 0.48;
    transform: scaleY(0.32);
    animation: none !important;
  }

  .main-navigation .navigation-list a,
  .home-path-card:has(a[href]),
  .offer-card:has(a[href]),
  .tariffs-guide-link:has(a[href]),
  .understand-guide-card:has(a[href]),
  .home-path-card:has(a[href]) .home-path-image,
  .offer-card:has(a[href]) .content-icon,
  .tariffs-guide-link:has(a[href]) .content-icon,
  .understand-guide-card:has(a[href]) .content-icon {
    transition: none;
  }

  .main-navigation .navigation-list a:hover,
  .home-path-card:has(a[href]):hover,
  .offer-card:has(a[href]):hover,
  .tariffs-guide-link:has(a[href]):hover,
  .understand-guide-card:has(a[href]):hover,
  .home-path-card:has(a[href]):hover .home-path-image,
  .offer-card:has(a[href]):hover .content-icon,
  .tariffs-guide-link:has(a[href]):hover .content-icon,
  .understand-guide-card:has(a[href]):hover .content-icon {
    transform: none;
  }

  .offer-card-featured:has(a[href]):hover {
    transform: translateY(-14px);
  }
}

@media (max-width: 940px) and (prefers-reduced-motion: reduce) {
  .offer-card-featured:has(a[href]):hover {
    transform: none;
  }
}
