/* Julien Dérout — Landing SEO / UI */
:root {
  --bg-deep: #080b10;
  --bg-elevated: rgba(12, 16, 24, 0.92);
  --bg-card: rgba(16, 22, 34, 0.62);
  --border: rgba(255, 255, 255, 0.07);
  --text: #f0f4f8;
  --text-muted: #94a3b8;
  --accent: #34d399;
  --accent-bright: #6ee7b7;
  --accent-dim: rgba(52, 211, 153, 0.14);
  --accent-glow: rgba(52, 211, 153, 0.42);
  --violet: #34d399;
  --violet-dim: rgba(52, 211, 153, 0.1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --radius: 18px;
  --header-h: 4rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Fond global discret */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 85% 55% at 50% -18%, rgba(52, 211, 153, 0.07), transparent 52%),
    radial-gradient(ellipse 55% 38% at 100% 38%, rgba(16, 185, 129, 0.05), transparent 46%),
    linear-gradient(180deg, #070a10 0%, var(--bg-deep) 48%, #06080e 100%);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: float-orb 18s var(--ease-out) infinite;
}

.orb-1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 72%);
  opacity: 0.35;
  animation-delay: 0s;
}

.orb-2 {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  bottom: 15%;
  left: -8%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.32) 0%, transparent 72%);
  opacity: 0.3;
  animation-delay: -6s;
  animation-duration: 22s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(52, 211, 153, 0.18) 0%, transparent 72%);
  opacity: 0.22;
  animation-delay: -12s;
  animation-duration: 16s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, 3%) scale(1.05); }
  66% { transform: translate(-2%, -2%) scale(0.95); }
}

/* Header — barre pleine largeur, style studio */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.header-shell {
  max-width: 1120px;
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 0.65rem max(1.25rem, env(safe-area-inset-left)) 0.65rem max(1.25rem, env(safe-area-inset-right));
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
  color: #04120d;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 4px 20px var(--accent-dim);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.logo:hover .logo-mark {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16) inset, 0 8px 28px rgba(52, 211, 153, 0.22);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

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

.nav-links a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.65rem;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.35rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-cta {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.55rem 1.15rem;
  border-radius: 6px;
  color: #04120d !important;
  background: var(--accent) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 4px 16px rgba(52, 211, 153, 0.25);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--accent-bright) !important;
  color: #04120d !important;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 22px rgba(52, 211, 153, 0.3);
}

.nav-cta:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

/* Hero — traits géométriques légers (haut de page uniquement) */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(2.25rem, 8vw, 6rem) max(0.75rem, min(4vw, 2.5rem)) clamp(3rem, 12vw, 7rem);
  padding-left: max(0.75rem, env(safe-area-inset-left));
  padding-right: max(0.75rem, env(safe-area-inset-right));
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(100%, 56rem);
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 31px,
      rgba(110, 231, 183, 0.04) 31px,
      rgba(110, 231, 183, 0.04) 32px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 31px,
      rgba(110, 231, 183, 0.034) 31px,
      rgba(110, 231, 183, 0.034) 32px
    ),
    repeating-linear-gradient(
      -32deg,
      transparent 0,
      transparent 36px,
      rgba(52, 211, 153, 0.028) 36px,
      rgba(52, 211, 153, 0.028) 37px
    ),
    repeating-linear-gradient(
      32deg,
      transparent 0,
      transparent 36px,
      rgba(110, 231, 183, 0.026) 36px,
      rgba(110, 231, 183, 0.026) 37px
    );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.08) 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.08) 72%,
    transparent 100%
  );
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5.5vw + 0.4rem, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 auto 1.5rem;
  max-width: 100%;
  padding: 0 0.25rem;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: none;
}

.title-line {
  display: block;
}

.title-line--primary {
  color: var(--text);
}

.title-line--accent-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em 0.38em;
  margin-top: 0.06em;
}

@media (min-width: 480px) {
  .title-line--accent-row {
    flex-wrap: nowrap;
  }
}

.title-gradient {
  font-weight: 800;
  background: linear-gradient(100deg, #ecfdf5 0%, var(--accent-bright) 38%, var(--accent) 62%, #a7f3d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 9s ease-in-out infinite;
  background-size: 220% auto;
  padding: 0 0.02em;
}

.title-ampersand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92em;
  line-height: 1;
  color: var(--accent-bright);
  text-shadow:
    0 0 28px rgba(110, 231, 183, 0.55),
    0 0 2px rgba(15, 23, 42, 0.9);
  -webkit-text-fill-color: var(--accent-bright);
  flex-shrink: 0;
  padding: 0 0.06em;
  position: relative;
  top: 0.04em;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 36em;
  margin: 0 auto 2rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
}

.btn-primary {
  color: #04120d;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 4px 24px rgba(52, 211, 153, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 8px 32px rgba(52, 211, 153, 0.38);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 10vw, 6.25rem);
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.section--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 38rem;
  width: 100%;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .section-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.section-head h2,
#zone-title,
#contact-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.6vw, 2.2rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  line-height: 1.22;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 211, 153, 0.32);
  transition: color 0.2s, border-color 0.2s;
}
.inline-link:hover {
  color: var(--accent-bright);
  border-bottom-color: rgba(52, 211, 153, 0.55);
}
.communes-wrap {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}
.communes-details {
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.communes-details:last-of-type {
  border-bottom: none;
}
.communes-details summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  box-sizing: border-box;
}
.communes-details summary::-webkit-details-marker {
  display: none;
}
.communes-details summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.5em;
  height: 0.5em;
  margin-top: 0.35em;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
  opacity: 0.7;
}
.communes-details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.4em;
}
.communes-details summary:hover {
  color: var(--accent);
}
.communes-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  columns: 2;
  column-gap: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.communes-list li {
  break-inside: avoid;
  padding: 0.12rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
@media (min-width: 640px) {
  .communes-list { columns: 3; }
}
@media (min-width: 960px) {
  .communes-list { columns: 4; }
}
.communes-footnote {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.communes-page {
  padding-top: 2rem;
}

.communes-page-intro {
  max-width: 40rem;
}

.communes-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: var(--text);
}

.communes-page-list {
  max-width: 56rem;
  margin-top: 1.5rem;
}

/* Service grid */
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
  width: 100%;
  align-items: stretch;
}

.service-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(110, 231, 183, 0.32), transparent 42%, transparent 58%, rgba(16, 185, 129, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.22);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(52, 211, 153, 0.07);
}

.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.card-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Pourquoi travailler avec moi */
.about-why .section-head {
  max-width: 46rem;
}

.why-tagline {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.why-tagline strong {
  color: var(--accent-bright);
  font-weight: 700;
}

.about-why .section-sub {
  margin-top: 0;
}

.why-stack {
  width: 100%;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-panel {
  margin: 0;
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.why-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 211, 153, 0.18);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(52, 211, 153, 0.05);
}

.why-panel-head {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  column-gap: 0.75rem;
  row-gap: 0;
  align-items: start;
  margin-bottom: 0.85rem;
}

.why-panel-head--solo {
  margin-bottom: 0.75rem;
}

.why-panel-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.12);
  color: var(--accent);
  box-sizing: border-box;
}

.why-panel-icon svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  max-width: 100%;
  max-height: 100%;
}

.why-panel-head h3,
.why-panel h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.38;
  color: var(--text);
  letter-spacing: -0.02em;
  padding-top: 0.2rem;
  min-width: 0;
}

.why-panel p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.62;
}

.why-panel p:last-child {
  margin-bottom: 0;
}

.why-panel p strong {
  color: rgba(240, 244, 248, 0.93);
  font-weight: 600;
}

.why-emphasis {
  margin-top: 0.35rem !important;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.14);
  color: var(--text) !important;
  font-size: 0.9375rem !important;
  line-height: 1.55 !important;
}

.why-label {
  margin-bottom: 0.5rem !important;
  font-size: 0.8125rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-bright) !important;
}

.why-points {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.why-points li {
  position: relative;
  margin: 0 0 0.45rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.58;
}

.why-points li:last-child {
  margin-bottom: 0;
}

.why-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}

.why-points--tight li {
  margin-bottom: 0.45rem;
}

.why-points--tight {
  margin-bottom: 0.85rem;
}

.why-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-checklist li {
  position: relative;
  margin: 0 0 0.4rem;
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.58;
}

.why-checklist li:last-child {
  margin-bottom: 0;
}

.why-checklist li::before {
  content: "";
  position: absolute;
  left: 0.05em;
  top: 0.42em;
  width: 0.32em;
  height: 0.55em;
  border: solid var(--accent-bright);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  opacity: 0.95;
}

.why-checklist--dense {
  margin-top: 0.35rem;
}

.why-panel--deliver .why-checklist--dense {
  margin-top: 0.5rem;
}

.why-cta {
  margin-top: 0.25rem;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(52, 211, 153, 0.16);
  text-align: center;
  background: rgba(52, 211, 153, 0.04);
  overflow-wrap: break-word;
}

.why-cta-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.35;
}

.why-cta p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  text-align: left;
}

.why-cta .why-points {
  text-align: left;
  margin-bottom: 1rem;
}

.why-cta-outro {
  margin-bottom: 1.1rem !important;
  text-align: center !important;
  font-size: 0.9375rem !important;
  line-height: 1.55 !important;
}

.why-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.why-panel.reveal:nth-child(1) { transition-delay: 0.04s; }
.why-panel.reveal:nth-child(2) { transition-delay: 0.08s; }
.why-panel.reveal:nth-child(3) { transition-delay: 0.12s; }
.why-footnote.reveal { transition-delay: 0.16s; }

.why-footnote {
  margin: 0.5rem 0 0;
  max-width: 44rem;
  width: 100%;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Méthode de travail */
.method-section .section-head {
  max-width: 40rem;
}

.method-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.method-step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem 0.85rem;
  align-items: start;
  padding: 1.2rem 1.35rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.method-step:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 211, 153, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(52, 211, 153, 0.05);
}

.method-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--accent);
  padding-top: 0.2rem;
}

.method-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
}

.method-step-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.method-step-body p strong {
  color: rgba(240, 244, 248, 0.92);
  font-weight: 600;
}

.method-step.reveal:nth-child(1) { transition-delay: 0.04s; }
.method-step.reveal:nth-child(2) { transition-delay: 0.08s; }
.method-step.reveal:nth-child(3) { transition-delay: 0.12s; }
.method-step.reveal:nth-child(4) { transition-delay: 0.16s; }

/* Offres WordPress / tarifs */
.offers-wp .section-head {
  max-width: 42rem;
}

.offer-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
  width: 100%;
  align-items: stretch;
}

.offer-card {
  position: relative;
  padding: 1.65rem 1.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  text-align: left;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 211, 153, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(52, 211, 153, 0.06);
}

.offer-card--wide {
  grid-column: 1 / -1;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .offers-wp .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .offers-wp .offer-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.offer-price {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.offer-price strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

.offer-price--accent {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9375rem;
  color: var(--accent);
}

.offer-price--accent strong {
  display: inline;
  margin-top: 0;
  font-size: inherit;
}

.offer-price--devis {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-bright);
}

.offer-price--devis strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.25;
  color: var(--text);
}

.offer-card p:not(.offer-price) {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.offer-card p:not(.offer-price) strong {
  color: rgba(240, 244, 248, 0.92);
  font-weight: 600;
}

.offers-footnote {
  margin: 2rem 0 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.offer-card.reveal:nth-child(1) { transition-delay: 0.04s; }
.offer-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.offer-card.reveal:nth-child(3) { transition-delay: 0.16s; }

/* Local block */
.local-inner {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius);
  width: 100%;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.local-inner--prose {
  text-align: center;
}

.local-inner--prose #zone-title {
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 38rem);
}

.local-inner--prose p {
  text-align: left;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.local-inner p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.local-inner p:last-of-type {
  margin-bottom: 0;
}

.local-inner strong {
  color: var(--text);
}

/* Glass */
.glass {
  background: rgba(18, 24, 42, 0.45);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

/* Contact */
.contact {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-card {
  width: 100%;
  max-width: 32rem;
  padding: clamp(2rem, 5vw, 2.85rem);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card--pro {
  border-color: rgba(52, 211, 153, 0.12);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  width: 120%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--accent-dim), transparent 65%);
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-lead {
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: left;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.contact-list a {
  color: var(--accent);
  font-weight: 600;
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  text-decoration: none;
  transition: opacity 0.2s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-list a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.contact-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem max(1.25rem, env(safe-area-inset-left)) max(3rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-right));
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.footer-seo {
  font-size: 0.75rem;
  opacity: 0.65;
  max-width: 520px;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 640px) {
  .communes-list {
    columns: 1;
    column-gap: 0;
  }
}

@media (max-width: 560px) {
  .header-shell {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.65rem;
    padding-top: 0.55rem;
    padding-bottom: 0.65rem;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 0.65rem;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
    gap: 0.05rem;
  }

  .nav-links a {
    font-size: 0.75rem;
    padding: 0.45rem 0.55rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .nav-cta {
    width: 100%;
    max-width: 16rem;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 6.8vw + 0.35rem, 2.65rem);
    line-height: 1.1;
    padding-inline: 0.35rem;
  }

  .title-line--accent-row {
    flex-direction: column;
    align-items: center;
    gap: 0.12em 0;
  }

  .title-ampersand {
    font-size: 1.05em;
    padding: 0.08em 0;
    top: 0;
  }

  .hero-eyebrow {
    justify-content: center;
    text-align: center;
    max-width: 100%;
    padding-inline: 0.35rem;
    font-size: 0.8rem;
  }

  .hero-lead {
    padding-inline: 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: min(320px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-inline: 0.25rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .why-cta-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .why-cta-actions .btn {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(1.5rem, 7.5vw, 2rem);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children optional — hero uses single blocks */
.hero .reveal:nth-child(2) { transition-delay: 0.08s; }
.hero .reveal:nth-child(3) { transition-delay: 0.16s; }
.hero .reveal:nth-child(4) { transition-delay: 0.24s; }

.service-card.reveal:nth-child(1) { transition-delay: 0.04s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .title-gradient, .pulse-dot, .logo-mark {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card:hover,
  .why-panel:hover,
  .method-step:hover,
  .offer-card:hover {
    transform: none;
  }
}
