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

:root {
  --fg: hsl(0 0% 8%);
  --fg-light: hsl(0 0% 3.9%);
  --muted: hsl(0 0% 40%);
  --muted-bg: hsl(0 0% 96.5%);
  --border: hsl(0 0% 88%);
  --bg: hsl(0 0% 100%);
  --accent: hsl(0 0% 9%);
  --accent-fg: hsl(0 0% 98%);
  /* Brand accent - Buildoto: #dae706 */
  --brand: #dae706;
  --brand-dark: #b8c305;
  --brand-text: #5a6600;
  --brand-light: #fafde6;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--fg);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 80px 0;
}

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

.section-missions-bg {
  background: linear-gradient(hsla(0,0%,100%,0.92), hsla(0,0%,100%,0.92)), url('photos/plan-architecte.webp');
  background-size: cover;
  background-position: center;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.navbar-links a:hover {
  color: var(--brand-text);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--fg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px 24px;
  z-index: 99;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
}

.muted { color: var(--muted); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: hsl(0 0% 8%);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(218, 231, 6, 0.3);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 12px rgba(218, 231, 6, 0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--muted-bg); }

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-outline--dark {
  border-color: hsl(0 0% 40%);
  color: var(--accent-fg);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--brand);
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-text);
  background: var(--brand-light);
}

.badge-available::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  margin-right: 7px;
  flex-shrink: 0;
  animation: pulse-avail 2s ease-in-out infinite;
}

@keyframes pulse-avail {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ── AVAILABILITY NOTE ── */
.avail-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
  margin-top: 12px;
  padding: 8px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
}

.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: pulse-avail 2s ease-in-out infinite;
}

.mt-16 { margin-top: 16px; }
.mb-4 { margin-bottom: 4px; }

/* ── IMAGES ── */

/* ── HERO ── */
.hero {
  padding: 120px 0 80px;
  background: var(--muted-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 6px var(--brand-light), 0 0 0 8px var(--brand);
}

.hero h1 {
  margin: 20px 0 0;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.2;
}

.hero-desc {
  color: var(--muted);
  font-size: 17px;
  margin: 20px 0 12px;
  max-width: 600px;
  line-height: 1.7;
}

.hero-detail {
  color: var(--muted);
  font-size: 14px;
  max-width: 600px;
  line-height: 1.7;
  margin: 0 0 32px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.stat-card {
  text-align: center;
}

.stat-val {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-text);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 40px;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin-top: 12px;
}

.section-header--center {
  text-align: center;
}

.section-header--center h2::after,
.section-header:has(+ .packs-grid) h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 12px;
  max-width: 600px;
  line-height: 1.7;
}

/* ── PARCOURS / EXPERTISE ── */
.parcours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.parcours-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.parcours-text p {
  margin: 0 0 16px;
}

.parcours-text p:last-child {
  margin: 0;
}

.parcours-text strong {
  font-weight: 600;
  color: var(--fg);
}

.parcours-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.highlight-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.highlight-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 4px;
}

.logo-row img {
  height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

/* ── MISSIONS GRID ── */
.missions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  font-size: 15px;
  color: var(--fg);
  transition: background 0.15s;
}
.accordion-btn:hover { background: hsl(0 0% 98.5%); }

.accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phase-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-text);
  flex-shrink: 0;
}

.section-alt .phase-num {
  background: var(--brand-light);
}

.accordion-title {
  font-weight: 500;
}

.chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accordion.open .chevron {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
}

.accordion.open .accordion-body {
  display: block;
}

.accordion-desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0;
  color: var(--muted);
}

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.mission-item svg {
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--brand);
}

.livrables {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--muted-bg);
  border-radius: 6px;
}

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

.livrables-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.livrables-text {
  font-size: 13px;
}

/* ── PROCESS (Comment ça marche) ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.process-card--flex {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: hsl(0 0% 8%);
  margin-bottom: 16px;
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FORMULES / PRICING ── */
.packs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  max-width: 700px;
  margin: 0 auto;
}

.pack-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.pack-card.highlight {
  border-color: var(--brand);
  border-width: 2px;
  position: relative;
}

.pack-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pack-price {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
}

.pack-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pack-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.pack-item svg {
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--brand);
}

.price-big {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.price-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── PRICING ENCART ── */
.encart-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.encart-note-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.encart-note-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRESTATIONS COMPLÉMENTAIRES ── */
.complementary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.complementary-grid--single {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
}

.complementary-card {
  display: block;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.complementary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.complementary-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.complementary-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.complementary-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: var(--fg);
  transition: background 0.15s;
}
.faq-btn:hover { background: hsl(0 0% 98.5%); }

.faq-q {
  font-size: 15px;
  font-weight: 500;
  padding-right: 16px;
}

.faq-body {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid hsl(0 0% 93%);
  padding-top: 16px;
}

.accordion.open .faq-body {
  display: block;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, hsl(63 95% 14%) 0%, var(--accent) 100%);
  padding: 80px 0;
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-fg);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.cta-desc {
  color: hsl(0 0% 70%);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: hsl(0 0% 60%);
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── LEGAL ── */
.legal-toggle {
  font-size: 14px;
  font-weight: 500;
  color: hsl(0 0% 70%);
  cursor: pointer;
  padding: 10px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toggle::-webkit-details-marker { display: none; }

.legal-content {
  padding: 24px;
  margin-top: 12px;
  font-size: 14px;
  color: hsl(0 0% 70%);
  line-height: 1.7;
  background: hsl(0 0% 13%);
  border-radius: 8px;
}

/* ── GTM NOSCRIPT ── */
.gtm-noscript { display: none; visibility: hidden; }

/* ── FOOTER LINKS ── */
.footer-links {
  background: hsl(0 0% 8%);
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid hsl(0 0% 14%);
}
.footer-links-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  font-size: 13px;
}
.footer-links-label {
  color: hsl(0 0% 53%);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 100%;
  margin-bottom: 4px;
}
.footer-links a {
  color: hsl(0 0% 60%);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--brand);
}

/* ── FOOTER ── */
.site-footer {
  background: hsl(0 0% 6%);
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
  color: hsl(0 0% 52%);
  line-height: 1.7;
}

.footer-legal {
  background: hsl(0 0% 9%);
  padding: 0 0 48px;
}

.footer-legal .legal-content strong {
  color: var(--accent-fg);
}

.footer-legal .legal-content a {
  color: hsl(0 0% 70%);
}

.footer-p {
  margin: 0 0 12px;
}

.footer-p-sm {
  margin: 0;
  font-size: 13px;
}

/* ── FADE-IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PAIN POINTS GRID ── */
.painpoints-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ── NO-CODE SECTION ── */
.section-nocode {
  padding: 64px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nc-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.nc-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.label-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}

.label-category--brand {
  color: var(--brand-text);
}

.separator-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 40px;
}

.nc-heading {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.nc-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.nc-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.nc-col {
  flex: 1;
  min-width: 180px;
}

/* ── TAGS ── */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  background: var(--muted-bg);
}

.tag--strike {
  text-decoration: line-through;
}

.tag--brand {
  border-color: var(--brand);
  font-weight: 500;
  color: var(--fg);
  background: var(--brand-light);
}

/* ── ICON BOX ── */
.icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--muted-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-muted {
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: block; }

  .container { padding: 0 20px; }
  .navbar-inner { padding: 0 20px; }
  .mobile-menu { padding: 16px 20px 24px; }

  h1 { font-size: 32px; }
  h2 { font-size: 24px; }

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

  .hero {
    padding: 88px 0 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-grid .hero-content {
    order: 2;
    text-align: left;
  }

  .hero-grid .hero-photo-wrap {
    order: 1;
    display: flex;
    justify-content: center;
  }

  .hero-photo {
    width: 180px;
    height: 180px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-detail {
    font-size: 13px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .stat-card {
    text-align: center;
  }

  .stat-val {
    font-size: 24px;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .stat-label {
    font-size: 13px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .parcours-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .logo-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .packs-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

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

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns a {
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 48px 0;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-info {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .nc-heading {
    font-size: 18px;
  }

  .nc-columns {
    flex-direction: column;
    gap: 20px;
  }
}

/* ── INLINE SECTION CTA ── */
.section-cta-inline {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ── HERO CTA MICRO TEXT ── */
.cta-micro {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ── PRICE CONTEXT ── */
.price-context {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── CTA EMAIL ALT ── */
.cta-email-alt {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}
.cta-email-alt a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-email-alt a:hover {
  color: var(--brand-text);
}

/* ── COMPLEMENTARY ACTIONS ── */
.complementary-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .complementary-actions {
    flex-direction: column;
  }
  .complementary-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ── LANDING PAGES SPÉCIFIQUES ── */

/* Timeline calendrier de démarrage */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--brand);
  z-index: 0;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: hsl(0 0% 8%);
  margin-bottom: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--brand-light);
}
.timeline-day {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-text);
  margin-bottom: 4px;
}
.timeline-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  line-height: 1.3;
}
.timeline-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Stack cards compact (landing page disponible) */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stack-card {
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  text-align: center;
}
.stack-card:hover {
  border-color: var(--brand);
  background: var(--brand-light);
}
.stack-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.stack-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.stack-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Badge urgence (landing page disponible) */
.badge-urgence {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}
.badge-urgence::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
  animation: pulse-avail 2s ease-in-out infinite;
}

/* Preuve beforbuild (landing page disponible) */
.proof-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.proof-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.proof-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.proof-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.proof-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--muted-bg);
  border-radius: 6px;
}
.proof-stat-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-text);
  flex-shrink: 0;
  min-width: 60px;
}
.proof-stat-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Navbar retour (landing pages) */
.navbar-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.navbar-back:hover {
  color: var(--brand-text);
}

/* Packs grid 2 colonnes (landing pages) */
.packs-grid--2col {
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
}

/* Code inline */
.code-inline {
  font-size: 13px;
  background: var(--muted-bg);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: monospace;
}

/* SVG brand color helper */
.icon-brand {
  color: var(--brand-text);
}

@media (max-width: 768px) {
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .timeline-grid::before { display: none; }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    align-items: flex-start;
  }
  .timeline-dot { margin-bottom: 0; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .packs-grid--2col {
    grid-template-columns: 1fr;
    max-width: none;
  }
}
