/* ========================================
   MAKE YOUR COM — Premium Design
   Matching make-marketing.ch
   ======================================== */

/* --- CSS Variables --- */
:root {
  --navy: #070f33;
  --dark-navy: #101828;
  --orange: #ff703a;
  --orange-hover: #e8612d;
  --white: #ffffff;
  --light-bg: #F9FAFB;
  --gray-text: #475467;
  --gray-light: #98A2B3;
  --gray-border: #e4e7ec;
  --link-blue: #1a7efb;
  --shadow-sm: 0 1px 2px rgba(7,15,51,0.05);
  --shadow-md: 0 4px 16px rgba(7,15,51,0.08);
  --shadow-lg: 0 8px 32px rgba(7,15,51,0.12);
  --shadow-xl: 0 16px 48px rgba(7,15,51,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

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

/* --- Utility --- */
.section {
  padding: 100px 0;
}

.section--gray {
  background-color: var(--light-bg);
}

.section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255,255,255,0.75);
}

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

.accent { color: var(--orange); }

.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(255,112,58,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 1100px;
  margin: 16px auto 0;
  font-size: 1.1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,112,58,0.3);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================
   HEADER — Transparent over hero
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  background: var(--navy);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 64px;
  width: auto;
}

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

.header__nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.header__cta {
  margin-left: 16px;
}

.header__cta .btn {
  font-size: 0.875rem;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Inner pages: header starts solid for pages without full-bleed hero */
.page--inner .header {
  background: var(--navy);
}

/* ============================
   HERO — Full viewport with background image
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: var(--navy);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero__image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image {
    justify-content: center;
  }
}

.hero::before {
  content: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 780px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.7;
}

.hero .btn-group {
  margin-top: 8px;
}

/* ============================
   CLIENT LOGOS CAROUSEL
   ============================ */
.clients-carousel {
  padding: 48px 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.clients-carousel__label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
}

.clients-carousel__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.clients-carousel__track:hover {
  animation-play-state: paused;
}

.clients-carousel__item {
  flex-shrink: 0;
  width: 140px;
  height: 60px;
  margin: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity var(--transition);
  filter: grayscale(30%);
}

.clients-carousel__item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.clients-carousel__item img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   PROBLEM STATEMENT
   ============================ */
.problem-section {
  padding: 100px 0;
  background: var(--white);
}

.problem-section__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.problem-section h2 {
  margin-bottom: 24px;
}

.problem-section p {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* ============================
   LE SYSTEME PREVIEW — 2 columns
   ============================ */
.systeme-preview {
  padding: 100px 0;
  background: var(--light-bg);
}

.systeme-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.systeme-preview__text .badge {
  margin-bottom: 12px;
}

.systeme-preview__text h2 {
  margin-bottom: 20px;
}

.systeme-preview__text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.systeme-preview__visual {
  position: relative;
}

.systeme-preview__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
}

.systeme-preview__card + .systeme-preview__card {
  margin-top: 20px;
}

.systeme-preview__card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}

.systeme-preview__card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}

/* ============================
   STATS
   ============================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.stat__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.5;
}

.stat__sublabel {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* ============================
   ABOUT PREVIEW
   ============================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview__text h2 {
  margin-bottom: 20px;
}

.about-preview__text p {
  margin-bottom: 24px;
}

.about-preview__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-preview__images img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-preview__images img:first-child {
  transform: translateY(24px);
}

/* ============================
   3 PILLARS
   ============================ */
.pillars-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
  text-align: center;
  transition: all var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 112, 58, 0.1);
  border-radius: 50%;
  color: var(--orange);
}

.pillar-card__icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 2;
}

.pillar-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pillar-card h3 {
  margin-bottom: 8px;
}

.pillar-card__subtitle {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.pillar-card p {
  font-size: 0.95rem;
}

.pillar-card > p:last-child {
  text-align: justify;
  hyphens: auto;
}

/* ============================
   CTA SECTION — abstract gradient background
   ============================ */
.cta-section {
  padding: 120px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 112, 58, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(120, 110, 255, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 80, 120, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, #050a24 0%, #0e1a4a 60%, #1a2570 100%);
}

/* Formes geometriques abstraites en SVG-like (pseudo-elements) */
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 112, 58, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 110, 255, 0.30) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* ============================
   CONTACT FORM SECTION (home)
   ============================ */
.contact-home {
  padding: 100px 0;
  background: var(--light-bg);
}

.contact-home__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ============================
   CARDS
   ============================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--gray-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,112,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.975rem;
}

/* --- Grid layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================
   PHASE CARDS (Systeme page)
   ============================ */
.phase-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  position: relative;
  overflow: hidden;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--navy));
}

.phase-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.phase-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.phase-card ul {
  margin-top: 20px;
}

.phase-card li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-text);
  font-size: 0.975rem;
}

.phase-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ============================
   PILLAR DETAILED (systeme page)
   ============================ */
.pillar-detailed {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-border);
}

.pillar-detailed:last-child {
  border-bottom: none;
}

.pillar-detailed__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.pillar-detailed h3 {
  margin-bottom: 4px;
}

.pillar-detailed__subtitle {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

/* ============================
   HERO PAGE (inner pages)
   ============================ */
.hero-page {
  padding: 140px 0 60px;
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.hero-page h1 {
  margin-bottom: 16px;
  color: var(--white);
}

.hero-page h1 .accent {
  color: var(--orange);
}

.hero-page p {
  font-size: 1.05rem;
  max-width: 1200px;
  color: rgba(255,255,255,0.8);
  white-space: normal;
}

@media (min-width: 1100px) {
  .hero-page p {
    white-space: nowrap;
    overflow: visible;
  }
}

.hero-page .badge {
  background: rgba(255,112,58,0.15);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 0;
  margin-bottom: 24px;
}

.breadcrumbs__list,
.breadcrumbs__list li {
  list-style: none !important;
  list-style-type: none !important;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-light);
  padding: 0 !important;
  margin: 0 !important;
}

.breadcrumbs__list li::marker {
  content: "" !important;
}

.breadcrumbs__list a {
  color: var(--gray-light);
  transition: color var(--transition);
}

.breadcrumbs__list a:hover {
  color: var(--orange);
}

.breadcrumbs__list .separator {
  font-size: 0.75rem;
}

.breadcrumbs__list .current {
  color: var(--white);
  font-weight: 500;
}

/* ============================
   FORM
   ============================ */
.form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.975rem;
  color: var(--navy);
  background: var(--light-bg);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,112,58,0.1);
  background: var(--white);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================
   CONTACT CARDS
   ============================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-card h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.contact-card a {
  display: block;
  color: var(--gray-text);
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--orange);
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info > li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.contact-info > li + li {
  border-top: 1px solid var(--gray-border);
}

.contact-info svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--orange);
  margin-top: 2px;
}

.contact-info a,
.contact-info span {
  color: var(--gray-text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-info a {
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info a:hover {
  color: var(--orange);
}

/* ============================
   ACTUALITES — Articles grid + cards
   ============================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-card__image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #050a24 0%, #1a2570 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.article-card__image::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 112, 58, 0.25), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.article-card__date {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(8px);
}

.article-card__content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.article-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  line-height: 1.35;
  color: var(--navy);
}

.article-card p {
  font-size: 0.95rem;
  color: var(--gray-text);
  margin: 0 0 20px;
  flex: 1;
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap var(--transition);
}

.article-card__link:hover {
  gap: 12px;
}

.article-card__link::after {
  content: '\2192';
}

.article-card__link--disabled {
  color: var(--gray-text);
  cursor: default;
  opacity: 0.6;
}

.article-card__link--disabled::after {
  content: '';
}

.article-card--placeholder {
  opacity: 0.85;
}

.article-card--placeholder h3 {
  color: var(--gray-text);
  font-style: italic;
}

/* Article body (single article page) */
.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--navy);
}

.article-body h3 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--navy);
}

.article-body p,
.article-body li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-text);
  margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.article-body ul li {
  list-style: disc;
}

.article-body ol li {
  list-style: decimal;
}

.article-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--navy);
  background: var(--light-bg);
}

.article-body a {
  color: var(--orange);
  text-decoration: underline;
}

/* ============================
   ECOSYSTEME MAKE — cross-brand local backlinks (design impactant)
   ============================ */
.ecosystem-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin-top: 40px !important;
}

@media (max-width: 900px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .ecosystem-grid {
    grid-template-columns: 1fr !important;
  }
}

.ecosystem-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  padding: 32px 28px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 200px;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF703A 0%, #FF9D6F 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(7, 15, 51, 0.12);
  border-color: #FF703A;
}

.ecosystem-card:hover::before {
  opacity: 1;
}

.ecosystem-card__label {
  display: inline-block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #FF703A !important;
  padding: 6px 12px !important;
  background: rgba(255, 112, 58, 0.1) !important;
  border-radius: 999px !important;
  align-self: flex-start;
  margin-bottom: 8px;
}

.ecosystem-card h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.35rem !important;
  margin: 0 0 8px !important;
  color: #070f33 !important;
  line-height: 1.3 !important;
}

.ecosystem-card p {
  font-size: 0.95rem !important;
  color: #6b7280 !important;
  line-height: 1.55 !important;
  margin: 0 0 16px !important;
  flex: 1;
}

.ecosystem-card__url {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #FF703A !important;
  margin-top: auto !important;
  letter-spacing: 0.02em;
}

.ecosystem-social {
  margin-top: 56px !important;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  text-align: center !important;
}

.ecosystem-social__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem !important;
  font-weight: 500;
  color: #070f33 !important;
  margin: 0 0 20px !important;
}

.ecosystem-social__links {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.ecosystem-social__links a {
  padding: 10px 20px !important;
  background: #f8f9fb !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 999px !important;
  color: #070f33 !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.ecosystem-social__links a:hover {
  background: #FF703A !important;
  border-color: #FF703A !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 112, 58, 0.3);
}

/* Content-block (corps des pages SEO) — aéré et lisible */
.content-block {
  max-width: 820px;
  margin: 0 auto;
}

.content-block p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #4b5563;
  margin-bottom: 24px;
}

.content-block p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 0;
  color: #FF703A;
  font-weight: 700;
}

/* ============================
   STEPS
   ============================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,112,58,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.step h4 {
  margin-bottom: 8px;
}

.step p {
  font-size: 0.925rem;
}

/* ============================
   VALUE CARDS
   ============================ */
.value-card {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-border);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: rgba(255,112,58,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.value-card h3 {
  margin-bottom: 12px;
}

/* ============================
   INFO BOX
   ============================ */
.info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px;
  margin: 40px 0;
}

.info-box p {
  font-size: 1.05rem;
  font-style: italic;
}

/* ============================
   PAGE CONTENT
   ============================ */
.page-content {
  padding: 60px 0 100px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__logo img {
  height: 200px;
  width: auto;
  display: block;
}

.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.footer__brand-name span {
  color: var(--orange);
}

.footer__tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.925rem;
  padding: 6px 0;
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

/* --- Le Groupe MAKE (favicons cliquables, 4eme colonne du grid) --- */
.footer__group-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
  font-family: 'Inter', sans-serif;
}

.footer__group-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__group-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer__group-logo:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.footer__group-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer__credit {
  text-align: center;
  padding: 0 0 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__credit a {
  color: var(--orange);
  font-weight: 600;
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--white);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--orange);
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================
   SCROLL TOP
   ============================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ============================
   SERVICES (kept for services page)
   ============================ */
.services-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.services-nav__btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--light-bg);
  color: var(--gray-text);
  border: 1px solid var(--gray-border);
  cursor: pointer;
  transition: all var(--transition);
}

.services-nav__btn:hover,
.services-nav__btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.service-link:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.service-link__arrow {
  color: var(--orange);
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.service-link:hover .service-link__arrow {
  transform: translateX(4px);
}

/* ============================
   LEGAL PAGES
   ============================ */
.legal-content {
  padding: 140px 0 80px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  list-style: disc;
  color: var(--gray-text);
  padding: 4px 0;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .about-preview,
  .systeme-preview__grid,
  .contact-home__grid {
    gap: 40px;
  }

  .about-preview__images img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 90vh;
    padding: 120px 0 64px;
  }

  .hero-page {
    padding: 110px 0 40px;
  }

  /* Mobile navigation */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__nav a {
    font-size: 1.05rem;
    padding: 14px 16px;
    color: rgba(255,255,255,0.85);
  }

  .header__nav a:hover,
  .header__nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
  }

  .header__cta {
    margin-left: 0;
    margin-top: 16px;
  }

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

  .header__mobile-toggle {
    display: flex;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7,15,51,0.4);
    z-index: 998;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Grids */
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about-preview,
  .systeme-preview__grid,
  .contact-home__grid {
    grid-template-columns: 1fr;
  }

  .about-preview__images {
    grid-template-columns: 1fr 1fr;
  }

  .about-preview__images img {
    height: 200px;
  }

  .about-preview__images img:first-child {
    transform: none;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .btn-group {
    flex-direction: column;
  }

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

  .phase-card {
    padding: 32px;
  }

  .form {
    padding: 32px;
  }

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

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

  .clients-carousel__item {
    width: 100px;
    margin: 0 20px;
  }

  .clients-carousel__item img {
    max-width: 90px;
  }

  .pillar-detailed {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .pillar-detailed__number {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .container {
    padding: 0 16px;
  }
}
