:root {
  --white: #FFFFFF;
  --black: #0A0A0A;
  --bg-dark: #0f1218;
  --red: #8B0000;
  --red-hover: #6B0000;
  --green: #0F6E56;
  --gray-light: #F5F5F5;
  --gray: #E8E8E8;
  --gray-text: #8e95a3;
  --text-main: #111111;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 100;
  padding: 8px 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ann-ticker-track {
  display: flex;
  width: max-content;
  animation: annTicker 60s linear infinite;
}
.ann-ticker-track:hover { animation-play-state: paused; }
.ann-ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ann-ticker-item .ann-check {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
}
.ann-ticker-sep {
  color: rgba(255,255,255,0.25);
  padding: 0 4px;
  font-size: 16px;
  font-weight: 300;
}
@keyframes annTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--gray);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }
/* Suffixe de domaine : subordonné au nom, il ne concurrence pas le rouge. */
.nav-logo small {
  font-size: 0.58em;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: 0;
  margin-left: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text-main); background: var(--gray-light); }

/* Nav right zone */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Cart icon */
.nav-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-main);
  transition: background 0.15s;
  position: relative;
}
.nav-cart:hover { background: var(--gray-light); }
.nav-cart svg { width: 18px; height: 18px; stroke: var(--text-main); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Account dropdown */
.nav-account {
  position: relative;
}
.nav-account-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  background: none;
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.nav-account-btn:hover { color: var(--text-main); border-color: #999; background: var(--gray-light); }
.nav-account-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-account-arrow { font-size: 9px; color: #666; transition: transform 0.2s; }
.nav-account.open .nav-account-arrow { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 180px;
  overflow: hidden;
  z-index: 100;
}
.nav-account.open .nav-dropdown { display: block; }
.nav-dropdown-header {
  padding: 12px 16px 8px;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--gray-light); }
.nav-dropdown a svg { width: 14px; height: 14px; stroke: var(--gray-text); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.nav-dropdown-divider { height: 1px; background: var(--gray); margin: 4px 0; }
.nav-dropdown-signup {
  padding: 10px 16px 12px;
}
.nav-dropdown-signup a {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff !important;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
}
.nav-dropdown-signup a:hover { background: var(--red-hover) !important; }

/* Design Now CTA */
.btn-nav {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--red-hover); }

/* ── PREMIUM BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #D90429 100%);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
  background: linear-gradient(135deg, #A00000 0%, #EF233C 100%);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--white);
  color: var(--text-main);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: var(--gray-light);
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--text-main);
}

/* ── PREMIUM FORM ELEMENTS ── */
.pk-input, .pk-select {
  width: 100%;
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  padding: 14px 20px !important;
  color: var(--text-main) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  outline: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}
.pk-input:focus, .pk-select:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1) !important;
}
.pk-input::placeholder { color: #555; }

.pk-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pk-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-main); transition: 0.3s; border-radius: 2px; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

.carousel-separator {
  width: 100%;
  padding: 20px 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.carousel-separator-inner {
  width: 100%;
  background: linear-gradient(135deg, #4a0000 0%, #8B0000 40%, #a01010 70%, #1a0000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 24px 14px;
  box-shadow: 0 2px 12px rgba(139,0,0,0.25);
  color: var(--white);
  text-align: center;
}
.strip-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  padding: 10px 22px;
  text-align: center;
  min-width: 130px;
}
.strip-badge-range {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.strip-badge-price {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}
.strip-badge-price span {
  font-size: 13px;
  font-weight: 500;
}
.strip-badge-quote {
  font-size: 18px;
  line-height: 1.4;
}
.carousel-separator-inner .strip-quality {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}
.carousel-strip {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--black);
  position: relative;
}
.carousel-track {
  display: flex;
  height: 100%;
  animation: carouselScroll 30s linear infinite;
  will-change: transform;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-item {
  flex-shrink: 0;
  width: 400px;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder tiles when no images loaded */
.carousel-item.placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}
@keyframes carouselScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .carousel-strip { height: 150px; }
  .carousel-item { width: 280px; height: 150px; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #1c2f50 0%, #243a60 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 38px 27px 34px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1546519638-68e109498ffc?w=1600&auto=format&fit=crop&q=60') center/cover no-repeat;
  opacity: 0.45;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,47,80,0.42) 0%, rgba(36,58,96,0.32) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.7vw, 59px);
  line-height: 1.02;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 24px rgba(0,0,0,0.7);
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: clamp(16px, 2vw, 21px);
  color: rgba(255,255,255,0.82);
  max-width: 100%;
  margin: 0 auto 20px;
  line-height: 1.35;
}

/* ── CTA CARDS ── */
.cta-cards-wrap {
  background: var(--white);
  width: 100%;
  padding: 92px 40px 80px 40px;
  margin-bottom: 0;
}
.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 88px;
  max-width: 960px;
  margin: 0 auto;
}
/* Générateur IA désactivé : 2 cartes au lieu de 3, grille recentrée. */
.cta-cards.two-cards {
  grid-template-columns: repeat(2, 1fr);
  max-width: 660px;
}
.cta-card {
  border-radius: 18px;
  padding: 44px 28px;
  min-height: 420px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.cta-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.cta-card.upload { background: linear-gradient(135deg, #0a1628 0%, #0d2447 40%, #1a4a8a 70%, #0a0f1e 100%); }
.cta-card.template { background: var(--white); border: 2px solid var(--black); }
.cta-card.ai-gen { background: linear-gradient(135deg, #4a0000 0%, #8B0000 40%, #a01010 70%, #1a0000 100%); }
.cta-card-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.cta-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.cta-card.template .cta-card-tag { color: #555; }
.cta-card .cta-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.cta-card.template .cta-card-title { color: var(--text-main); }
.cta-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.6;
}
.cta-card.template p { color: var(--gray-text); }
.cta-card-price {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 4px;
}
.cta-card.template .cta-card-price { color: var(--text-main); }
.cta-card-includes {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.7;
}
.cta-card.template .cta-card-includes { color: #333; }
.cta-card-btn {
  display: block;
  white-space: nowrap;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.3);
}
.cta-card.template .cta-card-btn {
  background: var(--black);
  color: var(--white);
  border: none;
}
.cta-card-btn:hover { background: rgba(255,255,255,0.25); }
.cta-card.template .cta-card-btn:hover { background: #333; }

.hero-micro-proofs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.micro-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.micro-proof .check { color: #4ade80; font-size: 14px; }
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.segments {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-align: center;
}
/* ── QUALITY SECTION ── */
.quality-section {
  width: 100%;
  padding: 120px 32px 36px;
  background: var(--white);
}
.quality-header {
  text-align: center;
  margin-bottom: 28px;
}
.quality-title-rule {
  width: 48px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px auto 32px;
}
.quality-title {
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #111;
  text-align: center;
  line-height: 1.3;
}
.quality-title-sub {
  font-style: italic;
  font-weight: 900;
  color: #111;
}
.quality-title-main {
  font-style: italic;
  font-weight: 900;
  color: var(--red);
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.quality-card {
  background: #f7f5f2;
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
}
.quality-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.quality-tag {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.quality-name {
  color: #111;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.quality-desc {
  color: #777;
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .quality-section { padding: 32px 16px 20px; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .quality-title { font-size: 15px; }
}

.hero-bottom {
  width: 100%;
  padding: 0 32px;
  margin-top: 64px;
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.segment-card {
  background: var(--white);
  border: 1.5px solid var(--black);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.segment-card strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  min-height: 2.6em;
  display: block;
  text-align: center;
}
.segment-card span {
  font-size: 11px;
  color: #555;
  line-height: 1.5;
}
.segments-audience {
  margin-top: 20px;
  text-align: center;
}
.segments-audience .quality-title,
.segments-audience .quality-title-rule {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.segments-audience .segments-grid {
  margin-top: 26px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}
.segments-audience-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  max-width: 1200px;
  margin: 0 auto 10px;
  padding: 0;
}
.audience-card strong {
  color: var(--red);
}

@media (max-width: 768px) {
  .cta-cards { grid-template-columns: 1fr; }
  .cta-card { min-height: auto; }
}

/* ── REASSURANCE STRIP ── */
.reassurance {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  background: var(--gray-light);
  padding: 0;
  overflow-x: auto;
}
.reassurance-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}
.reassurance-block {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--gray);
  gap: 4px;
}
.reassurance-block:last-child { border-right: none; }
.reassurance-block .icon { font-size: 22px; }
.reassurance-block .label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}

/* ── SECTIONS COMMON ── */
section { padding: 60px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-text);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 48px;
}
.step {
  padding: 32px 24px;
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0d2447 40%, #1a4a8a 70%, #0a0f1e 100%);
  border-radius: 12px;
  transition: transform 0.2s;
}
.step:hover { transform: translateY(-4px); }
.step-num {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--white);
}
.step-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.step-connector {
  display: none;
}
@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #c62b36; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid var(--navy);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: none; }
  .step:nth-child(2) { border-right: 1px solid var(--gray); }
  .step:last-child { border-right: none; border-bottom: 1px solid var(--gray); }
  .arrow-connector { display: none; }
}
@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
  .step:nth-child(2) { border-right: none; }
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray);
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
}
.why-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.why-card:hover { background: var(--gray-light); }
.why-card .icon { margin-bottom: 14px; }
.why-card h3 {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: 14px; color: var(--gray-text); line-height: 1.65; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ── GALLERY ── */
.gallery-bg { background: var(--white); padding-top: 40px; }
/* ── Template Grid ── */
.template-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 0;
  align-items: start;
}
.template-card {
  text-decoration: none;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.template-thumb {
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #f7f5f2;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.template-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(2.0);
  transform-origin: 40% 60%;
  transition: transform .25s;
}
.template-card:hover .template-thumb img {
  transform: scale(2.1);
}
.template-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
}
.template-info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
}
.template-name {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.template-cta {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}

/* Legacy gallery classes kept for compatibility */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.gallery-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.gallery-img {
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.gallery-card-body { padding: 14px 16px; }
.gallery-card-name {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.gallery-card-btn {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .template-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── PRICING ── */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--gray);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.price-tier {
  padding: 40px 24px;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--gray);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.price-tier:hover { background: var(--gray-light); }
.price-tier:last-child { border-right: none; }
.price-tier.popular {
  background: linear-gradient(135deg, #0a1628 0%, #0d2447 40%, #1a4a8a 70%, #0a0f1e 100%);
  color: var(--white);
}
.price-tier-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-range {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-text);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.price-tier.popular .price-range { color: rgba(255,255,255,0.7); }
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.price-tier.popular .price-amount { color: var(--white); }
.price-per { font-size: 13px; color: var(--gray-text); }
.price-tier.popular .price-per { color: rgba(255,255,255,0.6); }
.price-cta {
  display: block;
  margin-top: 20px;
  padding: 10px 16px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.price-cta:hover { background: #c62b36; }
.price-tier.popular .price-cta { background: var(--white); color: var(--red); }

.includes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 32px;
}
.include-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.include-item .tick { color: var(--green); font-weight: 700; }

@media (max-width: 768px) {
  .pricing-table { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pricing-table { grid-template-columns: 1fr; }
}

/* ── SOCIAL PROOF ── */
.proof-bg { background: var(--white); }
.proof-bg .section-title { color: var(--text-main); }
.proof-bg .section-sub { color: var(--gray-text); }
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.stat-block {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--gray);
  background: var(--gray-light);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--red);
  display: block;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--gray-text); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--gray-light);
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 28px 24px;
  transition: background 0.2s;
}
.testimonial:hover { background: var(--white); }
.stars { color: #FFD700; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote {
  font-size: 15px;
  color: var(--gray-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
}
.testimonial-author strong { color: var(--text-main); }
@media (max-width: 768px) {
  .testimonials { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

/* ── FAQ ── */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--gray);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-cond);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-q .faq-icon {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--red);
  transition: transform 0.3s;
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 15px; color: var(--gray-text); line-height: 1.75; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--white);
  text-align: center;
}
.contact-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.10);
  text-align: left;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-col-left,
.contact-col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-col-right {
  justify-content: space-between;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-input {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #f7f5f2;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
}
.contact-input:focus { border-color: var(--red); }
.contact-input::placeholder { color: #111 !important; opacity: 1 !important; }
.contact-input::-webkit-input-placeholder { color: #111 !important; opacity: 1 !important; }
.contact-input::-moz-placeholder { color: #111 !important; opacity: 1 !important; }
.contact-input:-ms-input-placeholder { color: #111 !important; opacity: 1 !important; }
.contact-file-label {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff8f8;
  border: 2px dashed var(--red);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.contact-file-label:hover { background: #fff0f0; border-color: #6a0000; }
.contact-file-icon { flex-shrink: 0; }
.contact-file-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.contact-file-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  font-family: var(--font-body);
}
.contact-file-sub {
  font-size: 11px;
  color: #888;
  font-family: var(--font-body);
}
.contact-file-btn {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 6px;
  flex-shrink: 0;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-file-input { display: none; }
.contact-textarea {
  flex: 1;
  resize: none;
  min-height: 160px;
}
.contact-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-btn:hover { background: #6a0000; }
.contact-error {
  font-size: 12px;
  color: #cc0000;
}
@media (max-width: 700px) {
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 20px; }
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A7A0A;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover { background: #085e08; transform: translateY(-2px); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

/* ── FOOTER ── */
.contact-input::placeholder { color: #666 !important; }

footer {
  background: linear-gradient(135deg, #4a0000 0%, #8B0000 40%, #a01010 70%, #1a0000 100%);
  color: var(--white);
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-brand-name span { color: var(--red); }
.footer-brand-name small {
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-left: 2px;
}
/* Le pied de page a un dégradé rouge : l'accent rouge de la marque y devient
   illisible. Sur ce fond, c'est le blanc qui porte l'emphase. */
.footer-brand-name { color: rgba(255,255,255,0.72); }
.footer-brand-name span { color: #FFFFFF; }
footer .nav-logo { color: rgba(255,255,255,0.72); }
footer .nav-logo span { color: #FFFFFF; }
footer .nav-logo small { color: rgba(255,255,255,0.5); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.social-link:hover { background: var(--red); }
.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #0A7A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 28px;
  animation: waPulse 2.5s infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(10,122,10,0.4); }
  50% { box-shadow: 0 4px 32px rgba(10,122,10,0.7); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease both; }
.cta-cards { animation: fadeUp 0.8s 0.2s ease both; }


/* ── CUSTOMIZE STEPS ── */
.customize-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.customize-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.customize-step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #555;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customize-step.active .customize-step-dot {
  background: var(--red);
  color: #fff;
}
.customize-step span {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.customize-step.active span { color: var(--red); }
.customize-step-line {
  flex: 1;
  height: 2px;
  background: #f5f5f5;
  min-width: 60px;
  margin-bottom: 18px;
}

/* ── UPLOAD ZONE ── */
.upload-zone {
  border: 2px dashed #ccc;
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone:hover,
.upload-zone--active {
  border-color: var(--red);
  background: #fff8f8;
}
.upload-zone-icon { margin-bottom: 10px; }
.upload-zone-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.upload-zone-title {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}
.upload-zone-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}
.upload-zone-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── UPLOAD PREVIEW CARDS ── */
.upload-preview-card {
  background: #f7f5f2;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.upload-preview-thumb {
  width: 100%;
  height: 120px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload-preview-doc {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}
.upload-preview-name {
  font-size: 11px;
  color: #333;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.upload-progress-bar {
  height: 4px;
  background: #e0ddd9;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.upload-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s;
}
.upload-status {
  font-size: 11px;
  color: #555;
}

/* ── CONTINUE BUTTON DISABLED ── */
.continue-btn-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

/* ── UPLOAD: DELETE BUTTON ── */
.upload-preview-card { position: relative; }
.upload-delete-btn {
  position: absolute;
  top: 6px; right: 6px;
  width: 22px; height: 22px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 2;
}
.upload-preview-card:hover .upload-delete-btn { opacity: 1; }

/* ── UPLOAD: QUALITY BADGE ── */
.upload-quality-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 6px;
}
.upload-quality-vector { background: #e6f7f2; color: #0f6e56; }
.upload-quality-raster { background: #fff8e6; color: #b07800; }

/* ── UPLOAD: FORMAT EXAMPLES ── */
.upload-format-examples {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.upload-format-pill {
  display: flex; align-items: center; gap: 5px;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  color: #555;
  letter-spacing: 0.04em;
}
.upload-format-pill.vector { background: #e6f7f2; color: #0f6e56; }
.upload-format-pill.raster { background: #fff8e6; color: #b07800; }

/* ── UPLOAD: FILE COUNTER ── */
.upload-counter {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 16px;
  min-height: 20px;
}

/* ── UPLOAD: NO ARTWORK LINK ── */
.upload-no-artwork {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #888;
}
.upload-no-artwork a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}
.upload-no-artwork a:hover { color: var(--red-hover); }

/* ── UPLOAD: FAQ COLLAPSIBLE ── */
.upload-faq {
  margin-top: 0;
  border: 1px solid #e8e5e1;
  border-radius: 12px;
  overflow: hidden;
}
.upload-faq-trigger {
  width: 100%;
  background: #fafafa;
  border: none;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  gap: 12px;
}
.upload-faq-trigger:hover { background: #f5f5f5; }
.upload-faq-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--red);
}
.upload-faq.open .upload-faq-arrow { transform: rotate(180deg); }
.upload-faq-body {
  display: none;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #e8e5e1;
}
.upload-faq.open .upload-faq-body { display: block; }
.upload-faq-body ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.upload-faq-body li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #444; line-height: 1.5;
}
.upload-faq-body li .faq-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.faq-dot.green { background: #0f6e56; }
.faq-dot.yellow { background: #b07800; }
.faq-dot.gray { background: #aaa; }

/* ═══════════════════════════════════════
   DETAILS PAGE — STEP 2
═══════════════════════════════════════ */

/* ── GRID LAYOUT ── */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .details-grid { grid-template-columns: 1fr; }
  .details-sidebar { order: -1; }
}

/* ── CARDS ── */
.details-card {
  background: #fff;
  border: 1px solid #e8e5e1;
  border-radius: 16px;
  padding: 28px;
}
.details-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.details-card-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.details-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin: 0;
}

/* ── FIELDS ── */
.details-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .details-field-row { grid-template-columns: 1fr; }
}
.details-field { display: flex; flex-direction: column; gap: 6px; }
.details-label {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.details-required { color: var(--red); }
.details-input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #111;
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
}
.details-input:focus { border-color: var(--red); background: #fff; }
.details-error { color: #cc0000; font-size: 12px; margin-top: 4px; }

/* ── ORDER OPTIONS GRID (Kit Type left | Qty+Delivery right) ── */
.order-options-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: start;
}
.order-options-right {
  display: flex;
  flex-direction: column;
}
/* Compact inputs in the right column to match radio text visually */
.order-options-right .details-input {
  font-size: 13px;
  padding: 9px 11px;
}
.order-options-right .details-label {
  font-size: 11px;
}
@media (max-width: 640px) {
  .order-options-grid { grid-template-columns: 1fr; }
  .order-options-right .details-input { font-size: 14px; padding: 5px 14px; }
  .order-options-right .details-label { font-size: 12px; }
}

/* ── RADIO GROUP ── */
.details-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.details-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}
.details-radio input[type="radio"] {
  accent-color: var(--red);
  width: 15px; height: 15px;
  cursor: pointer;
}

/* ── ROSTER TABLE ── */
.roster-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.roster-table thead th {
  padding: 0 10px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
}
.roster-row td { padding: 5px 6px; vertical-align: middle; }
.roster-num {
  font-size: 12px;
  color: #666;
  font-weight: 700;
  width: 28px;
  text-align: center;
}
.roster-input {
  width: 100%;
  border: 1px solid #e0ddd9;
  border-radius: 7px;
  padding: 8px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #111;
  background: #fafafa;
  outline: none;
  transition: border-color 0.15s;
}
.roster-input:focus { border-color: var(--red); background: #fff; }
.roster-input--sm { width: 60px; text-align: center; }
.roster-select {
  border: 1px solid #e0ddd9;
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: var(--font-body);
  color: #111;
  background: #fafafa;
  outline: none;
  cursor: pointer;
  width: 90px;
}
.roster-select:focus { border-color: var(--red); }
.roster-del {
  background: #f5f5f5;
  border: none;
  color: #777;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
  font-weight: 700;
}
.roster-del:hover { color: #fff; background: #cc0000; }

/* ── ADD ROW BTN ── */
.details-add-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: transparent;
  border: 1px dashed #ccc;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.details-add-row-btn:hover { border-color: var(--red); color: var(--red); }

/* ── CSV IMPORT ── */
.details-csv-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  border: 1px solid #e0ddd9;
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.03em;
}
.details-csv-btn:hover { color: var(--red); border-color: var(--red); }

/* ── SIDEBAR ── */
.details-sidebar-card {
  background: #fff;
  border: 1px solid #e8e5e1;
  border-radius: 14px;
  padding: 20px;
}
.details-sidebar-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0 0 16px;
}
.details-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #f5f5f5;
}
.details-summary-row:last-child { border-bottom: none; }
.details-summary-row strong { color: #111; }
.details-summary-divider { height: 1px; background: #e8e5e1; margin: 8px 0; }

/* ── TURNAROUND ── */
.details-turnaround-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

/* ── TRUST LIST ── */
.details-trust-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.details-trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #444;
}

/* ── HELP CARD ── */
.details-help-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f8;
  border-color: rgba(139,0,0,0.15);
}

/* ── Unified Address Form ─────────────────────────────────────── */
.addr-input {
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #d8d2cc;
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: 13px;
    color: #333;
    background: #f2f0ed;
    outline: none;
    box-sizing: border-box;
    transition: border-color .15s, background .15s;
    display: block;
}
.addr-input:focus {
    border-color: #8b0000;
    background: #fff;
}
.addr-input:not(:placeholder-shown) {
    background: #fff;
}
.addr-input.is-error {
    border-color: #cc2200 !important;
    background: #fff8f8;
}
.addr-input.is-error:focus {
    border-color: #cc2200 !important;
}
.addr-input::placeholder { color: #999; }
select.addr-input { cursor: pointer; }
select.addr-input option { color: #333; }



/* ═══════════════════════════════════════════════════════════
   ESPACE CLIENT — Shared styles
   ═══════════════════════════════════════════════════════════ */

/* ── Status Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.badge-draft    { background: #f0f0f0; color: #666; }
.badge-draft::before { background: #aaa; }
.badge-pending  { background: #fff3e0; color: #b45309; }
.badge-pending::before { background: #f59e0b; }
.badge-confirmed{ background: #e0f2fe; color: #0369a1; }
.badge-confirmed::before { background: #0ea5e9; }
.badge-production{ background: #ede9fe; color: #6d28d9; }
.badge-production::before { background: #8b5cf6; }
.badge-shipped  { background: #f0fdf4; color: #15803d; }
.badge-shipped::before { background: #22c55e; }
.badge-delivered{ background: #dcfce7; color: #166534; }
.badge-delivered::before { background: #16a34a; }

/* ── Toast Notifications ── */
#pyk-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.pyk-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  pointer-events: all;
  animation: toastIn .3s ease;
  min-width: 240px;
  max-width: 360px;
}
.pyk-toast.toast-success { background: #fff; border-left: 4px solid #16a34a; color: #111; }
.pyk-toast.toast-error   { background: #fff; border-left: 4px solid #cc2200; color: #111; }
.pyk-toast.toast-info    { background: #fff; border-left: 4px solid #0ea5e9; color: #111; }
.pyk-toast .toast-icon   { font-size: 16px; flex-shrink: 0; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Account Page Layout ── */
.account-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 100px;
}
.account-header {
  margin-bottom: 28px;
}
.account-header h1 {
  font-size: 22px;
  font-weight: 900;
  color: #111;
  margin: 0 0 4px;
}
.account-header p {
  font-size: 13px;
  color: #666;
  margin: 0;
}
.account-card {
  background: #fff;
  border: 1px solid #e8e5e1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.account-card-head {
  padding: 11px 20px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account-card-head h3 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #444;
  margin: 0;
}
.account-card-body {
  padding: 20px;
}

/* ── Stats row (dashboard) ── */
.account-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.account-stat {
  background: #fff;
  border: 1px solid #e8e5e1;
  border-radius: 12px;
  padding: 18px 20px;
}
.account-stat .stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #888;
  margin-bottom: 6px;
}
.account-stat .stat-value {
  font-size: 26px;
  font-weight: 900;
  color: #111;
}
.account-stat .stat-sub {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}

/* ── Orders / Devis table ── */
.pyk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pyk-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #888;
  padding: 0 12px 10px;
  border-bottom: 1px solid #f0f0f0;
}
.pyk-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #f7f7f7;
  color: #333;
  vertical-align: middle;
}
.pyk-table tr:last-child td { border-bottom: none; }
.pyk-table tr:hover td { background: #fafafa; }
.pyk-table .td-action a {
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
}
.pyk-table .td-action a:hover { text-decoration: underline; }

/* ── Timeline ── */
.order-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 90px;
}
.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 13px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e8e5e1;
  z-index: 0;
}
.timeline-step.done:not(:last-child)::after { background: var(--red); }
.timeline-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8e5e1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #e8e5e1;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 700;
}
.timeline-step.done .timeline-dot { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.timeline-step.current .timeline-dot { background: #111; box-shadow: 0 0 0 2px #111; }
.timeline-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #aaa;
  margin-top: 8px;
  text-align: center;
}
.timeline-step.done .timeline-label,
.timeline-step.current .timeline-label { color: #111; }

/* ── Empty state ── */
.pyk-empty {
  text-align: center;
  padding: 50px 20px;
  color: #aaa;
}
.pyk-empty svg { margin-bottom: 16px; opacity: .4; }
.pyk-empty p { font-size: 14px; margin-bottom: 18px; color: #888; }

/* ── Filters row ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.filter-bar input[type="text"] {
  padding: 7px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  flex: 1;
  min-width: 180px;
}
.filter-bar input:focus { border-color: var(--red); }
.filter-btn {
  padding: 7px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ── Detail blocks ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .detail-grid { grid-template-columns: 1fr; }
  .account-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Notification item ── */
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid #f5f5f5;
}
.notif-item:last-child { border-bottom: none; }
.notif-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.notif-body { flex: 1; }
.notif-title { font-size: 13px; font-weight: 700; color: #111; margin-bottom: 2px; }
.notif-date { font-size: 11px; color: #aaa; }

