:root {
  --ink: #11172f;
  --muted: #626a83;
  --soft: #f7f9ff;
  --soft-2: #eaf0ff;
  --white: #fff;
  --primary: #3655e2;
  --primary-dark: #1537c8;
  --accent: #F17510;
  --success: #35c5b0;
  --line: rgba(17,23,47,.12);
  --shadow: 0 24px 70px rgba(22,49,149,.14);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background: var(--white);
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--max),calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.section-pad {
  padding: 10px 0 95px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(247,249,255,0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21,21,21,0.1);
}

.header-inner {
  width: min(var(--max),calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
}

.footer-brand img {
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  color: rgba(17,23,47,1);
  transition: color .2s ease,background .2s ease;
}

.main-nav a:hover,.main-nav a.active {
  color: var(--primary);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white)!important;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white)!important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

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

h1 {
  max-width: 830px;
  font-size: clamp(42px,6vw,65px);
  line-height: .92;
  letter-spacing: -.075em;
  margin-bottom: 28px;
}

h1 span {
  color: var(--primary);
}

h2 {
  font-size: clamp(32px,4.5vw,52px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 25%,rgba(54,85,226,.12),transparent 32%),linear-gradient(180deg,#fff,var(--soft));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.hero-lead,
.section-head p,
.local-hero p,
.service-content p,
.contact-intro p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease,border-color .2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(54,85,226,.30);
}

.btn.primary:hover {
  background: linear-gradient(135deg,var(--accent),#ff9b3d);
  box-shadow: 0 16px 38px rgba(241,117,16,.28);
}

.btn.ghost {
  background: rgba(255,255,255,.72);
  border-color: var(--line);
}

.btn.ghost:hover,.btn.light:hover {
  border-color: rgba(241,117,16,.45);
  color: var(--accent);
}

.btn.dark {
  background: var(--ink);
  color: var(--white);
}

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

.btn.full {
  width: 100%;
}
.btn.full:hover {
  background-color: #d6620a; /* Un orange un peu plus foncé */
  cursor: pointer; /* Force le curseur en forme de main */
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.problem-band {
  background: var(--ink);
  color: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.problem-band p {
  color: rgba(255,255,255,.72);
}

.section-head {
  margin-bottom: 38px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 18px;
}

.service-card,
.price-card,
.city-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(21,21,21,.08);
  border-radius: 24px;
  padding: 26px;
  transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.service-card:hover,.price-card:hover,.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(241,117,16,.42);
}

.icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 900;
}

.service-card p,
.price-card p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 900;
}

.service-card a:hover {
  color: var(--accent);
}





.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
}







.input-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 10px;
  align-items: center;
}

.input-row input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  outline: none;
  background: var(--white);
}

input:focus {
  border-color: var(--primary)!important;
  box-shadow: 0 0 0 4px rgba(54,85,226,.14);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 0;
}



.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-status {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin: 10px 0 0;
}

.proof-section {
  background: var(--white);
padding:95px 0 95px 0;
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-list div {
  padding: 24px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.proof-list strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.proof-list p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.faq-list,
.local-faq-grid {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  padding: 20px 22px;
}

summary {
    cursor: pointer;
    font-weight: 700;
    color: #626a83;
}

summary::marker {
color:var(--accent)
}

details p {
  color: var(--muted);
  margin: 14px 0 0;
}

.contact-section {
  background : radial-gradient(circle at 12% 12%, rgba(54, 85, 226, .10), transparent 34%), radial-gradient(circle at 86% 10%, rgba(241, 117, 16, .12), transparent 30%);
padding:50px 0 95px 0;
}

.contact-block {
  padding:45px 0 45px 0;
  border-radius: var(--radius);
  color: var(--white);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(420px,1.08fr);
  gap: clamp(28px,5vw,64px);
  align-items: center;
}

.contact-intro h2 {
  color: var(--ink);
}

.contact-form {
  padding: clamp(26px,3vw,38px);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-steps div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.contact-steps strong {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: var(--white);
}

.contact-steps span {
  font-weight: 900;
  letter-spacing: -.03em;
}

.contact-steps p {
  margin-bottom: 0;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.field label,
.urgent-field {
  font-weight: 900;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  outline: none;
  background: var(--white);
}

.full-field {
  grid-column: 1/-1;
}

.urgent-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  cursor: pointer;
}

.urgent-field input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.site-footer {
  padding: 54px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,.65);
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer h3 {
  font-size: 15px;
  margin-bottom: 12px;
}
.site-footer a:hover {
    color: #F17510;
}

.footer-mail {
  font-weight: 800;
  color: var(--white)!important;
}

.local-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 12%, rgba(241,117,16,.12), transparent 34%), radial-gradient(circle at 86% 10%, rgba(255,255,255,.10), transparent 30%);
  padding: 42px 0 20px 0;
}

.local-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.local-hero-card {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  isolation: isolate;
}

.local-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg,rgba(54,85,226,.18),rgba(241,117,16,.16));
  z-index: -1;
  transform: rotate(-2deg) scale(.97);
}

.local-hero-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
}

.local-hero-card ul,
.local-hero-card li {
  display: none;
}

.content-section {
  background: #fff;
}

.local-content-grid {
  display: grid;
  grid-template-columns: minmax(280px,.42fr) 1fr;
  gap: 54px;
  align-items: start;
}

.local-sticky-card {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.local-sticky-card p {
  color: rgba(255,255,255,.72);
}

.service-content {
  display: grid;
  gap: 22px;
}

.service-content article {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.service-content h2 {
  font-size: clamp(26px,3vw,38px);
  margin-bottom: 12px;
}

.related-section {
  background: linear-gradient(135deg,#fff,var(--soft));
}

.related-section h2 {
  margin-top:50px;
}


.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.related-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: transform .2s ease,border-color .2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241,117,16,.42);
}

.related-card small {
  color: var(--accent);
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease,transform .7s ease;
}

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

@media(max-width:1020px) {
  .hero-grid,
  .diagnostic-grid,
  .split-grid,
  .contact-main-grid,
  .local-hero-grid,
  .local-content-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .local-sticky-card {
    position: relative;
    top: 0;
  }
  .related-grid,
  .contact-steps {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 80px;
  }
  .cards-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:780px) {
  .site-header {
    padding: 14px 0;
  }
  .header-inner {
    width: min(var(--max),calc(100% - 28px));
  }
  .brand img {
    height: 30px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 73px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 12px 10px;
  }
  .nav-cta {
    text-align: center;
  }
  .container {
    width: min(var(--max),calc(100% - 28px));
  }
  .section-pad {
    padding: 68px 0;
  }
  .hero,
  .local-hero {
    background: radial-gradient(circle at 12% 12%, rgba(241, 117, 16, .12), transparent 34%), radial-gradient(circle at 86% 10%, rgba(255, 255, 255, .10), transparent 30%);
    padding: 42px 0 20px 0;
}

  .input-row,
  .form-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-block {
    border-radius: 22px;
  }
  .contact-form {
    padding: 22px;
  }
  .contact-steps div {
    grid-template-columns: 40px 1fr;
  }
  h1 {
    letter-spacing: -.06em;
  }
}

/* UX/UI pass - home */

:root {
  --focus: rgba(241,117,16,.28);
  --surface: rgba(255,255,255,.92);
}

body {
  background: linear-gradient(180deg,#ffffff 0%,#f7f9ff 46%,#ffffff 100%);
}

.site-header {
  box-shadow: 0 10px 28px rgba(17,23,47,.05);
}

.main-nav a {
  border-radius: 999px;
  padding: 8px 2px;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--primary);
}

.nav-cta {
  padding: 12px 18px!important;
}

.btn:focus-visible,.main-nav a:focus-visible,.brand:focus-visible,input:focus-visible,select:focus-visible,summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.ux-hero {
background: radial-gradient(circle at 12% 12%, rgba(241,117,16,.12), transparent 34%), radial-gradient(circle at 86% 10%, rgba(255,255,255,.10), transparent 30%);
  padding: 42px 0 20px 0;
}

.ux-hero .hero-grid {
  align-items: center;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-lead {
  font-size: clamp(18px,2vw,18px);
  line-height: 1.55;
}

.ux-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg,rgba(54,85,226,.18),rgba(241,117,16,.16));
  z-index: -1;
  transform: rotate(-2deg) scale(.97);
}

.hero-status-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(17,23,47,.16);
  font-size: 13px;
  color: var(--ink);
}

.hero-status-card strong {
  font-weight: 900;
  letter-spacing: -.03em;
}

.hero-status-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.hero-status-card i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(53,197,176,.16);
}

.reassurance-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 34px;
}

.reassurance-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(17,23,47,.06);
}

.reassurance-strip strong {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(54,85,226,.10);
  color: var(--primary);
  font-weight: 900;
}

.reassurance-strip span {
  font-weight: 900;
  letter-spacing: -.02em;
}

.symptoms-section {
  background: #fff;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.symptom-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg,#fff,var(--soft));
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(22,49,149,.07);
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}

.symptom-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241,117,16,.44);
  box-shadow: var(--shadow);
}

.symptom-card span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
}

.symptom-card strong {
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.symptom-card small {
  font-weight: 900;
  color: var(--primary);
}

.ux-cards-grid .service-card {
  display: flex;
  flex-direction: column;
  min-height: 268px;
}

.ux-cards-grid .service-card a {
  margin-top: auto;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .22s ease,transform .22s ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}


.ux-proof-grid .proof-list {
  grid-template-columns: repeat(2,1fr);
}

.proof-list div {
  position: relative;
  background: linear-gradient(180deg,#fff,var(--soft));
  box-shadow: 0 12px 28px rgba(22,49,149,.05);
}

.contact-block {
  border: 1px solid rgba(255,255,255,.16);
}

.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  outline: none;
  background: var(--white);
  color: var(--ink);
  appearance: auto;
}

.contact-form .btn.full {
  min-height: 58px;
}

.contact-steps div {
  transition: transform .2s ease,background .2s ease;
}

.contact-steps div:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.12);
}

@media(max-width:1020px) {
  .reassurance-strip,
  .symptom-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .ux-proof-grid .proof-list {
    grid-template-columns: 1fr;
  }
  .hero-status-card {
    position: static;
    margin: 14px 6px 0;
  }
}

@media(max-width:780px) {
  .reassurance-strip,
  .symptom-grid {
    grid-template-columns: 1fr;
  }
  .reassurance-strip {
    margin-top: 18px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .trust-row span {
    flex: 1 1 100%;
  }
  .symptom-card {
    min-height: auto;
  }
  .hero-status-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-main-grid {
    gap: 22px;
  }
  .contact-intro p:not(.eyebrow) {
    font-size: 17px;
  }
}

/* Harmonisation UX/UI globale */

h1 .wp-blue,
h1 span.wp-blue,
.hero-copy h1 .wp-blue {
  color: var(--primary);
}


.hero-visual,
.ux-hero-visual,
.local-hero-card {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
margin-bottom:30px;
}

.ux-hero-visual::before {
  display: none !important;
}

.hero-visual img,
.local-hero-card img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-status-card {
  display: none !important;
}

.local-hero-card ul {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.ux-cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


@media (max-width: 1180px) {
  .ux-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .ux-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Téléphone contact */

.contact-phone {
  margin: 18px 0 0;
  font-size: clamp(24px, 3.2vw, 38px) !important;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--white) !important;
}

.contact-phone a {
  color: inherit;
  text-decoration: none;
}

.contact-phone a:hover {
  color: var(--accent);
}

@media (max-width: 520px) {
  .objective-cta {
    white-space: normal;
  }
  .rotating-word {
    min-width: 5.3em;
  }
}


/* Bouton formulaire contact */
.contact-submit span {
  position: relative;
  z-index: 1;
}

/* Contact : méthodologie verticale */
.contact-method-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.contact-method-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(22,49,149,.06);
}

.contact-method-item strong {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
}

.contact-method-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -.03em;
}

.contact-method-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 520px) {
  .contact-method-item {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }
}


/* --- Home updates: optimisation visual, floating WhatsApp button, FAQ below form --- */
.proof-hero-visual {
  margin: 0 0 26px;
}

.proof-hero-visual img {
  border-radius: 26px;
}

.faq-below-contact {
  padding-top: 50px;
}

.faq-head {
  max-width: 860px;
}

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

.faq-column {
  display: grid;
  gap: 12px;
}

.faq-column details {
  height: fit-content;
}

.wa-float {
  position: fixed;
  right: 22px;
  left: auto;
  bottom: 22px;
  z-index: 120;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 18px 36px rgba(17, 23, 47, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.92);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}

.wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.02);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  left: auto;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(17,23,47,.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.wa-tooltip::before {
  content: "";
  position: absolute;
  right: -6px;
  left: auto;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.wa-float:hover .wa-tooltip,
.wa-float:focus-visible .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.wa-badge {
  position: absolute;
  right: 3px;
  top: 4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ff2d2d;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  border: 2px solid #fff;
  box-shadow: 0 8px 18px rgba(255,45,45,.4);
}

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

@media (max-width: 780px) {
  .proof-hero-visual img {
    max-width: 100%;
  }

  .wa-float {
    right: 16px;
    left: auto;
    bottom: 16px;
    width: 68px;
    height: 68px;
  }

  .wa-tooltip {
    display: none;
  }
}


/* Ajustements finaux : pages internes, mentions légales, responsive */
.service-content a { color: var(--primary); font-weight: 900; }
.service-content a:hover { color: var(--accent); }
.site-footer a { width: fit-content; }
@media (max-width: 780px) {
.service-content article, .local-sticky-card { padding: 22px; }
  .site-footer a { width: auto; }
}


/* Sécurité : le contenu reste visible si JavaScript ne se charge pas en local. */
body:not(.js-enabled) .reveal {
  opacity: 1;
  transform: none;
}

/* Footer bottom line */
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.62);
  font-size: 14px;
  text-align: center;
}

.site-footer .footer-bottom a {
  display: inline;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.site-footer .footer-bottom a:hover {
  color: var(--accent);
}

/* Mentions légales - page texte épurée */
.legal-page {
  background: #fff;
}

.legal-hero {
  padding: 112px 0 46px;
  background: linear-gradient(180deg,#fff,var(--soft));
}

.legal-content-section {
  padding: 64px 0 90px;
  background: #fff;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin: 42px 0 14px;
  font-size: clamp(24px,3vw,34px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.legal-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.legal-content a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media(max-width:780px) {
  .legal-hero {
    padding: 88px 0 36px;
  }

  .legal-content-section {
    padding: 48px 0 68px;
  }

  .footer-bottom {
    text-align: left;
  }
}


/* Hero harmonisé : home + pages internes */
.hero.ux-hero,
.local-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 12%, rgba(241,117,16,.12), transparent 34%), radial-gradient(circle at 86% 10%, rgba(255,255,255,.10), transparent 30%);
  padding: 42px 0 20px 0;
}

.hero.ux-hero .hero-grid,
.local-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.hero-visual.ux-hero-visual,
.local-hero-card {
  position: relative;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual.ux-hero-visual img,
.local-hero-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
}

.hero-visual.ux-hero-visual::before,
.local-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg,rgba(54,85,226,.18),rgba(241,117,16,.16));
  z-index: -1;
  transform: rotate(-2deg) scale(.97);
}

.local-hero-card ul,
.local-hero-card li {
  display: none !important;
}

@media(max-width:1020px) {
  .hero.ux-hero .hero-grid,
  .local-hero-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width:780px) {
  .hero.ux-hero,
  .local-hero {
    padding-top: 74px;
  }
}


/* Section Pourquoi choisir WP Réparateur */
.why-wp-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.why-wp-head {
  margin-top:50px;
}

.why-wp-head h2 {
  max-width: 900px;
}

.why-wp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.why-wp-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(22,49,149,.07);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.why-wp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241,117,16,.44);
  box-shadow: var(--shadow);
}

.why-wp-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(54,85,226,.10);
  color: var(--primary);
  font-weight: 900;
}

.why-wp-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.why-wp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.why-wp-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 3px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .22s ease, transform .22s ease;
}

.why-wp-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .why-wp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .why-wp-grid {
    grid-template-columns: 1fr;
  }

  .why-wp-card {
    min-height: auto;
    padding: 24px;
  }
}


/* Recueil interactif - bugs WordPress fréquents */
.bug-recueil-section {
  background: radial-gradient(circle at 12% 16%, rgba(54,85,226,.10), transparent 34%), linear-gradient(135deg,#fff,var(--soft));
}

.bug-recueil-head {
  max-width: 900px;
}

.bug-recueil {
  display: grid;
  gap: 14px;
}

.bug-item {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(22,49,149,.06);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.bug-item:hover,
.bug-item[open] {
  border-color: rgba(241,117,16,.38);
  box-shadow: var(--shadow);
}

.bug-item[open] {
  transform: translateY(-2px);
}

.bug-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr auto 24px;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  color: var(--ink);
  list-style: none;
}

.bug-item summary::-webkit-details-marker {
  display: none;
}

.bug-item summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(54,85,226,.10);
  color: var(--primary);
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.bug-item[open] summary::after {
  content: "−";
  background: var(--accent);
  color: var(--white);
}

.bug-icon {
  width: 58px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.bug-title {
  font-size: clamp(18px,2vw,22px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.bug-level {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(241,117,16,.10);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.bug-answer {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  padding: 0 22px 22px 96px;
}

.bug-answer div {
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid rgba(17,23,47,.08);
}

.bug-answer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bug-answer p {
  margin: 0;
  color: var(--muted);
}

.bug-answer code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(17,23,47,.08);
  color: var(--ink);
  font-size: .92em;
}

.bug-recueil-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 26px;
  background: var(--ink);
  color: var(--white);
}

.bug-recueil-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-weight: 700;
}

@media (max-width: 780px) {
  .bug-item summary {
    grid-template-columns: 48px 1fr 24px;
    gap: 12px;
    padding: 18px;
  }

  .bug-icon {
    width: 48px;
    height: 42px;
  }

  .bug-level {
    grid-column: 2 / 3;
    width: fit-content;
    margin-top: -4px;
  }

  .bug-item summary::after {
    grid-column: 3;
    grid-row: 1;
  }

  .bug-answer {
    grid-template-columns: 1fr;
    padding: 0 18px 18px;
  }

  .bug-recueil-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .bug-recueil-cta .btn {
    width: 100%;
  }
}

.refonte-content-section .refonte-intro {
    max-width: 920px;
    margin: 0 auto 44px;
    text-align: center;
}
.refonte-content-section .refonte-intro .eyebrow {
    margin-bottom: 12px;
}
.refonte-content-section .refonte-intro h2 {
    margin-bottom: 18px;
}
.refonte-content-section .refonte-intro p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.75;
}
.refonte-content-section .refonte-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}
.refonte-content-section .refonte-card {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(54, 85, 226, .12);
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(54,85,226,.045));
    box-shadow: 0 22px 60px rgba(15, 23, 42, .07);
    overflow: hidden;
}
.refonte-content-section .refonte-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 5px;
    height: 100%;
    background: #3655E2;
    opacity: .85;
}
.refonte-content-section .refonte-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.15;
}
.refonte-content-section .refonte-card p {
    margin: 0;
    line-height: 1.72;
}
.refonte-content-section .refonte-card p + p {
    margin-top: 14px;
}
.refonte-content-section .refonte-card.highlight-card {
    background: #3655E2;
    color: #fff;
}

.refonte-content-section .refonte-card.highlight-card p,
.refonte-content-section .refonte-card.highlight-card h3 {
    color: #fff;
}
@media (max-width: 860px) {
    .refonte-content-section .refonte-intro {
        text-align: left;
        margin-bottom: 28px;
    }
    .refonte-content-section .refonte-intro p {
        margin: 0;
    }
    .refonte-content-section .refonte-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .refonte-content-section .refonte-card {
        padding: 26px;
        border-radius: 22px;
    }
}

/* Page création WordPress : offres, process et choix de WordPress */
.wordpress-offer-section {
  padding: 90px 0;
  background: linear-gradient(180deg,#fff,var(--soft));
}
.wordpress-offer-head { max-width: 860px; margin-bottom: 38px; }
.wordpress-offer-head p:last-child { max-width: 930px; color: var(--muted); font-size: 18px; }
.wordpress-site-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.wordpress-site-card { padding: 34px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 44px rgba(22,49,149,.07); }
.wordpress-site-card.featured { background: linear-gradient(145deg,var(--primary),var(--primary-dark)); color: #fff; }
.wordpress-site-tag { display: inline-flex; margin-bottom: 22px; padding: 8px 12px; border-radius: 999px; background: rgba(54,85,226,.10); color: var(--primary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.wordpress-site-card.featured .wordpress-site-tag { background: rgba(255,255,255,.14); color: #fff; }
.wordpress-site-card h3 { font-size: clamp(26px,3vw,36px); line-height: 1.05; }
.wordpress-site-card p { color: var(--muted); font-size: 17px; }
.wordpress-site-card.featured p { color: rgba(255,255,255,.76); }
.wordpress-site-card ul, .wordpress-why-box ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.wordpress-site-card li, .wordpress-why-box li { position: relative; padding-left: 28px; font-weight: 800; }
.wordpress-site-card li::before, .wordpress-why-box li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.wordpress-site-card.featured li::before { color: #fff; }
.wordpress-process { margin-top: 72px; }
.wordpress-process-head {margin-bottom: 32px; }
.wordpress-process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.wordpress-process-grid article { padding: 26px; border-radius: 24px; background: #fff; border: 1px solid var(--line); }
.wordpress-process-grid strong { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 22px; border-radius: 15px; background: rgba(54,85,226,.10); color: var(--primary); }
.wordpress-process-grid h3 { font-size: 21px; }
.wordpress-process-grid p { margin: 0; color: var(--muted); }
.wordpress-training-box { display: grid; grid-template-columns: .65fr 1.35fr; gap: 32px; align-items: center; margin-top: 22px; padding: 30px; border-radius: 26px; background: #fff; border: 1px solid rgba(241,117,16,.28); box-shadow: 0 18px 44px rgba(22,49,149,.06); }
.wordpress-training-box span { display: inline-block; margin-bottom: 8px; color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.wordpress-training-box h3, .wordpress-training-box p { margin-bottom: 0; }
.wordpress-training-box p { color: var(--muted); font-size: 17px; }
.wordpress-why-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; margin-top: 72px; padding: 42px; border-radius: 30px; background: var(--ink); color: #fff; }
.wordpress-why-box h2 { margin-bottom: 0; }
.wordpress-why-content p { color: rgba(255,255,255,.72); font-size: 18px; }
.wordpress-why-box li { color: #fff; }
@media(max-width:1020px) {
  .wordpress-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .wordpress-why-box { grid-template-columns: 1fr; gap: 20px; }
}
@media(max-width:780px) {
  .wordpress-offer-section { padding: 68px 0; }
  .wordpress-site-grid, .wordpress-process-grid, .wordpress-training-box { grid-template-columns: 1fr; }
  .wordpress-site-card, .wordpress-why-box { padding: 26px; }
  .wordpress-process, .wordpress-why-box { margin-top: 50px; }
}


/* ===== Mise en ligne 2026 : responsive, accessibilité et stabilité ===== */
html { scroll-padding-top: 96px; }
body { overflow-x: clip; }
img { height: auto; }
a, button, input, select { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Le contenu reste visible sans JavaScript ; l’animation ne s’active qu’avec JS. */
.reveal { opacity: 1; transform: none; }
html.js-enabled body .reveal { opacity: 0; transform: translateY(22px); }
html.js-enabled body .reveal.visible { opacity: 1; transform: translateY(0); }

.form-note a { display: inline; color: var(--primary); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.lead-status.is-success { color: #19735f; }
.lead-status.is-error { color: #b42318; }
.contact-submit[disabled] { cursor: wait; opacity: .72; transform: none; }

.main-nav a[aria-current="page"] { color: var(--primary); }
.service-card a { align-items: center; min-height: 44px; }
.site-footer a, .legal-content a, .service-content a { overflow-wrap: anywhere; }

@media (max-width: 1020px) {
  .hero.ux-hero .hero-grid, .local-hero-grid { gap: 30px; }
  .hero-copy { max-width: 760px; }
  .hero-visual, .local-hero-card { max-width: 680px; margin-inline: auto; }
  .contact-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 82px; }
  .site-header { padding: 12px 0; }
  .brand img { width: 150px; height: auto; }
  .menu-toggle { min-width: 44px; min-height: 44px; border-radius: 12px; }
  .main-nav {
    inset: 68px 14px auto;
    max-height: calc(100dvh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 4px;
  }
  .main-nav a { min-height: 46px; display: flex; align-items: center; }
  .main-nav .nav-cta { justify-content: center; }
  body.menu-open { overflow: hidden; }
  html:not(.js-enabled) .menu-toggle { display: none; }
  html:not(.js-enabled) .main-nav { position: static; display: flex; width: 100%; max-height: none; margin-top: 10px; box-shadow: none; border: 1px solid var(--line); }
  html:not(.js-enabled) .header-inner { flex-wrap: wrap; }
  .hero.ux-hero, .local-hero { padding: 54px 0 28px; }
  .section-pad { padding: 64px 0; }
  h1 { font-size: clamp(38px, 11vw, 52px); line-height: .98; letter-spacing: -.06em; overflow-wrap: anywhere; }
  h2 { font-size: clamp(30px, 9vw, 42px); line-height: 1.02; overflow-wrap: anywhere; }
  .hero-lead, .section-head p, .contact-intro p { font-size: 17px; }
  .hero-actions { margin: 26px 0 22px; }
  .hero-actions .btn, .bug-recueil-cta .btn { width: 100%; }
  .contact-section { padding: 30px 0 64px; }
  .contact-block { padding: 20px 0; }
  .contact-form { padding: 20px; border-radius: 20px; }
  .field input, .contact-form select { min-height: 52px; border-radius: 15px; }
  .footer-grid { gap: 28px; }
  .site-footer { padding: 44px 0 32px; }
  .wordpress-site-card, .wordpress-process-grid article, .refonte-content-section .refonte-card { padding: 24px; }
  .wordpress-why-box { padding: 26px 22px; }
  .why-wp-head { margin-top: 10px; }
}

@media (max-width: 420px) {
  .container, .header-inner { width: calc(100% - 24px); }
  h1 { font-size: clamp(34px, 11.5vw, 44px); }
  h2 { font-size: clamp(29px, 9.5vw, 38px); }
  .btn { width: 100%; padding-inline: 17px; }
  .contact-form { padding: 17px; }
  .bug-item summary { grid-template-columns: 44px minmax(0,1fr) 24px; padding: 16px; }
  .bug-title { overflow-wrap: anywhere; }
  .wa-float { width: 60px; height: 60px; right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  html.js-enabled body .reveal { opacity: 1; transform: none; }
}
