/* ===========================================================
   MOW-LOGO — Design tokens
   Encre profonde + papier crème + orange signature
=========================================================== */
:root {
  --ink:        #0E0E10;
  --ink-soft:   #1C1C1F;
  --paper:      #F7F4ED;
  --paper-dim:  #ECE7DA;
  --accent:     #FF5A1F;
  --accent-soft:#FFB088;
  --stone:      #8B8378;
  --stone-light:#B7AFA1;
  --line:       rgba(247,244,237,0.12);
  --line-dark:  rgba(14,14,16,0.10);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --container: 1180px;
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--accent); color: var(--ink); }

/* Subtle grain overlay for texture, sits above background, below content */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow-center { justify-content: center; width: 100%; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-title-center { text-align: center; max-width: 720px; margin: 0 auto; }
.section-sub {
  text-align: center;
  max-width: 600px;
  margin: 1.1rem auto 0;
  color: var(--stone-light);
  font-size: 1.02rem;
}

section { position: relative; z-index: 2; padding: 6.5rem 1.5rem; }

/* ===========================================================
   BUTTONS
=========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover { transform: translateY(-2px); background: #FF7240; }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-comeup {
  width: 100%;
  justify-content: center;
  background: transparent;
  border: 1.5px dashed var(--accent-soft);
  color: var(--paper);
  position: relative;
}
.btn-comeup:hover { background: rgba(255,90,31,0.08); border-style: solid; transform: translateY(-2px); }
.btn-comeup-pending { border-color: var(--stone); opacity: 0.75; cursor: not-allowed; }
.comeup-badge {
  background: #FFEE66;
  color: #0E0E10;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.6rem;
  border-radius: 5px;
}
.comeup-badge svg { display: block; }

/* ===========================================================
   NAV
=========================================================== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,14,16,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.05rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-mark {
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav-mark-img {
  height: 34px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.86rem;
  font-weight: 500;
}
.nav-links a { color: var(--stone-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--paper); }
.nav-cta {
  background: var(--paper);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--paper); }

/* ===========================================================
   HERO
=========================================================== */
.hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 88vh;
}
.hero-inner { max-width: 620px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero-comma { color: var(--accent); }
.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.1rem;
  color: var(--stone-light);
  max-width: 460px;
}
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--paper);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--stone-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-stat-sep {
  width: 1px; height: 32px;
  background: var(--line);
}

/* Hero portrait — signature element */
.hero-portrait {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-portrait-orbit {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-portrait-frame {
  position: relative;
  width: 92%;
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease;
  z-index: 2;
}
.hero-portrait-frame:hover { transform: rotate(0deg); }
.hero-portrait-img {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: linear-gradient(165deg, var(--ink-soft), var(--ink));
  box-shadow: 0 20px 44px rgba(0,0,0,0.45);
}
.stat-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  z-index: 3;
  animation: badge-float 6s ease-in-out infinite;
  white-space: nowrap;
}
.stat-badge-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
}
.stat-badge-num-accent { color: var(--accent); }
.stat-badge-label {
  font-size: 0.68rem;
  color: var(--stone-light);
  line-height: 1.2;
}
.stat-badge-flag { font-size: 1.05rem; line-height: 1; }

.stat-badge-1 { top: 2%;  left: -2%;  animation-delay: 0s; }
.stat-badge-2 { top: 14%;  right: -4%; animation-delay: 1.2s; }
.stat-badge-3 { bottom: 26%; left: -6%; animation-delay: 2.4s; }
.stat-badge-4 { bottom: 2%; right: -2%; animation-delay: 3.6s; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ===========================================================
   TRUST MARQUEE
=========================================================== */
.trust { padding: 3rem 1.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-bottom: 1.6rem;
}
.trust-marquee { overflow: hidden; max-width: var(--container); margin: 0 auto; }
.trust-track {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  white-space: nowrap;
  animation: scroll-left 26s linear infinite;
}
.trust-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.6);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.trust-logo:hover {
  opacity: 0.9;
  filter: grayscale(0) brightness(1);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================================
   ABOUT
=========================================================== */
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.about-card {
  background: linear-gradient(155deg, var(--ink-soft), var(--ink));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.about-card-eyebrow { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); font-weight: 700; }
.about-card-name { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; }
.about-card-role { color: var(--stone-light); font-size: 0.95rem; }

.about-pillars { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem 1.2rem;
}
.pillar-icon { font-size: 1.1rem; }
.pillar p { font-size: 0.92rem; color: var(--stone-light); }

.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 1.2rem; line-height: 1.2; }
.about-text p { color: var(--stone-light); margin-bottom: 1.1rem; }
.about-text strong { color: var(--paper); }
.about-cta-line { color: var(--paper); font-style: italic; font-family: var(--font-display); font-size: 1.1rem; margin: 1.6rem 0; }

/* ===========================================================
   METHODE
=========================================================== */
.methode { background: var(--ink-soft); text-align: center; }
.steps {
  max-width: var(--container);
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.step {
  border-top: 2px solid var(--line);
  padding-top: 1.2rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 600;
}
.step h3 { margin: 0.6rem 0 0.5rem; font-size: 1.05rem; font-weight: 600; }
.step p { color: var(--stone-light); font-size: 0.92rem; }
.methode-cta { margin-top: 3rem; }

/* ===========================================================
   PORTFOLIO
=========================================================== */
.portfolio-grid {
  max-width: var(--container);
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.port-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.port-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.port-card-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.port-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.port-card-visual-16-9 {
  aspect-ratio: 1260/708;
}
.port-card-visual-16-9 img {
  object-fit: contain;
}
.port-card:hover .port-card-visual img { transform: scale(1.06); }
.port-card h3 { padding: 1.2rem 1.2rem 0.3rem; font-size: 1.05rem; font-weight: 600; }
.port-card p { padding: 0 1.2rem 1.4rem; color: var(--stone-light); font-size: 0.88rem; }
.port-card-link { display: block; color: inherit; }
.port-card-cta {
  display: block;
  padding: 0 1.2rem 1.4rem;
  margin-top: -0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}
.portfolio-more { text-align: center; margin-top: 3rem; }

/* ---- Pending visual placeholder ---- */
.port-card-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, var(--ink-soft) 0 10px, var(--ink) 10px 20px);
  border: 1px dashed var(--line);
}
.pending-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--stone-light);
  background: var(--ink);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--line);
}

/* ---- Portfolio full page header ---- */
.portfolio-page-hero {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--stone-light);
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.portfolio-full { padding-top: 2rem; }

.portfolio-cta {
  text-align: center;
  background: var(--ink-soft);
}
.portfolio-cta .methode-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Blog list ---- */
.blog-list {
  max-width: var(--container);
  margin: 2rem auto 0;
}
.blog-empty {
  text-align: center;
  color: var(--stone-light);
  background: var(--ink-soft);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 3rem 1.5rem;
  font-size: 1rem;
}
.blog-list .portfolio-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.blog-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.blog-card-link { display: block; color: inherit; }
.blog-card-visual { aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.blog-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.blog-card:hover .blog-card-visual img { transform: scale(1.06); }
.blog-card-body { padding: 1.2rem; }
.blog-card-date { font-size: 0.75rem; color: var(--stone); text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 600; margin: 0.5rem 0 0.5rem; }
.blog-card-body p { color: var(--stone-light); font-size: 0.88rem; margin-bottom: 0.8rem; }
.blog-card-cta { font-size: 0.82rem; font-weight: 600; color: var(--accent); }

/* ---- Pagination ---- */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.pagination-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--paper);
  padding: 0.6rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.pagination-link:hover { border-color: var(--accent); color: var(--accent); }
.pagination-disabled { opacity: 0.3; pointer-events: none; }
.pagination-numbers { display: flex; gap: 0.5rem; }
.pagination-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--stone-light);
  transition: background 0.2s, color 0.2s;
}
.pagination-number:hover { background: var(--ink-soft); color: var(--paper); }
.pagination-current {
  background: var(--accent);
  color: var(--ink);
}

/* ---- Article page ---- */
.article-page {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 3rem;
}
.article-date {
  color: var(--stone);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.article-intro {
  font-size: 1.1rem;
  color: var(--stone-light);
  margin-bottom: 2rem;
}
.article-cover {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.article-cover img { width: 100%; display: block; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
}
.article-body p {
  color: var(--stone-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.article-body ul {
  margin: 0 0 1.3rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.article-body ul li {
  color: var(--stone-light);
  font-size: 1rem;
  padding-left: 1.3rem;
  position: relative;
}
.article-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.article-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--ink-soft);
  border-radius: 8px;
  text-align: center;
}
.article-cta p { color: var(--paper); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 1.2rem; }

/* ---- À lire aussi ---- */
.article-related {
  margin-top: 3rem;
}
.article-related h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.article-related-card {
  display: block;
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.article-related-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.article-related-card span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.article-related-card p {
  font-size: 0.88rem;
  color: var(--paper);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 720px) {
  .article-related-grid { grid-template-columns: 1fr; }
}

/* ---- Legal pages ---- */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 3rem;
}
.legal-page .section-title { text-align: left; margin-bottom: 0.4rem; }
.legal-updated {
  color: var(--stone);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
  color: var(--paper);
}
.legal-page p {
  color: var(--stone-light);
  margin-bottom: 1rem;
  font-size: 0.96rem;
}
.legal-page a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(255,90,31,0.4); }
.legal-page a:hover { text-decoration-color: var(--accent); }
.legal-list {
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-list li {
  color: var(--stone-light);
  font-size: 0.94rem;
  padding-left: 1.2rem;
  position: relative;
}
.legal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.legal-list strong { color: var(--paper); }
.legal-note {
  background: var(--ink-soft);
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: var(--stone-light);
}

/* ===========================================================
   TARIFS
=========================================================== */
.pricing-grid {
  max-width: var(--container);
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.price-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-featured {
  border-color: var(--accent);
  background: linear-gradient(165deg, var(--ink-soft), #251a14);
  transform: translateY(-8px);
}
.price-tag {
  position: absolute;
  top: -12px; left: 1.8rem;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}
.price-emoji { font-size: 1.6rem; }
.price-head h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 0.6rem 0 0.5rem; }
.price-head p { color: var(--stone-light); font-size: 0.9rem; min-height: 2.6em; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  margin: 1.2rem 0 1.5rem;
  color: var(--paper);
}
.price-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.8rem; flex-grow: 1; }
.price-list li {
  font-size: 0.88rem;
  color: var(--stone-light);
  padding-left: 1.3rem;
  position: relative;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-list li.price-delay {
  color: var(--paper);
  font-weight: 600;
  margin-top: 0.4rem;
  padding-left: 1.3rem;
}
.price-list li.price-delay::before { content: "⏱"; color: var(--accent); }

.tarifs-note {
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--stone-light);
  background: var(--ink-soft);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 1rem 1.4rem;
}
.tarifs-note strong { color: var(--accent); }

/* ===========================================================
   AVIS
=========================================================== */
.avis { background: var(--ink-soft); }
.avis-grid {
  max-width: var(--container);
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.avis-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.8rem;
}
.avis-card p { font-size: 0.94rem; color: var(--paper); line-height: 1.65; font-style: italic; }
.avis-card cite { display: block; margin-top: 1.2rem; color: var(--accent); font-size: 0.85rem; font-weight: 600; font-style: normal; }

/* ===========================================================
   CONTACT
=========================================================== */
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}
.contact-intro h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 600; margin-bottom: 1rem; }
.contact-intro p { color: var(--stone-light); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.88rem; color: var(--stone-light); }
.contact-form input, .contact-form textarea {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.contact-form button { align-self: flex-start; }
.h-captcha { margin: 0.4rem 0; }
.contact-success { color: var(--accent); font-weight: 600; }

/* ===========================================================
   FOOTER
=========================================================== */
.footer { background: #050506; padding: 4rem 1.5rem 2rem; position: relative; z-index: 2; }
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
.footer-brand-img { height: 30px; width: auto; max-width: 100%; display: block; }
.footer-brand p { color: var(--stone); font-size: 0.85rem; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--stone); margin-bottom: 0.4rem; }
.footer-col a { color: var(--stone-light); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-copy { text-align: center; margin-top: 1.6rem; color: var(--stone); font-size: 0.82rem; }

.back-to-top {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
}
.cookie-banner-text {
  color: var(--stone-light);
  font-size: 0.88rem;
  max-width: 640px;
  margin: 0;
}
.cookie-banner-text a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
}

@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { justify-content: center; }
}
.back-to-top:hover { transform: translateY(-3px); }

.whatsapp-float {
  position: fixed;
  bottom: 5.6rem; right: 1.8rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 22px rgba(37,211,102,0.45);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 720px) {
  .whatsapp-float { bottom: 5.2rem; right: 1.2rem; width: 46px; height: 46px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ===========================================================
   RESPONSIVE
=========================================================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 3rem; }
  .hero-portrait { order: -1; margin: 0 auto 2rem; }
  .hero-portrait-orbit { max-width: 300px; }
  .stat-badge { padding: 0.4rem 0.65rem; gap: 0.35rem; }
  .stat-badge-num { font-size: 0.9rem; }
  .stat-badge-label { font-size: 0.6rem; }
  .stat-badge-1 { left: 0%; }
  .stat-badge-2 { right: -2%; }
  .stat-badge-3 { left: -2%; }
  .stat-badge-4 { right: 0%; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; order: -1; }
  .avis-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink-soft);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }
  section { padding: 4rem 1.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem 1.4rem; }
  .hero-stat-sep { display: none; }
  .steps { grid-template-columns: 1fr; }
  .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
