/* ============ CREATIS INTER — Design system ============ */
:root {
  --purple-900: #1D1044;
  --purple-800: #241154;
  --purple-700: #3A1B7A;
  --purple-600: #4A24A0;
  --purple-500: #5B32B5;
  --purple-100: #EDE7F9;
  --cyan-500: #00C2E8;
  --cyan-600: #00A0C4;
  --ink: #1D1533;
  --ink-muted: #6B6480;
  --bg: #FFFFFF;
  --bg-alt: #F6F4FC;
  --border: #E4DFF3;

  --gradient-brand: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-500) 55%, var(--cyan-500) 120%);

  --shadow-sm: 0 2px 8px rgba(36, 17, 84, 0.08);
  --shadow-md: 0 8px 24px rgba(36, 17, 84, 0.12);
  --shadow-lg: 0 20px 48px rgba(36, 17, 84, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--purple-800);
}

p { margin: 0 0 1em; color: var(--ink-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--purple-700);
  color: var(--purple-700);
}
.btn-outline:hover { background: var(--purple-100); }

.btn-accent {
  background: var(--cyan-500);
  color: #08313d;
}
.btn-accent:hover { background: var(--cyan-600); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1EBE5A; }
.btn-whatsapp svg { flex-shrink: 0; }

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
}

.logo-mark {
  position: relative;
  display: inline-flex;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--cyan-500);
  border-radius: 1px;
}
.logo-mark::before { top: -4px; left: -8px; transform: rotate(20deg); }
.logo-mark::after { bottom: -2px; right: -10px; background: var(--purple-500); transform: rotate(35deg); }

.logo-mark-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--purple-800);
}
.logo-text span { color: var(--cyan-600); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-menu a:hover { background: var(--purple-100); color: var(--purple-700); }
.nav-menu a.active { color: var(--purple-700); background: var(--purple-100); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 32px;
  background: var(--bg-alt);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 194, 232, 0.16), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(58, 27, 122, 0.14), transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--purple-100);
  color: var(--purple-700);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero h1 { font-size: 1.3rem; margin-bottom: 0.2em; }
.hero h1 .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 0.82rem; max-width: 46ch; margin-bottom: 0.3em; }
.hero-cta { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 110px;
}
.hero-visual img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(58, 27, 122, 0.18));
}

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: 2rem; }
.section-eyebrow {
  display: block;
  color: var(--cyan-600);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Universe cards (Accueil) ---------- */
.universe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.universe-card {
  position: relative;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.universe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.universe-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.universe-icon svg { width: 28px; height: 28px; }
.universe-card h3 { font-size: 1.3rem; }
.universe-card .btn { margin-top: 18px; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 30px 20px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.05rem; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 0.2em; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.cta-band .btn-accent { flex-shrink: 0; }

/* ---------- Page banner (catalogues / contact) ---------- */
.page-banner {
  background: var(--bg-alt);
  padding: 64px 0 48px;
  text-align: center;
}
.page-banner .breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.page-banner .breadcrumb a { color: var(--purple-700); font-weight: 600; }
.page-banner h1 { font-size: 2.2rem; margin-bottom: 0.3em; }
.page-banner p { max-width: 56ch; margin: 0 auto; }

/* ---------- Catalogue toolbar ---------- */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-muted);
  transition: all 0.15s ease;
}
.filter-chip:hover { border-color: var(--purple-500); color: var(--purple-700); }
.filter-chip.active {
  background: var(--purple-700);
  border-color: var(--purple-700);
  color: #fff;
}

.search-box {
  position: relative;
  min-width: 260px;
}
.search-box input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
.search-box input:focus { outline: 2px solid var(--purple-500); outline-offset: 1px; }
.search-box svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-muted);
}

.catalog-count {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

/* ---------- Product / software grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.product-thumb {
  height: 140px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-thumb svg { width: 44px; height: 44px; color: rgba(255,255,255,0.95); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.clickable { cursor: pointer; }
.thumb-gallery-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(29, 16, 68, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

/* ---------- Lightbox galerie ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 36, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-image {
  max-width: min(720px, 90vw);
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  background: #fff;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
}
.lightbox-arrow:hover, .lightbox-close:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.lightbox-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
}
.lightbox-dot.active { background: var(--cyan-500); }

@media (max-width: 640px) {
  .lightbox-overlay { padding: 20px; }
  .lightbox-arrow { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
.product-category-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--purple-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-number { font-size: 0.72rem; font-weight: 700; color: var(--ink-muted); letter-spacing: 0.03em; font-variant-numeric: tabular-nums; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 0; }
.product-body p.desc {
  font-size: 0.88rem;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-body p.desc-more {
  margin: 0;
  font-size: 0.76rem;
  font-style: italic;
  color: var(--cyan-600);
}
.product-body p.desc-more[hidden] { display: none; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}
.product-price { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--purple-800); font-size: 1.05rem; }
.product-license { font-size: 0.75rem; color: var(--cyan-600); font-weight: 600; }
.product-body .btn { margin-top: 10px; width: 100%; padding: 10px; font-size: 0.88rem; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-muted);
  grid-column: 1 / -1;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { font-size: 1.2rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.contact-info-item .icon svg { width: 18px; height: 18px; }
.contact-info-item strong { display: block; color: var(--ink); font-size: 0.95rem; }
.contact-info-item span, .contact-info-item a { font-size: 0.9rem; color: var(--ink-muted); }
.contact-info-item .phone-list { display: flex; flex-direction: column; gap: 2px; }
.contact-info-item .phone-list a { color: var(--ink-muted); }
.contact-info-item .phone-list a:hover { color: var(--purple-700); }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-alt);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--purple-500);
  outline-offset: 1px;
  background: #fff;
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: -6px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}
.form-status.success { display: block; background: #E4FBF3; color: #0B7A54; }
.form-status.error { display: block; background: #FDEBEB; color: #B3261E; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand p { color: rgba(255, 255, 255, 0.65); max-width: 32ch; margin-top: 14px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--cyan-500); }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--cyan-500); }
.footer-phones { display: flex; flex-direction: column; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Slider Nouveautés ---------- */
.featured-section-compact { padding: 14px 0; }
.featured-slider {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.featured-track {
  display: flex;
  transition: transform 0.5s ease;
}
.featured-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  height: 300px;
}
.featured-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.featured-media img { width: 100%; height: 100%; object-fit: contain; padding: 24px; box-sizing: border-box; }
.featured-media svg { width: 64px; height: 64px; color: var(--purple-500); opacity: 0.5; }
.featured-info {
  padding: 32px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.featured-info h3 { font-size: 1.5rem; margin: 0; }
.featured-info p { font-size: 0.92rem; }
.featured-info .btn { align-self: flex-start; margin-top: 8px; padding: 10px 20px; font-size: 0.88rem; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple-700);
  border: 1px solid var(--border);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.slider-arrow:hover { background: var(--purple-100); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(58, 27, 122, 0.25);
  border: none;
  padding: 0;
}
.slider-dot.active { background: var(--purple-700); }

@media (max-width: 720px) {
  .featured-slide { grid-template-columns: 1fr; height: auto; }
  .featured-media { height: 200px; }
  .featured-info { padding: 30px; }
  .slider-arrow { width: 38px; height: 38px; }
}

/* ---------- Fiche technique (pop-up) ---------- */
.specs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 36, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.specs-overlay.open { display: flex; }
.specs-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 560px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.specs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.specs-head h2 { font-size: 1.15rem; margin: 0; }
.modal-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-muted);
  padding: 4px;
}
.modal-close:hover { color: var(--purple-700); }
.specs-body {
  margin: 0;
  padding: 24px;
  overflow-y: auto;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
}
.specs-section + .specs-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.specs-section[hidden] { display: none; }
.specs-section h3 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin: 0 0 8px;
}
.specs-section p,
.specs-section pre {
  margin: 0;
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink);
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ---------- Nos Partenaires ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.partner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.partner-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partner-logo img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.partner-logo-fallback {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.partner-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.partner-service { font-size: 0.85rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .universe-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-actions .btn-outline { display: none; }
  .hero h1 { font-size: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .contact-info-card, .contact-form-card { padding: 26px; }
}
