/* PixLabs — Digital Agency
   Light B/W, mono/tech, geometric — match logo-pixlabs.png */

:root {
  --bg: #f5f5f5;
  --bg-elevated: #ffffff;
  --bg-soft: #ebebeb;
  --surface: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --border-strong: rgba(0, 0, 0, 0.2);
  --text: #0a0a0a;
  --text-muted: #4a4a4a;
  --text-dim: #6e6e6e;
  --accent: #000000;
  --accent-bright: #111111;
  --accent-soft: rgba(0, 0, 0, 0.06);
  --accent-glow: rgba(0, 0, 0, 0.18);
  --gray: #8a8a8a;
  --radius: 4px;
  --radius-sm: 2px;
  --header-h: 80px;
  --container: 1120px;
  --font: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: #000;
}

ul,
ol {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(245, 245, 245, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  line-height: 0;
}

.logo:hover {
  color: var(--text);
  opacity: 0.85;
}

.logo-img {
  display: block;
  height: 48px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}

@media (min-width: 768px) {
  .logo-img {
    height: 64px;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}


.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.lang-toggle:hover,
.lang-dropdown.is-open .lang-toggle {
  border-color: #000;
  background: #fff;
}

.lang-toggle:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.lang-icon {
  display: block;
  flex-shrink: 0;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 80;
  min-width: 8.5rem;
  padding: 0.3rem;
  border: 1px solid var(--border-strong);
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.15rem;
}

.lang-menu[hidden] {
  display: none !important;
}

.lang-menu .lang-btn {
  width: 100%;
  justify-content: flex-start;
  padding: 0.55rem 0.65rem;
}

.lang-menu .lang-btn .lang-code {
  display: inline;
  font-size: 0.75rem;
}

.header-inner > .nav {
  margin-left: auto;
  margin-right: 0.75rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.lang-btn:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.lang-btn.is-active {
  background: #000;
  color: #fff;
}

.lang-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
  font-style: normal;
}

.lang-code {
  font-size: 0.625rem;
}

@media (max-width: 480px) {
  .lang-menu .lang-code {
    display: inline;
  }

  .lang-btn {
    padding: 0.4rem 0.45rem;
  }
}

.lang-toggle-code {
  font-size: 0.6875rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-list a:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-cta {
  color: #fff !important;
  background: #000 !important;
  margin-left: 0.5rem;
  padding: 0.65rem 1.35rem !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.04em !important;
}

.nav-cta:hover {
  background: #222 !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  background: #222;
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: #000;
  background: transparent;
}

/* ——— Eyebrow / titles ——— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 0;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-mono);
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
}

.section-lead {
  margin-top: 1.25rem;
  color: var(--text-muted);
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ——— Hero ——— */
.hero {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 7.5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--text);
  background: linear-gradient(transparent 62%, #e0e0e0 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-sub {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-aside {
  position: relative;
}

.hero-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  padding: 0;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
}

.hero-block {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 48px;
  height: 72px;
  background: #000;
  z-index: 0;
}

.hero-stat {
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.hero-stat:last-child {
  border-bottom: 0;
}

.hero-stat-accent {
  background: #000;
  color: #fff;
  border-bottom: 0;
}

.hero-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}

.hero-stat-accent .hero-stat-label {
  color: rgba(255, 255, 255, 0.55);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.hero-rule {
  width: min(100% - 2.5rem, var(--container));
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border-strong) 15%,
    #000 50%,
    var(--border-strong) 85%,
    transparent
  );
}

/* ——— Services ——— */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 28px;
  background: #000;
}

.card:hover {
  border-color: #000;
  transform: translateY(-2px);
}

.card-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.card h3 {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.card p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.soft-note {
  margin-top: 2.5rem;
  padding: 1.15rem 1.35rem;
  border-radius: 0;
  border: 1px dashed var(--border-strong);
  color: var(--text-dim);
  font-size: 0.9375rem;
  max-width: 46rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 0.85rem;
}

.soft-tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ——— Buttons size ——— */
.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ——— Focus line (replaces SMMA soft-note) ——— */
.focus-line {
  margin-top: 2.25rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  max-width: 40rem;
  padding-left: 1rem;
  border-left: 3px solid #000;
}

/* ——— Deliverables ——— */
.deliverables {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.ba-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ba-col {
  border: 1px solid var(--border-strong);
  padding: 1.35rem 1.5rem;
  background: var(--bg);
}

.ba-after {
  background: #000;
  color: #fff;
  border-color: #000;
}

.ba-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: var(--text-dim);
}

.ba-after .ba-label {
  color: rgba(255, 255, 255, 0.55);
}

.ba-col p {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.ba-after p {
  color: rgba(255, 255, 255, 0.88);
}

.ba-arrow {
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  align-self: center;
}

.deliv-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.deliv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.deliv-card:hover {
  border-color: #000;
  transform: translateY(-2px);
}

.deliv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  margin-bottom: 1rem;
}

.deliv-card h3 {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.deliv-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.deliv-cta-row {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.deliv-cta-note {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* ——— Process ——— */
.process {
  background: var(--bg);
  border-block: 0;
}

.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0;
  border: 1px solid #000;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  background: var(--bg);
  flex-shrink: 0;
}

.step h3 {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--text-muted);
  max-width: 40rem;
  font-size: 0.975rem;
}

/* ——— Tarifs ——— */
.tarifs-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: var(--shadow);
  position: relative;
}

.tarifs-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: #000;
}

.price {
  color: #000;
  font-family: var(--font-mono);
}

.tarifs-text {
  color: var(--text-muted);
  margin: 1.25rem 0 2rem;
  max-width: 32rem;
  font-size: 1.05rem;
}

.tarifs-list {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: 0;
  border: 1px solid var(--border);
}

.tarifs-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.975rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
}

.tarifs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 0;
  background: #000;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-intro > p {
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 28rem;
}

.contact-intro a {
  color: var(--text);
  font-weight: 500;
}

.contact-meta {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.contact-meta dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.contact-meta dd {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-meta a {
  color: var(--text);
  text-decoration: none;
}

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

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.field label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.field label span {
  color: #000;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%234a4a4a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #b91c1c;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

.form-hint {
  font-size: 0.875rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.form-hint.is-ok {
  color: #166534;
}

.form-hint.is-err {
  color: #b91c1c;
}

/* ——— Footer ——— */
.footer-mark {
  border-top: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.footer-mark-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  display: block;
  width: min(100%, 1120px);
  height: auto;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.25rem;
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  align-items: center;
}

.lang-switch-footer {
  order: 0;
  margin-left: auto;
  margin-right: 1rem;
}

@media (max-width: 720px) {
  .lang-switch-footer {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    justify-content: flex-start;
  }
}

.footer-brand {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.footer-meta {
  color: var(--text-dim);
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
}

.footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: #000;
}

.dot {
  opacity: 0.5;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero-grid,
  .cards,
  .tarifs-inner,
  .contact-grid,
  .deliv-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .tarifs-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ba-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ba-arrow {
    transform: rotate(90deg);
    padding: 0.15rem 0;
  }

  .hero-aside {
    order: -1;
    max-width: 28rem;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stat {
    padding: 1rem;
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }

  .hero-stat:last-child {
    border-right: 0;
  }

  .hero-stat-value {
    font-size: 1.05rem;
  }

  .hero-block {
    display: none;
  }

  .header-inner > .nav {
    margin-left: 0;
    margin-right: 0;
  }

  .header-tools {
    margin-left: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .nav-list a {
    padding: 0.85rem 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.35rem;
    text-align: center;
    justify-content: center;
    display: block;
    width: 100%;
    padding: 0.95rem 1.25rem !important;
  }

  .nav {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.75rem, var(--container));
  }

  .deliv-cards,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat:last-child {
    border-bottom: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .tarifs-inner {
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
