@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2");
}

:root {
  --ink: #0b1b33;
  --text: #2a3547;
  --muted: #5b6578;
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-soft: #eaf0ff;
  --accent: #ffb020;
  --accent-soft: #fff4dc;
  --accent-ink: #9a5b00;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --border: #e2e7f0;
  --field-border: #8390a5;
  --error: #b42318;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgb(11 27 51 / 6%), 0 1px 3px rgb(11 27 51 / 8%);
  --shadow: 0 4px 6px -2px rgb(11 27 51 / 5%), 0 14px 28px -8px rgb(11 27 51 / 14%);
  --shadow-lg: 0 30px 60px -16px rgb(11 27 51 / 28%);
  --container: 1160px;
  --header-h: 72px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 750;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

strong {
  color: var(--ink);
}

a {
  color: var(--primary);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--primary-dark);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--primary-soft);
}

.skip-link {
  position: absolute;
  top: 0;
  left: -9999px;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.narrow {
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--primary-soft);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.lead {
  max-width: 620px;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--muted);
}

.highlight {
  background-image: linear-gradient(rgb(255 176 32 / 45%), rgb(255 176 32 / 45%));
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 0.32em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* En-tête */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / 90%);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), var(--ink));
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.site-nav a:hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  background: var(--primary-soft);
  color: var(--primary);
}

.site-nav .nav-cta {
  margin-left: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--ink);
  color: #fff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s, background-color 0.2s;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Boutons et liens */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.65rem;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 10px 22px -10px rgb(29 78 216 / 65%);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 26px -10px rgb(29 78 216 / 60%);
  color: #fff;
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.btn-ghost {
  background: var(--bg);
  box-shadow: inset 0 0 0 2px var(--border);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--bg);
  box-shadow: inset 0 0 0 2px var(--primary);
  color: var(--primary);
}

.btn-light {
  background: #fff;
  box-shadow: 0 10px 22px -10px rgb(0 0 0 / 45%);
  color: var(--ink);
}

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

.btn-arrow::after,
.link-arrow::after {
  content: "→";
  content: "→" / "";
  transition: transform 0.2s;
}

.btn-arrow:hover::after,
.link-arrow:hover::after {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  text-decoration: none;
}

/* Icônes */
.icon-badge {
  display: grid;
  flex: none;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.icon-badge.amber {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.check {
  display: grid;
  flex: none;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
}

.check svg {
  width: 14px;
  height: 14px;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 700px;
  margin-bottom: 2.75rem;
}

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

.center-cta {
  margin: 3rem 0 0;
  text-align: center;
}

.hero,
.page-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 88% -10%, rgb(29 78 216 / 14%), transparent 60%),
    radial-gradient(700px 420px at -10% 115%, rgb(255 176 32 / 16%), transparent 60%),
    var(--bg-soft);
}

.hero::before,
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 75% 20%, #000 10%, transparent 65%);
  mask-image: radial-gradient(ellipse at 75% 20%, #000 10%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.hero > .container,
.page-header > .container {
  position: relative;
}

.hero {
  padding: 5rem 0 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 4.4vw, 3.25rem);
}

.hero .lead {
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header {
  padding: 4.5rem 0 3.75rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header .lead {
  margin-bottom: 0;
}

/* Maquette décorative */
.hero-visual {
  position: relative;
  padding: 2rem 0 2.75rem 1.5rem;
}

.mock-browser {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.mock-bar > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff6b6b;
}

.mock-bar > span:nth-child(2) {
  background: #ffc34d;
}

.mock-bar > span:nth-child(3) {
  background: #3ecf8e;
}

.mock-url {
  flex: 1;
  margin-left: 10px;
  padding: 3px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.mock-page {
  padding: 18px 20px 22px;
}

.mock-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.mock-nav > span {
  width: 34px;
  height: 7px;
  border-radius: 4px;
  background: #e3e8f1;
}

.mock-nav > .mock-logo {
  width: 22px;
  height: 22px;
  margin-right: auto;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--primary), var(--ink));
}

.mock-line {
  height: 7px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: #e3e8f1;
}

.mock-title {
  height: 14px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: var(--ink);
}

.mock-button {
  width: 96px;
  height: 26px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--primary);
}

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

.mock-cards > span {
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
}

.w-85 { width: 85%; }
.w-55 { width: 55%; }
.w-90 { width: 90%; }
.w-70 { width: 70%; }

.mock-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.1rem 0.8rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--ink);
  animation: float 6s ease-in-out infinite;
}

.mock-float strong {
  display: block;
  font-size: 0.9rem;
}

.mock-float small {
  font-size: 0.78rem;
  color: var(--muted);
}

.mock-float .icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.mock-float .icon-badge svg {
  width: 20px;
  height: 20px;
}

.mock-google {
  bottom: 0;
  left: -0.5rem;
}

.mock-mail {
  top: -1.25rem;
  right: -0.5rem;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Blocs */
.split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: start;
  gap: 3rem;
}

.split h2 {
  margin: 0;
}

.split p {
  margin: 0;
  font-size: 1.125rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.card .icon-badge {
  margin-bottom: 1.35rem;
}

.card h2 {
  font-size: 1.35rem;
  letter-spacing: -0.015em;
}

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

.card-num {
  position: absolute;
  top: 1.6rem;
  right: 1.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #b8c2d3;
}

.offer-panel {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow);
}

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

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

.stat {
  padding: 1.6rem 1rem;
  border-radius: var(--radius);
  background: var(--bg-soft);
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--primary);
}

.stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--ink) 0%, #12306b 55%, var(--primary) 100%);
  text-align: center;
  color: #dce6f7;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 176 32 / 22%), transparent 65%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
  color: #fff;
}

.cta-band .lead {
  margin: 0 auto 2.25rem;
  color: #dce6f7;
}

/* Services */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  padding-top: 4.25rem;
  counter-increment: step;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -1rem;
  left: 64px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c7d0df 0 8px, transparent 8px 14px);
}

.timeline h3 {
  margin-bottom: 0.4rem;
}

.timeline p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 2.75rem;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  color: #c3cde0;
}

.price-card::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(29 78 216 / 55%), transparent 65%);
  pointer-events: none;
}

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

.price-tag {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.price-tag small {
  margin-left: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #c3cde0;
}

.checklist {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.price-card .check {
  background: rgb(255 255 255 / 12%);
  color: var(--accent);
}

.price-card .btn {
  width: 100%;
}

.price-notes {
  display: grid;
  gap: 1.25rem;
}

.note {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.note p {
  margin: 0;
}

.faq {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq details[open] {
  border-color: #c7d0df;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  content: "";
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform 0.2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover {
  color: var(--primary);
}

.faq-answer {
  padding: 0 1.5rem 1.35rem;
}

.faq-answer p {
  margin: 0;
}

/* Page 404 */
.error-page {
  padding: 7rem 0;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--ink));
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(5.5rem, 16vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
}

.error-page .lead {
  margin: 0 auto 2.25rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* À propos */
.about-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 3rem;
}

.profile-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.portrait {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  margin-bottom: 1.4rem;
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 15%, rgb(255 176 32 / 40%), transparent 55%),
    linear-gradient(160deg, var(--primary) 0%, var(--ink) 100%);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}

.profile-name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.profile-role {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.facts {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

.facts svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Réalisations */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  gap: 1.5rem;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #c7d0df;
  background: var(--bg-soft);
  box-shadow: none;
  text-align: center;
}

.mock-small {
  margin-top: 1.75rem;
  box-shadow: var(--shadow);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: start;
  gap: 2rem;
}

.form-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  margin-top: 1.75rem;
}

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

.form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--field-border);
  border-radius: 12px;
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px var(--primary-soft);
}

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

.form input:user-invalid,
.form textarea:user-invalid {
  border-color: var(--error);
}

.form .hp {
  display: none;
}

.form-status {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.form-status:empty {
  display: none;
}

.form-note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-side {
  display: grid;
  gap: 1.5rem;
}

.side-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.side-card h2,
.form-card h2 {
  font-size: 1.4rem;
  letter-spacing: -0.015em;
}

.side-card-soft {
  border-color: transparent;
  background: var(--bg-soft);
}

.side-card-soft .icon-badge {
  margin-bottom: 1.1rem;
}

.side-card p:last-child {
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.contact-list a {
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

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

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Mentions légales */
.legal section + section {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.legal h2 {
  font-size: 1.4rem;
}

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

.legal-list li {
  padding: 0.3rem 0;
}

/* Pied de page */
.site-footer {
  padding: 4.5rem 0 2rem;
  background: var(--ink);
  font-size: 0.95rem;
  color: #b9c4d6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.site-footer .brand {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
}

.footer-title {
  margin: 0 0 1rem;
  font-weight: 700;
  color: #fff;
}

.site-footer ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #d9e1ee;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.75rem;
  font-size: 0.88rem;
  color: #8e9bb2;
}

.footer-bottom p {
  margin: 0;
}

/* Tablette : 481 px à 1024 px */
@media (max-width: 1024px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.25rem 0 1.25rem;
  }

  .site-nav a {
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }

  .site-nav .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }

  .hero-grid,
  .split,
  .offer-panel,
  .pricing,
  .about-header,
  .work-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding-left: 0;
  }

  .mock-google {
    left: -0.25rem;
  }

  .split {
    gap: 1.25rem;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 1.75rem;
  }

  .timeline li::after {
    display: none;
  }

  .profile-card {
    max-width: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile : 480 px et moins */
@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .container {
    padding: 0 1.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

  .page-header {
    padding: 3rem 0 2.75rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions .btn,
  .center-cta .btn,
  .cta-band .btn,
  .error-actions .btn {
    width: 100%;
  }

  .faq summary {
    padding: 1.1rem 1.2rem;
  }

  .faq-answer {
    padding: 0 1.2rem 1.2rem;
  }

  .error-page {
    padding: 4.5rem 0;
  }

  .card,
  .side-card,
  .profile-card {
    padding: 1.5rem;
  }

  .offer-panel,
  .form-card,
  .price-card {
    padding: 1.75rem 1.4rem;
  }

  .stats,
  .timeline,
  .about-grid,
  .form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    padding: 0 0 0 4.25rem;
    min-height: 50px;
  }

  .note {
    flex-direction: column;
    padding: 1.4rem;
  }

  .cta-band {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
