@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== VARIABLES CSS ========== */
:root {
  --color-primary: #c47a3a;
  --color-primary-dark: #a8632e;
  --color-primary-light: #d99a5c;
  --color-secondary: #1e3248;
  --color-secondary-light: #2a4560;
  --color-text: #2d2d2d;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f6f3;
  --color-bg-dark: #1a1a2e;
  --color-border: #e5e7eb;
  --color-white: #ffffff;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-secondary);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

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

.section-padding {
  padding: var(--spacing-xl) 0;
}

/* ========== HEADER FIXE ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

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

/* Logo SVG */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo svg {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--color-text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

/* Navigation desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-secondary);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.3px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--color-primary);
}

/* Bouton CTA header */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 122, 58, 0.35);
}

.btn-cta-outline {
  background: transparent;
  color: var(--color-primary);
}

.btn-cta-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

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

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

/* ========== MENU HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-secondary);
  font-weight: 500;
}

.nav-mobile a:hover {
  color: var(--color-primary);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-secondary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 50, 72, 0.85) 0%, rgba(30, 50, 72, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-top: 80px;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--spacing-sm);
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
}

.hero h1 {
  font-size: var(--fs-hero);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.hero h1 em {
  color: var(--color-primary-light);
  font-style: italic;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== SECTION TITRE ========== */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--spacing-lg);
}

.section-header .section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--spacing-xs);
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* ========== SECTION SERVICES ========== */
.services {
  background: var(--color-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: var(--spacing-md);
}

.service-card-body h3 {
  margin-bottom: var(--spacing-xs);
}

.service-card-body p {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  margin-bottom: var(--spacing-sm);
}

.service-card-body ul {
  margin-bottom: var(--spacing-sm);
}

.service-card-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

.service-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ========== SECTION A PROPOS ========== */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: var(--spacing-sm);
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.stat-item {
  text-align: center;
  padding: var(--spacing-sm);
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

/* ========== SECTION EXPERTISE ========== */
.expertise {
  background: var(--color-bg-alt);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.expertise-item {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--spacing-sm);
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.expertise-item:hover .expertise-icon {
  background: var(--color-primary);
}

.expertise-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.expertise-item:hover .expertise-icon svg {
  stroke: var(--color-white);
}

.expertise-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
}

.expertise-item p {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

/* ========== SECTION APPROCHE (Cycle de conseil) ========== */
.approach {
  background: var(--color-secondary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.approach .section-header h2 {
  color: var(--color-white);
}

.approach .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.approach .section-tag {
  color: var(--color-primary-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.approach-step {
  text-align: center;
  padding: var(--spacing-md);
  position: relative;
}

.approach-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: var(--spacing-xs);
}

.approach-step h3 {
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
  font-size: 1.15rem;
}

.approach-step p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ========== SECTION EQUIPE ========== */
.team {
  background: var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.team-card {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing-sm);
  border: 4px solid var(--color-bg-alt);
  transition: var(--transition);
}

.team-card:hover .team-photo {
  border-color: var(--color-primary);
}

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card .team-role {
  color: var(--color-primary);
  font-size: var(--fs-small);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.team-card p {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

/* ========== SECTION PARTENAIRES ========== */
.partners {
  background: var(--color-bg-alt);
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: var(--spacing-lg);
  animation: scroll-left 20s linear infinite;
  width: max-content;
}

.partners-track img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.partners-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

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

/* ========== SECTION VISION ========== */
.vision {
  position: relative;
  background: var(--color-bg);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.vision-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.vision-content h2 {
  margin-bottom: var(--spacing-sm);
}

.vision-content p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

/* ========== SECTION FAQ ========== */
.faq {
  background: var(--color-bg-alt);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 1.25rem var(--spacing-md);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question .faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--spacing-md) 1.25rem;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* ========== SECTION CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #152536 100%);
  text-align: center;
  padding: var(--spacing-xl) 0;
}

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

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--spacing-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-brand .logo-text {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.footer-brand p {
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--color-primary-light);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer-bottom p {
  font-size: var(--fs-small);
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-bottom-links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
  color: var(--color-primary-light);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

/* ========== PAGE CONTACT ========== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--color-secondary);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 50, 72, 0.9), rgba(30, 50, 72, 0.6));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.contact-section {
  padding: var(--spacing-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.contact-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: var(--fs-small);
  color: var(--color-text-light);
}

/* Formulaire */
.contact-form {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 122, 58, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--spacing-sm);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-form .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ========== PAGES LEGALES ========== */
.legal-content {
  padding: var(--spacing-lg) 0;
}

.legal-content h2 {
  font-size: var(--fs-h3);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
}

.legal-content p,
.legal-content ul {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ========== BANNIERE COOKIES ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: var(--spacing-md);
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-white);
  background: transparent;
}

.cookie-btn:hover {
  border-color: var(--color-primary);
}

.cookie-btn-accept {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-btn-refuse {
  background: transparent;
}

.cookie-btn-custom {
  background: transparent;
}

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

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

/* ========== RESPONSIVE 992px ========== */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .about-grid,
  .vision-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ========== RESPONSIVE 640px ========== */
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .page-hero {
    padding: 130px 0 60px;
  }
}
