/* ============================================
   Palette bleue – ni trop claire ni trop foncée, douce pour les yeux
   ============================================ */

:root,
[data-theme="dark"] {
  --bg-dark: #1a2235;
  --bg-secondary: #222c42;
  --bg-card: #2a354d;
  --bg-card-hover: #343f58;
  --text: #e8ecf2;
  --text-muted: #9ca8b8;
  --text-muted-strong: #6b7a8f;
  --accent: #5b8fd6;
  --accent-light: #7aa5e0;
  --accent-soft: rgba(91, 143, 214, 0.15);
  --accent-gradient: linear-gradient(135deg, #5b8fd6 0%, #7aa5e0 100%);
  --green: #2d9d78;
  --green-light: #34b88c;
  --green-soft: rgba(45, 157, 120, 0.15);
  --green-gradient: linear-gradient(135deg, #2d9d78 0%, #34b88c 100%);
  --orange: #d4925e;
  --orange-light: #e0a870;
  --orange-soft: rgba(212, 146, 94, 0.15);
  --border: #3a4560;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --max: 1000px;
  --content-text: 42rem;
  --radius: 10px;
  --radius-sm: 8px;
}

[data-theme="light"] {
  --bg-dark: #f0f4f9;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #e8eef5;
  --text: #1e2a3a;
  --text-muted: #5a6b7d;
  --text-muted-strong: #8a9aaa;
  --accent: #4a7bc4;
  --accent-light: #5b8fd6;
  --accent-soft: rgba(74, 123, 196, 0.12);
  --accent-gradient: linear-gradient(135deg, #5b8fd6 0%, #7aa5e0 100%);
  --green: #238b6a;
  --green-light: #2d9d78;
  --green-soft: rgba(35, 139, 106, 0.12);
  --green-gradient: linear-gradient(135deg, #238b6a 0%, #2d9d78 100%);
  --orange: #c47d48;
  --orange-light: #d4925e;
  --orange-soft: rgba(196, 125, 72, 0.12);
  --border: #d4dce6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91, 143, 214, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(91, 143, 214, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(45, 157, 120, 0.03) 0%, transparent 30%);
  transition: opacity 0.3s ease;
  animation: bg-glow-shift 20s ease-in-out infinite;
}

@keyframes bg-glow-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

[data-theme="light"] .bg-glow {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91, 143, 214, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(91, 143, 214, 0.04) 0%, transparent 40%);
}

body > * {
  position: relative;
  z-index: 1;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== Architecture dashboard (template) ========== */
.dashboard {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

/* ----- Menu mobile ----- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  width: 46px;
  height: 46px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg-card-hover);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.is-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ----- Sidebar ----- */
.sidebar {
  background: var(--bg-secondary);
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.sidebar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  text-decoration: none;
  color: inherit;
}

.sidebar .logo:hover {
  color: var(--text);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(91, 143, 214, 0.25);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.logo-coreva-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(91, 143, 214, 0.12);
  border: 1px solid rgba(91, 143, 214, 0.2);
}

.logo-coreva .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(2);
}

.logo-coreva .logo-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  word-break: break-word;
}

/* Entrée nav : photo + nom (fondateur) */
.nav-item-founder {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-founder-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 2px solid rgba(91, 143, 214, 0.2);
}

.nav-founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.nav-founder-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: inherit;
}

.nav-item-founder:hover .nav-founder-name,
.nav-item-founder.active .nav-founder-name {
  color: var(--text);
}

.nav-item-founder.active .nav-founder-name {
  color: #fff;
}

.nav-section {
  margin-bottom: 24px;
}

.nav-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-item:hover {
  background: var(--bg-card);
  color: var(--text);
}

.nav-item.active {
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(91, 143, 214, 0.3);
}

.nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

.nav-item.active .nav-icon {
  opacity: 1;
}

/* Bouton accent dans navigation */
.nav-item-accent {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(91, 143, 214, 0.3);
  margin-top: var(--space-4);
}

.nav-item-accent:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nav-item-accent.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nav-item-accent .nav-icon {
  opacity: 1;
}

.nav-item-accent:hover .nav-icon,
.nav-item-accent.active .nav-icon {
  color: #fff;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.sidebar-footer .theme-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  margin-bottom: 12px;
}

.sidebar-footer .theme-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.sidebar-footer .theme-toggle-label svg {
  width: 20px;
  height: 20px;
}

.theme-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--border);
  border: none;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.theme-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

[data-theme="light"] .theme-switch {
  background: var(--accent-soft);
}

[data-theme="light"] .theme-switch::after {
  transform: translateX(22px);
  background: var(--accent);
}

.sidebar-cta {
  width: 100%;
  margin-top: 0;
}

/* ----- Main content ----- */
.main-content {
  padding: 32px 40px 40px;
  overflow-y: auto;
  min-height: 100vh;
  transition: background 0.3s ease;
}

.content-wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-8);
  width: 100%;
}

/* ----- En-tête de page (recadré, aligné au reste) ----- */
.page-header {
  padding-top: var(--space-6);
  padding-bottom: var(--space-12);
  margin-bottom: var(--space-8);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 143, 214, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.page-header-inner {
  width: 100%;
}


.page-header-content {
  max-width: var(--content-text);
  margin: 0 auto;
  text-align: center;
}

.page-header-title {
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--space-5);
}

.page-header-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.95;
  filter: brightness(1.05);
}

/* CTA principal « Discuter d'un projet » : vert */
.btn-cta {
  background: var(--green-gradient) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(45, 157, 120, 0.35);
}

.btn-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 20px rgba(45, 157, 120, 0.4);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ----- Hero amélioré ----- */
.hero-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: var(--space-2) var(--space-5);
  background: var(--accent-soft);
  border-radius: 50px;
  border: 1px solid rgba(91, 143, 214, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 143, 214, 0.2);
}

.hero-badge-green {
  color: var(--green);
  background: var(--green-soft);
  border-color: rgba(45, 157, 120, 0.35);
  position: relative;
}

.hero-badge-green:hover {
  box-shadow: 0 4px 12px rgba(45, 157, 120, 0.2);
}

.hero-badge-green::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  margin-right: var(--space-2);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(45, 157, 120, 0.5);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(45, 157, 120, 0.5); }
  50% { opacity: 0.6; transform: scale(1.3); box-shadow: 0 0 16px rgba(45, 157, 120, 0.8); }
}

.title-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-cta .btn-cta {
  position: relative;
  overflow: hidden;
}

.hero-cta .btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-cta .btn-cta:hover::before {
  left: 100%;
}

/* Stats du hero */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-bottom: var(--space-10);
  padding: var(--space-8) var(--space-6);
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

[data-theme="light"] .hero-stats {
  background: rgba(0, 0, 0, 0.02);
}

.hero-stat {
  text-align: center;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(var(--space-12) / -2);
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Trust section */
.hero-trust {
  text-align: center;
}

.hero-trust-label {
  font-size: 0.7rem;
  color: var(--text-muted-strong);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.tech-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

[data-theme="light"] .tech-badge {
  background: rgba(0, 0, 0, 0.03);
}

.tech-badge:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ----- Section Processus ----- */
.sec-process {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.04) 0%, transparent 50%, rgba(45, 157, 120, 0.02) 100%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  margin-top: var(--space-10);
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--green) 100%);
  opacity: 0.4;
  z-index: 0;
  border-radius: 2px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent-gradient);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(91, 143, 214, 0.35);
  transition: all 0.3s ease;
}

.process-step:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(91, 143, 214, 0.45);
}

.process-step:nth-child(2) .process-step-num {
  background: linear-gradient(135deg, #6b9be0 0%, #8ab4ea 100%);
}

.process-step:nth-child(3) .process-step-num {
  background: linear-gradient(135deg, #4a9d8a 0%, #5bb89e 100%);
}

.process-step:nth-child(4) .process-step-num {
  background: var(--green-gradient);
  box-shadow: 0 6px 20px rgba(45, 157, 120, 0.35);
}

.process-step:nth-child(4):hover .process-step-num {
  box-shadow: 0 8px 28px rgba(45, 157, 120, 0.45);
}

.process-step-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  transition: all 0.3s ease;
  height: 100%;
}

.process-step:hover .process-step-content {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: rgba(91, 143, 214, 0.35);
}

.process-step:nth-child(4):hover .process-step-content {
  border-color: rgba(45, 157, 120, 0.35);
}

.process-step-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
  background: rgba(91, 143, 214, 0.2);
  transform: scale(1.05);
}

.process-step:nth-child(4) .process-step-icon {
  background: var(--green-soft);
}

.process-step:nth-child(4):hover .process-step-icon {
  background: rgba(45, 157, 120, 0.2);
}

.process-step-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  transition: color 0.3s ease;
}

.process-step:nth-child(4) .process-step-icon svg {
  color: var(--green);
}

.process-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----- Section Comparaison Avant/Après ----- */
.sec-compare {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
  align-items: stretch;
  margin-top: var(--space-10);
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8);
  transition: all 0.3s ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.compare-card-bad {
  border-color: rgba(231, 76, 60, 0.3);
}

.compare-card-bad:hover {
  border-color: rgba(231, 76, 60, 0.5);
}

.compare-card-good {
  border-color: rgba(45, 157, 120, 0.3);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(45, 157, 120, 0.03) 100%);
}

.compare-card-good:hover {
  border-color: var(--green);
  box-shadow: 0 12px 32px rgba(45, 157, 120, 0.15);
}

.compare-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.compare-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.compare-icon svg {
  width: 24px;
  height: 24px;
}

.compare-icon-bad {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.compare-icon-good {
  background: var(--green-soft);
  color: var(--green);
}

.compare-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.compare-list {
  list-style: none;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.compare-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-card-bad .compare-list li svg {
  color: #e74c3c;
}

.compare-card-good .compare-list li svg {
  color: var(--green);
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: var(--space-4);
}

/* ----- Section FAQ ----- */
.sec-faq {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.03) 0%, transparent 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(91, 143, 214, 0.3);
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(91, 143, 214, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: rgba(91, 143, 214, 0.05);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stack {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.hero-stack span {
  color: var(--accent);
  font-weight: 600;
}

.hero-realisation {
  margin-top: var(--space-6);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-realisation-link {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.hero-realisation-link:hover {
  color: var(--accent-light);
}

/* ----- Section Templates (previews) ----- */
.sec-templates {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.06) 0%, rgba(45, 157, 120, 0.04) 100%);
  position: relative;
}

.sec-templates::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(91, 143, 214, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

[data-theme="light"] .sec-templates {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.08) 0%, rgba(45, 157, 120, 0.06) 100%);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.template-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.template-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(91, 143, 214, 0.5);
}

.template-card[data-template="artisan"]:hover {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.template-card[data-template="restaurant"]:hover {
  border-color: rgba(201, 169, 98, 0.6);
  box-shadow: 0 20px 50px rgba(201, 169, 98, 0.15);
}

.template-preview {
  position: relative;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.template-browser {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .template-browser {
  background: rgba(0, 0, 0, 0.06);
}

.template-browser-dots {
  display: flex;
  gap: 6px;
}

.template-browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.template-browser-dots span:nth-child(1) { background: #ff5f57; }
.template-browser-dots span:nth-child(2) { background: #febc2e; }
.template-browser-dots span:nth-child(3) { background: #28c840; }

.template-browser-url {
  flex: 1;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-1) var(--space-3);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: monospace;
}

[data-theme="light"] .template-browser-url {
  background: rgba(0, 0, 0, 0.05);
}

.template-iframe-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.template-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}

.template-card:hover .template-iframe-wrap iframe {
  pointer-events: auto;
}

.template-info {
  padding: var(--space-6);
}

.template-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: 50px;
  margin-bottom: var(--space-3);
}

.template-badge-orange {
  color: var(--orange);
  background: var(--orange-soft);
}

.template-badge-gold {
  color: #c9a962;
  background: rgba(201, 169, 98, 0.15);
}

.template-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.template-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.template-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.template-features span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.1);
  padding: var(--space-1) var(--space-2);
  border-radius: 4px;
}

[data-theme="light"] .template-features span {
  background: rgba(0, 0, 0, 0.06);
}

.template-actions {
  display: flex;
  gap: var(--space-3);
}

.template-actions .btn {
  flex: 1;
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8rem;
}

.templates-cta {
  text-align: center;
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.templates-cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

@media (max-width: 1024px) {
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .templates-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .template-iframe-wrap {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .template-actions {
    flex-direction: column;
  }

  .template-actions .btn {
    width: 100%;
  }
}

/* ----- Section Réalisation (bgroupe76.fr) ----- */
.sec-realisation {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.06) 0%, rgba(91, 143, 214, 0.02) 100%);
}

[data-theme="light"] .sec-realisation {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.1) 0%, rgba(91, 143, 214, 0.04) 100%);
}

.realisation-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.realisation-screen {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(91, 143, 214, 0.2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  text-decoration: none;
  color: inherit;
}

.realisation-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(91, 143, 214, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.realisation-screen:hover::before {
  opacity: 1;
}

.realisation-screen:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(91, 143, 214, 0.2);
  border-color: rgba(91, 143, 214, 0.4);
}

.realisation-screen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  vertical-align: middle;
  transition: transform 0.4s ease;
}

.realisation-screen:hover img {
  transform: scale(1.05);
}

.realisation-screen-label {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  z-index: 2;
}

.realisation-screen:hover .realisation-screen-label {
  color: #fff;
  background: rgba(91, 143, 214, 0.8);
}

.realisation-card {
  max-width: 420px;
  margin: var(--space-8) auto 0;
}

.realisation-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-10);
  background: var(--bg-card);
  border: 2px solid rgba(91, 143, 214, 0.25);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.realisation-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

/* Logo BGroupe 76 en rond (style photo de profil / Insta) */
.realisation-logo-wrap {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(91, 143, 214, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.realisation-link:hover .realisation-logo-wrap {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(91, 143, 214, 0.25);
}

.realisation-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.realisation-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.realisation-link:hover .realisation-name {
  color: var(--accent-light);
}

.realisation-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 280px;
}

.realisation-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: var(--space-2);
  transition: color 0.2s ease, gap 0.2s ease;
}

.realisation-link:hover .realisation-cta {
  color: var(--accent-light);
  gap: 0.5rem;
}

/* ----- Section Fondateur (Diego Rognant, Coreva) ----- */
.sec-founder {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.05) 0%, transparent 100%);
}

[data-theme="light"] .sec-founder {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.08) 0%, transparent 100%);
}

.founder-block {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-10);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.founder-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid rgba(91, 143, 214, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.founder-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.8);
}

.founder-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  flex: 1;
}

.founder-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: var(--space-1) var(--space-3);
  background: var(--accent-soft);
  border-radius: 50px;
  margin-bottom: var(--space-2);
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0;
}

.founder-role {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.founder-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: var(--space-3);
}

.founder-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.founder-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

[data-theme="light"] .founder-social-link {
  background: rgba(0, 0, 0, 0.03);
}

.founder-social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.founder-social-link svg {
  width: 20px;
  height: 20px;
}

.founder-social-whatsapp:hover {
  color: #25D366;
  border-color: #25D366;
}

.founder-logo {
  margin-top: var(--space-5);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(145deg, rgba(91, 143, 214, 0.12) 0%, rgba(122, 165, 224, 0.06) 100%);
  border: 2px solid rgba(91, 143, 214, 0.25);
  box-shadow: 0 4px 16px rgba(26, 34, 53, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-logo:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(91, 143, 214, 0.2);
}

[data-theme="light"] .founder-logo {
  background: linear-gradient(145deg, rgba(91, 143, 214, 0.1) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-color: rgba(91, 143, 214, 0.2);
  box-shadow: 0 4px 16px rgba(91, 143, 214, 0.1);
}

.founder-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
  transform: scale(2.4);
}

/* ----- Sections ----- */
.sec {
  padding: var(--space-12) 0;
}

.sec-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.sec-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.sec-title-lg {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  margin-bottom: var(--space-4);
}

.sec-title-center {
  text-align: center;
}

.sec-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.sec-desc-center {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.sec-badge {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

/* ----- Bloc « Pourquoi les ventes échouent » (mis en valeur) ----- */
.sec-probleme {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.04) 0%, transparent 100%);
}

[data-theme="light"] .sec-probleme {
  background: linear-gradient(180deg, rgba(91, 143, 214, 0.06) 0%, transparent 100%);
}

.probleme-block {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.probleme-title {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.title-echouent {
  color: var(--green-light);
  font-weight: 700;
  position: relative;
}

.title-echouent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.probleme-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.fail-rotate {
  position: relative;
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fail-rotate-item {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  text-align: center;
  padding: var(--space-5) var(--space-6);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  background: var(--bg-card);
  border: 1px solid rgba(91, 143, 214, 0.15);
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.01em;
}

.fail-rotate-item.is-visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(91, 143, 214, 0.12);
}

.fail-rotate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
}

.fail-rotate-icon svg {
  width: 20px;
  height: 20px;
}

.fail-rotate-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.fail-rotate-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-5);
}

.fail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: transform 0.25s ease, background 0.25s ease;
}

.fail-dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

/* ----- Section « À chaque demande, une solution » ----- */
.sec-develop-inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.sec-develop-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.sec-develop-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: var(--space-4) auto 0;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}


.service-card:hover {
  border-color: rgba(91, 143, 214, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px);
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
  background: rgba(91, 143, 214, 0.25);
}

.service-card:hover .service-card-icon svg {
  transform: scale(1.05);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 28em;
}

/* ----- Section Pourquoi faire avec moi ----- */
.sec-why {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
}

[data-theme="light"] .sec-why {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, transparent 100%);
}

.sec-why-inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.sec-why-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.sec-why-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 380px;
  margin: var(--space-4) auto 0;
  line-height: 1.5;
}

.why-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.why-card-new {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-card-new:hover {
  border-color: rgba(91, 143, 214, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.why-card-new-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: var(--radius);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.why-card-new:hover .why-card-new-icon {
  transform: scale(1.06);
}

.why-card-new-icon svg {
  width: 26px;
  height: 26px;
}

.why-card-new-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.why-card-new-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 26em;
}

.feat-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.feat-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Offres : section simplifiée sans prix ----- */
.sec-offres {
  background: linear-gradient(180deg, transparent 0%, rgba(91, 143, 214, 0.04) 50%, transparent 100%);
}

.sec-offres-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.offres-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.offres-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: var(--space-4) auto 0;
  line-height: 1.5;
}

/* Nouvelle grille d'offres */
.offres-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.offre-card-new {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.offre-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.offre-card-new:hover::before {
  transform: scaleX(1);
}

.offre-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(91, 143, 214, 0.35);
}

.offre-card-highlight {
  border-color: rgba(45, 157, 120, 0.4);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(45, 157, 120, 0.04) 100%);
}

.offre-card-highlight::before {
  background: var(--green-gradient);
  transform: scaleX(1);
}

.offre-card-highlight:hover {
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(45, 157, 120, 0.25);
}

.offre-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  margin-bottom: var(--space-5);
  transition: all 0.3s ease;
}

.offre-card-new:hover .offre-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(91, 143, 214, 0.25);
}

.offre-card-highlight .offre-card-icon {
  background: var(--green-soft);
}

.offre-card-highlight:hover .offre-card-icon {
  background: rgba(45, 157, 120, 0.2);
}

.offre-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.offre-card-highlight .offre-card-icon svg {
  color: var(--green);
}

.offre-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
}

.offre-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-5);
}

.offre-card-features {
  list-style: none;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.offre-card-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
}

.offre-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
}

.offre-card-highlight .offre-card-features li::before {
  color: var(--green);
}

.offre-card-new .btn {
  margin-top: auto;
}

.offres-note {
  text-align: center;
  padding: var(--space-6) var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.offres-note p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .offres-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .offres-grid-new {
    grid-template-columns: 1fr;
  }
  
  .offre-card-new {
    padding: var(--space-6);
  }
}


/* ----- Stack ----- */
.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.stack-item {
  padding: var(--space-3) var(--space-5);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--accent);
}

/* ----- Forfaits boutons ----- */
.forfait-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.forfait-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.forfait-btn:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: rgba(91, 143, 214, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.forfait-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.forfait-btn-icon svg {
  width: 18px;
  height: 18px;
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  max-width: 640px;
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-field select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca8b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: border-color 0.2s ease;
}

.form-field .required {
  color: #e74c3c;
  font-weight: 600;
}

.form-field .optional {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8rem;
}

/* Formulaire de devis */
.form-devis {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.form-section {
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-5);
}

.form-section-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-row:last-child {
  margin-bottom: 0;
}

/* Options radio visuelles */
.form-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.form-option {
  cursor: pointer;
}

.form-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-option-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-3);
  background: rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s ease;
}

[data-theme="light"] .form-option-box {
  background: rgba(0, 0, 0, 0.03);
}

.form-option-box:hover {
  border-color: rgba(91, 143, 214, 0.3);
  background: var(--accent-soft);
}

.form-option input:checked + .form-option-box {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 4px 12px rgba(91, 143, 214, 0.2);
}

.form-option-box svg {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.form-option input:checked + .form-option-box svg {
  color: var(--accent);
}

.form-option-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-option-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Checkboxes */
.form-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

[data-theme="light"] .form-checkbox {
  background: rgba(0, 0, 0, 0.02);
}

.form-checkbox:hover {
  border-color: rgba(91, 143, 214, 0.4);
  background: var(--accent-soft);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-checkbox:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.form-checkbox:has(input:checked) span {
  color: var(--text);
}

/* Footer du formulaire */
.form-footer {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.form-footer .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.form-footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-4);
}

/* Responsive formulaire */
@media (max-width: 640px) {
  .modal-content-lg {
    padding: var(--space-6);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-options {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-checkboxes {
    grid-template-columns: 1fr;
  }
  
  .form-option-box {
    padding: var(--space-4) var(--space-3);
  }
  
  .form-option-box svg {
    width: 24px;
    height: 24px;
  }
  
  .form-option-label {
    font-size: 0.8rem;
  }
  
  .form-option-desc {
    display: none;
  }
}

.contact-side {
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: var(--space-5);
}

[data-theme="light"] .contact-side {
  background: rgba(0, 0, 0, 0.03);
}

.contact-side-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-side-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact-side-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.contact-side-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact-side-whatsapp {
  color: #25D366;
}

.contact-side-whatsapp:hover {
  color: #25D366;
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.08);
}

/* ----- Section CTA contact ----- */
.sec-cta {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
}

[data-theme="light"] .sec-cta {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.06) 100%);
}

.sec-cta-inner {
  text-align: center;
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.sec-cta .sec-desc {
  margin-bottom: var(--space-8);
}

/* ----- Footer (multi-colonnes type WinHeberg) ----- */
.footer {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border);
  padding: var(--space-10) var(--space-6) var(--space-6);
  transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .footer {
  background: rgba(0, 0, 0, 0.06);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text);
}

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

.footer-link-btn.btn-cta {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-top: var(--space-2);
  cursor: pointer;
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--text-muted);
}

.footer-copy a:hover {
  color: var(--text);
}

/* ----- Modal contact ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal.is-open .modal-content {
  transform: scale(1);
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-8);
  transform: scale(0.95);
}

.modal-content-lg {
  max-width: 720px;
  padding: var(--space-10);
  transition: transform 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.modal-close:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.modal-header {
  margin-bottom: var(--space-6);
  padding-right: 40px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.modal-body .contact-side {
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .services-grid,
  .why-grid-new {
    grid-template-columns: 1fr;
  }

  .realisation-screens {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .forfait-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    max-width: 85vw;
    transform: translateX(-100%);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
  }

  .sidebar.is-open {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.is-open {
    left: auto;
    right: 20px;
  }

  .main-content {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .hero-badge-wrap {
    gap: var(--space-2);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-6) var(--space-4);
  }

  .hero-stat {
    min-width: 100px;
  }

  .hero-stat:not(:last-child)::after {
    display: none;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-trust-logos {
    gap: var(--space-2);
  }

  .tech-badge {
    font-size: 0.75rem;
    padding: var(--space-2) var(--space-3);
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    text-align: left;
  }

  .process-step-num {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .process-step-content {
    flex: 1;
    padding: var(--space-5);
  }

  .process-step-icon {
    margin: 0 0 var(--space-3) 0;
    width: 44px;
    height: 44px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .compare-vs {
    padding: var(--space-3);
    font-size: 0.85rem;
  }

  .compare-card {
    padding: var(--space-6);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .faq-question {
    padding: var(--space-4) var(--space-5);
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 var(--space-5) var(--space-5);
  }

  .founder-block {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
    gap: var(--space-6);
  }

  .founder-photo-wrap {
    width: 120px;
    height: 120px;
  }

  .founder-info {
    align-items: center;
  }

  .founder-name {
    font-size: 1.25rem;
  }

  .founder-bio {
    font-size: 0.85rem;
  }

  .founder-social {
    justify-content: center;
  }

  .realisation-screens {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .templates-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .template-info {
    padding: var(--space-5);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .forfait-buttons {
    flex-direction: column;
  }

  .forfait-btn {
    width: 100%;
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sec {
    padding: var(--space-8) 0;
  }

  .sec-title-lg {
    font-size: 1.4rem;
  }

  .sec-desc {
    font-size: 0.9rem;
  }
}

/* Éviter le scroll horizontal sur mobile */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .dashboard,
  .main-content,
  .content-wrapper {
    min-width: 0;
  }
}

/* ----- Format téléphone (petits écrans) ----- */
@media (max-width: 480px) {
  .mobile-menu-toggle {
    top: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
  }

  .mobile-menu-toggle.is-open {
    right: 12px;
  }

  .sidebar {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    padding-top: max(24px, env(safe-area-inset-top));
  }

  .content-wrapper {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .main-content {
    padding: 12px 12px 24px;
    padding-top: 68px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .page-header {
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-4);
  }

  .page-header::before {
    width: 300px;
    height: 300px;
  }

  .page-header-title {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .page-header-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .hero-stats {
    padding: var(--space-5) var(--space-3);
    gap: var(--space-4);
  }

  .hero-stat-number {
    font-size: 1.35rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: var(--space-2) var(--space-3);
  }

  .hero-cta .btn {
    min-height: 48px;
    padding: var(--space-4) var(--space-6);
  }

  .hero-stack {
    font-size: 0.75rem;
  }

  .sec {
    padding: var(--space-6) 0;
  }


  .sec-title {
    font-size: 1.2rem;
  }

  .sec-title-lg {
    font-size: 1.3rem;
  }

  .fail-rotate-item {
    padding: var(--space-4) var(--space-4);
    gap: var(--space-3);
  }

  .fail-rotate-text {
    font-size: 1rem;
  }

  .fail-rotate-icon {
    width: 36px;
    height: 36px;
  }

  .fail-rotate-icon svg {
    width: 18px;
    height: 18px;
  }

  .service-card,
  .why-card-new {
    padding: var(--space-6);
  }

  .service-card-icon,
  .why-card-new-icon {
    width: 48px;
    height: 48px;
  }

  .service-card-icon svg,
  .why-card-new-icon svg {
    width: 24px;
    height: 24px;
  }

  .forfait-btn {
    min-height: 48px;
    padding: var(--space-4) var(--space-6);
  }

  .sec-cta-inner .btn {
    min-height: 48px;
    width: 100%;
  }

  .footer {
    padding: var(--space-8) 16px var(--space-4);
    padding-bottom: max(var(--space-4), env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: var(--space-6);
  }

  .footer-col-title {
    font-size: 0.75rem;
  }

  .footer-link {
    font-size: 0.9rem;
    padding: var(--space-2) 0;
  }

  /* Modal plein écran sur téléphone */
  .modal-content {
    margin: 16px;
    max-height: calc(100vh - 32px);
    border-radius: var(--radius);
  }

  .modal {
    padding: 16px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  /* Zones tactiles minimales 44px */
  .nav-item {
    min-height: 44px;
    padding: 12px 14px;
  }

  .theme-switch {
    min-width: 48px;
    min-height: 28px;
  }

  .sidebar-cta {
    min-height: 48px;
  }
}

/* ============================================
   STYLES SIMPLIFIÉS - Version épurée
   ============================================ */

/* Hero simplifié */
.hero-badge-status {
  color: var(--green);
}

/* Section Processus simplifiée */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.process-step {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.process-step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

.process-step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  margin-bottom: var(--space-3);
}

.process-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.process-step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Section Services - New */
.sec-services-new {
  padding: var(--space-12) 0;
}

.services-header {
  margin-bottom: var(--space-10);
}

.services-badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card-new {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-new:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--accent);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card-icon-orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.service-card-icon-green {
  background: var(--green-soft);
  color: var(--green);
}

.service-card-icon-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.service-card-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.service-card-content > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Section FAQ - New Design */
.sec-faq-new {
  padding: var(--space-12) 0;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.faq-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50px;
  margin-bottom: var(--space-4);
}

.faq-header .sec-title {
  margin-bottom: var(--space-3);
}

.faq-header .sec-desc {
  color: var(--text-muted);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item-new {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.faq-item-new:last-child {
  border-bottom: none;
}

.faq-item-new.is-open {
  background: var(--bg-alt);
}

.faq-trigger {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-5) var(--space-6);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-item-new.is-open .faq-num {
  background: var(--accent);
  color: #fff;
}

.faq-question-text {
  flex: 1;
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-chevron svg {
  width: 18px;
  height: 18px;
}

.faq-item-new.is-open .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-new.is-open .faq-content {
  max-height: 250px;
}

.faq-content p {
  padding: 0 var(--space-6) var(--space-6);
  padding-left: calc(var(--space-6) + 36px + var(--space-4));
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(91, 143, 214, 0.05) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(91, 143, 214, 0.2);
}

.faq-footer p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  margin-right: var(--space-2);
}

.faq-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.faq-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.faq-item.is-open .faq-icon {
  background: var(--accent);
  transform: scale(1.05);
}

.faq-item.is-open .faq-icon svg {
  color: #fff;
}

.faq-text {
  flex: 1;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-toggle svg {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  padding: 0 var(--space-5) var(--space-5);
  padding-left: calc(var(--space-5) + 40px + var(--space-4));
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.faq-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

/* Section Fondateur */
.founder-card {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.founder-photo-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-soft);
}

.sec-founder .founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.1);
}

.founder-info {
  text-align: left;
}

.founder-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: 50px;
  margin-bottom: var(--space-3);
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.founder-role {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.founder-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.founder-contact {
  display: flex;
  gap: var(--space-4);
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.founder-link:hover {
  color: var(--accent);
}

.founder-link svg {
  color: var(--accent);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  margin-top: var(--space-12);
}

.footer-inner {
  text-align: center;
  padding: var(--space-10) var(--space-4);
}

.footer-content {
  margin-bottom: var(--space-4);
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted-strong);
}

/* Templates - Grille avec previews */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.template-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.template-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.template-preview {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.template-preview iframe {
  width: 400%;
  height: 400%;
  transform: scale(0.25);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}

.template-info {
  padding: var(--space-4);
}

.template-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 50px;
  margin-bottom: var(--space-2);
}

.template-tag-orange {
  color: var(--orange);
  background: var(--orange-soft);
}

.template-tag-gold {
  color: #d4a54e;
  background: rgba(212, 165, 78, 0.12);
}

.template-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--text);
}

.template-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid-new {
    grid-template-columns: 1fr;
  }
  
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .realisation-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .process-steps,
  .templates-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card-new {
    flex-direction: column;
    text-align: center;
  }
  
  .service-card-icon {
    margin: 0 auto;
  }
  
  .service-features {
    align-items: center;
  }
  
  .realisation-gallery {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }
  
  .founder-info {
    text-align: center;
  }
  
  .founder-contact {
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .hero-stat:not(:last-child)::after {
    display: none;
  }
  
  .faq-trigger {
    padding: var(--space-4);
    gap: var(--space-3);
    font-size: 0.95rem;
  }
  
  .faq-num {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  
  .faq-chevron {
    width: 28px;
    height: 28px;
  }
  
  .faq-content p {
    padding: 0 var(--space-4) var(--space-5);
    padding-left: calc(var(--space-4) + 32px + var(--space-3));
    font-size: 0.9rem;
  }
  
  .faq-footer {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-6);
  }
  
  .faq-footer p {
    font-size: 1rem;
  }
}

/* Réalisation - Galerie */
.realisation-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.realisation-img {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.realisation-img:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.realisation-img img {
  width: 100%;
  height: auto;
  display: block;
}

.realisation-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2) var(--space-3);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.realisation-link {
  text-align: center;
  margin-top: var(--space-6);
}

.realisation-link a {
  display: inline-block;
  padding: var(--space-3) var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.realisation-link a:hover {
  border-color: var(--green);
  background: var(--green-soft);
}

/* Text accent */
.text-accent {
  color: var(--accent);
}

/* ===== Section Templates CTA ===== */
.sec-templates-cta {
  padding: var(--space-8) 0;
}

.templates-cta-box {
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.templates-cta-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--accent);
}

.templates-cta-icon svg {
  width: 32px;
  height: 32px;
}

.templates-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
}

.templates-cta-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.templates-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* ===== Page Maquettes ===== */
.page-header {
  padding: var(--space-10) 0 var(--space-8);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-8);
}

.page-header-sm {
  padding: var(--space-8) 0 var(--space-6);
}

.page-header-inner {
  max-width: 800px;
}

.page-header-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
}

.page-header-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.back-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--accent);
}

/* Template Showcase */
.template-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-10);
}

.template-showcase-header {
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--border);
}

.template-showcase-tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.template-showcase-tag-orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.template-showcase-tag-gold {
  background: rgba(212, 165, 78, 0.12);
  color: #d4a54e;
}

.template-showcase-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.template-showcase-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.template-showcase-body {
  display: flex;
  align-items: stretch;
  padding: var(--space-6) var(--space-8);
  gap: var(--space-6);
  background: var(--bg-alt);
}

.template-showcase-preview {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.template-showcase-browser {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:last-child { background: #28c840; }

.browser-url {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: var(--space-2) var(--space-4);
  background: var(--bg-alt);
  border-radius: var(--radius);
  flex: 1;
  max-width: 220px;
  text-align: center;
}

.template-showcase-iframe {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #fff;
}

.template-showcase-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: top left;
  border: none;
  pointer-events: none;
}

.template-showcase-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  text-align: center;
}

.template-showcase-actions .btn {
  white-space: nowrap;
  justify-content: center;
}

.template-showcase-actions .btn-primary {
  padding: var(--space-4) var(--space-5);
}

.template-showcase-actions .btn-ghost {
  padding: var(--space-3) var(--space-5);
}

/* Section CTA */
.sec-cta {
  padding: var(--space-10) 0;
}

.sec-cta-inner {
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* Responsive Maquettes */
@media (max-width: 1000px) {
  .template-showcase-body {
    flex-direction: column;
    padding: var(--space-5);
    gap: var(--space-5);
  }
  
  .template-showcase-actions {
    flex-direction: row;
    min-width: 0;
    padding: var(--space-4) var(--space-5);
  }
  
  .template-showcase-actions .btn {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .page-header-title {
    font-size: 1.6rem;
  }
  
  .template-showcase-header {
    padding: var(--space-5) var(--space-5);
  }
  
  .template-showcase-iframe {
    height: 300px;
  }
  
  .template-showcase-actions {
    flex-direction: column;
  }
  
  .templates-cta-box {
    padding: var(--space-8) var(--space-5);
  }
}

@media (max-width: 480px) {
  .page-header-title {
    font-size: 1.4rem;
  }
  
  .template-showcase-body {
    padding: var(--space-4);
    gap: var(--space-4);
  }
  
  .template-showcase-iframe {
    height: 250px;
  }
  
  .template-showcase-header {
    padding: var(--space-4);
  }
  
  .template-showcase-actions {
    padding: var(--space-4);
  }
}
