/* ===================================
   NAMÉLYAHOME Landing Page - Components
   Styles spécifiques aux composants
   =================================== */

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-light);
  z-index: 100;
  transition: all var(--transition-fast);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  min-height: 40px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.logo-img:hover {
  opacity: 0.85;
}

/* ===== HERO SECTION - Premium Architectural ===== */
.hero {
  background: linear-gradient(rgba(26,26,26,0.55), rgba(26,26,26,0.55)), url('../images/hero/hero-background.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  height: 85vh; /* Mobile */
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: var(--space-md); /* 16px avant séparateur */
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Séparateur Or sous le titre */
.hero__title::after {
  content: '';
  display: block;
  width: 80px; /* w-20 */
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-md) auto var(--space-lg); /* 16px puis 32px */
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300; /* Poppins Light */
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl); /* 64px avant CTA */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Desktop : 100vh */
@media (min-width: 1024px) {
  .hero {
    height: 100vh;
  }
}

/* ===== PROBLEM SECTION - Premium Architectural ===== */
.problem-section {
  background: var(--color-gray-light);
  padding: var(--space-3xl) 0; /* py-24 = 96px */
}

.problem-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: var(--space-2xl);
  row-gap: var(--space-lg);
  align-items: center;
  max-width: 1150px;
  margin: 0 auto;
}

.problem-cta {
  grid-column: 1 / -1;
  text-align: left;
}
.problem-cta .cta-secondary {
  margin-top: 0;
}

.problem-content {
  text-align: left;
  padding-right: var(--space-xl);
}

.problem-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: var(--space-lg); /* 32px */
  line-height: 1.1;
}

.problem-paragraph {
  font-family: var(--font-body);
  font-size: 1.05rem; /* Légèrement réduit de 1.125rem */
  font-weight: 300; /* Poppins Light */
  color: var(--color-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-lg); /* 32px */
}

/* Focus : mots "impossibles à corriger" en Or */
.highlight-accent {
  color: var(--color-accent);
  font-weight: 400;
}

.cta-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 1rem 2rem;
  font-size: var(--text-base);
  font-weight: 500;
  font-family: var(--font-body);
  border-radius: 0;
  transition: all var(--transition-fast);
  margin-top: var(--space-xl); /* 48px */
  letter-spacing: 0.02em;
}

.cta-secondary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image du plan avec bordure fine et fond gris pâle */
.problem-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-image {
  text-align: center;
  max-width: 560px;
}

.plan-img {
  width: 100%;
  height: auto;
  background: #f9fafb; /* bg-gray-50 */
  border: 1px solid #e5e7eb; /* border-gray-200 */
  border-radius: 4px;
  padding: var(--space-md);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform var(--transition-normal);
}

.plan-img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.plan-caption {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-gray-medium);
  font-style: italic;
  max-width: 560px;
  line-height: 1.4;
  margin-top: var(--space-md);
}

.problem-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.plan-placeholder {
  width: 300px;
  height: 200px;
  background: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

/* Anciens styles de placeholder supprimés */

.plan-caption {
  font-size: var(--text-sm);
  color: var(--color-gray-medium);
  font-style: italic;
  max-width: 300px;
  line-height: 1.4;
}

/* ===== PROOF SECTION - Premium Architectural ===== */
.proof-section {
  background: var(--color-primary); /* Noir charbon #1a1a1a */
  color: var(--color-white);
  text-align: center;
  padding: var(--space-3xl) 0; /* py-24 = 96px */
}

.proof-content {
  margin-bottom: var(--space-2xl);
}

.proof-title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.proof-title-emphasis {
  font-style: italic;
  color: var(--color-white);
}

.proof-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.before-after-slider {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  height: 50vh; /* Mobile */
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Curseur central blanc rond 50px */
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--color-white);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background: var(--color-white);
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.handle-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Desktop : 80vh */
@media (min-width: 1024px) {
  .before-after-slider {
    height: 80vh;
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide.before {
  clip-path: inset(0 50% 0 0);
}

.slide.after {
  clip-path: inset(0 0 0 50%);
}

.slide-label {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  font-family: var(--font-body);
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* "Avant" à gauche, "Après" à droite (toujours visibles) */
.slide.after .slide-label {
  left: auto;
  right: var(--space-lg);
}

/* Styles supprimés - remplacés par de vraies images */

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--color-white);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.handle-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-md);
}

.handle-button::before {
  content: '\2194';
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.handle-button::after {
  content: none;
}

/* ===== SERVICES SECTION - Premium Architectural ===== */
.services-section {
  background: var(--color-gray-light);
  text-align: left;
  padding: var(--space-3xl) 0; /* py-24 = 96px */
}

.services-section h2 {
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--color-primary);
  position: relative;
  text-align: left;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-xl);
}

.services-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-lg) 0 0 0;
  border-radius: 2px;
}

.services-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
  text-align: left;
  max-width: 1100px;
  margin: var(--space-xl) auto var(--space-2xl);
  padding-left: var(--space-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-white);
  padding: 2rem; /* p-8 = 32px */
  border: 1px solid #f3f4f6; /* border-gray-100 */
  transition: all var(--transition-normal);
  text-align: left;
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* shadow-card */
}

/* Effet survol : bordure devient noire */
.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Numéro (01, 02...) : Playfair, Taille 4xl (36px), Couleur Or */
.service-number {
  display: inline-block;
  color: var(--color-accent);
  font-size: 2.25rem; /* 4xl = 36px */
  font-weight: 400;
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  line-height: 1;
}

/* Séparateur interne : Or, largeur 48px (w-12), hauteur 2px */
.service-separator {
  width: 48px; /* w-12 */
  height: 2px;
  background: var(--color-accent);
  margin: 0 0 var(--space-lg) 0;
  border-radius: 0;
}

/* Titre Carte : Playfair, Taille xl (20px), Noir */
.service-card h3 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem; /* xl = 20px */
  line-height: 1.2;
}

/* Texte Carte : Poppins, Taille sm (14px), Gris moyen */
.service-card p {
  color: var(--color-gray-medium);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  flex-grow: 1;
}

/* ===== QUALIFICATION SECTION - Premium Architectural ===== */
.qualification-section {
  background: var(--color-primary); /* Noir charbon #1a1a1a */
  color: var(--color-white);
  padding: var(--space-3xl) 0; /* py-24 = 96px */
}

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
  max-width: 1100px;
  margin: 0 auto;
}

.qualification-card {
  background: transparent;
  padding: var(--space-2xl);
  border-radius: 0;
  border: none;
  transition: all var(--transition-normal);
}

.qualification-card h3 {
  margin-bottom: var(--space-xl);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--text-h3);
}

.qualification-card ul {
  list-style: none;
  padding-left: 0;
}

.qualification-card li {
  position: relative;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Colonne "Pour vous" : Texte Blanc/Gris clair. Icône Check */
.qualification-card--for li {
  color: var(--color-text-light);
}

.qualification-card--for li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: var(--text-lg);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colonne "Pas pour vous" : Texte Gris foncé (moins lisible) */
.qualification-card--not li {
  color: #6b7280; /* text-gray-500 - volontairement plus sombre */
}

.qualification-card--not li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #6b7280;
  font-weight: bold;
  font-size: var(--text-lg);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop : taille xl (20px) */
@media (min-width: 1024px) {
  .qualification-card li {
    font-size: 1.05rem;
  }
}

/* ===== DECISION SECTION - Premium Architectural (fond noir) ===== */
.decision-section {
  background: var(--color-primary);
  text-align: center;
  padding: var(--space-3xl) 0; /* py-24 = 96px */
}

.decision-content {
  max-width: 768px; /* max-w-3xl */
  margin: 0 auto;
}

.decision-content h2 {
  margin-bottom: var(--space-lg); /* 32px */
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
}

/* Sous-titre "Cadre" : Poppins, sm, Majuscules, Tracking-widest */
.decision-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em; /* tracking-widest */
  margin-bottom: var(--space-2xl); /* 64px */
}

.pricing-info {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: 0;
  margin-bottom: var(--space-xl); /* 48px */
  text-align: center;
  border: none;
  box-shadow: none;
}

/* Sous-titre "Cadre" dans pricing */
.pricing-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.1em; /* tracking-widest */
  margin-bottom: var(--space-xl);
  text-align: center;
}

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

/* Texte "Tarif/Conditions" : Poppins, sm, Gris moyen */
.pricing-text p {
  margin-bottom: var(--space-lg); /* 32px */
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-gray-medium);
}

.pricing-text strong {
  color: var(--color-accent);
  font-weight: 500;
}

.pricing-note {
  font-size: var(--text-sm);
  color: var(--color-gray-medium);
  font-style: italic;
  margin-top: var(--space-lg);
}

/* Séparateur Or 40px (w-10) avant bouton final */
.cta-separator {
  width: 40px; /* w-10 */
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-xl) auto; /* 48px */
  border-radius: 0;
}

/* Footer : Copyright sm, Majuscules, Tracking-widest */
.footer-copyright {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal__container {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal[aria-hidden="false"] .modal__container {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  background: var(--color-gray-light);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__close:hover {
  background: var(--color-error);
  color: var(--color-white);
}

.modal__step {
  text-align: center;
}

.modal__step h2 {
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
}

.step-content ul {
  text-align: left;
  max-width: 400px;
  margin: var(--space-lg) auto;
}

.step-content li {
  margin-bottom: var(--space-sm);
}

.modal-list {
  text-align: left;
  max-width: 500px;
  margin: var(--space-md) auto;
  padding-left: var(--space-lg);
  list-style: disc;
}

.modal-list li {
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-secondary);
}

.modal-disclaimer {
  font-size: var(--text-sm);
  color: var(--color-gray-medium);
  font-style: italic;
  margin-top: var(--space-lg);
  text-align: center;
}

/* ===== QUALIFICATION FORM ===== */
.qualification-form {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== CALENDLY INTEGRATION ===== */
.calendly-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.calendly-inline-widget {
  min-height: 630px;
  width: 100%;
}

/* Fallback pour erreurs Calendly */
.calendly-fallback {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-gray-light);
  border-radius: var(--radius-lg);
}

.calendly-fallback h3 {
  color: var(--color-error);
  margin-bottom: var(--space-md);
}

.calendly-fallback a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== ANIMATIONS SPÉCIFIQUES ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: slideInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* ===== ÉTATS INTERACTIFS ===== */
.service-card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.qualification-card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* ===== OPTIMISATIONS PERFORMANCE ===== */
.slider-container,
.modal__container {
  will-change: transform;
}

.service-card:hover {
  will-change: transform;
}

/* ===== DARK MODE (optionnel) ===== */
@media (prefers-color-scheme: dark) {
  .modal__container {
    background: var(--color-secondary);
    color: var(--color-white);
  }
  
  .modal__step h2 {
    color: var(--color-white);
  }
  
  .form-group label {
    color: var(--color-white);
  }
}
.step-objective {
  background: var(--color-gray-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  margin: var(--space-lg) 0;
  font-size: var(--text-base);
}

.step-objective strong {
  color: var(--color-primary);
}
.form-note {
  text-align: center;
  color: var(--color-gray-medium);
  margin: var(--space-lg) 0;
  font-style: italic;
}

.form-note small {
  font-size: var(--text-sm);
}
/* =========================================================
   Section "Qui je suis" — bande photo + overlay texte
   ========================================================= */
.about-section {
  background: var(--color-primary);
}
/* Bande photo : image affichée EN ENTIER (non recadrée) + texte par-dessus */
.about-photo-band {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.about-photo {
  width: 100%;
  height: auto;
  display: block;
}
.about-photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.55) 24%, rgba(26,26,26,0) 50%),
    linear-gradient(90deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.18) 38%, rgba(26,26,26,0) 62%);
  pointer-events: none;
}
.about-photo-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--space-2xl) var(--space-xl);
  max-width: 760px;
}
.about-content {
  max-width: 560px;
  text-align: left;
}
.about-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.about-section h2 {
  color: var(--color-white);
  font-size: var(--text-h2);
  margin-bottom: var(--space-md);
}
.about-text {
  color: #ececec;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: var(--space-md);
}
.about-photo-text .about-text {
  margin-bottom: 0;
}
.about-text strong {
  color: var(--color-white);
  font-weight: 500;
}

/* Bande "le reste du texte" sous la photo (fond noir) */
.about-story {
  background: var(--color-primary);
  padding: var(--space-xl) 0 var(--space-xl);
}
.about-story .about-content {
  max-width: 760px;
}

/* =========================================================
   Section "Vrais projets" — planches plan→3D + avis Google
   ========================================================= */
.projects-section {
  background: var(--color-gray-light);
  padding: var(--space-3xl) 0;
  text-align: left;
}
.projects-section h2 {
  max-width: 1100px;
  margin: 0 auto var(--space-lg);
  padding-left: var(--space-xl);
  position: relative;
}
.projects-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--color-accent);
  margin: var(--space-lg) 0 0 0;
  border-radius: 2px;
}
.projects-intro {
  max-width: 1100px;
  margin: 0 auto var(--space-2xl);
  padding-left: var(--space-xl);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}
.project-card {
  margin: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  border: 1px solid #ececec;
}
.project-card img {
  width: 100%;
  height: auto;
  display: block;
}
.project-card figcaption {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-primary);
  padding: var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--color-accent);
}

/* Avis Google — section dédiée (fond clair, alternance) */
.reviews-section {
  background: var(--color-gray-light);
  padding: var(--space-3xl) 0;
}
.reviews-block {
  max-width: 1000px;
  margin: 0 auto;
}
.reviews-heading {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.reviews-google {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.review-card {
  margin: 0;
  background: var(--color-white);
  border: 1px solid #ececec;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.review-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}
.review-text {
  font-style: italic;
  color: var(--color-secondary);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}
.review-author {
  font-style: normal;
  font-weight: 500;
  color: var(--color-primary);
}

/* Responsive sections Qui je suis + Projets */
@media (max-width: 768px) {
  /* Mobile : recadrage portrait centré sur Maïna (tête visible) + texte par-dessus */
  .about-photo {
    height: 70vh;
    object-fit: cover;
    object-position: 68% 18%;
  }
  .about-photo-text {
    padding: var(--space-lg) var(--space-md);
    max-width: 100%;
  }
  .about-content { max-width: 100%; }
  .projects-section h2,
  .projects-intro { padding-left: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Section FAQ — accordéons natifs (<details>) + footer
   ========================================================= */
.faq-section {
  background: var(--color-gray-light);
  padding: var(--space-3xl) 0;
}
.faq-heading {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-2xl);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e2e2e2;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-accent); }
.faq-item summary::after {
  content: '+';
  font-size: 1.7rem;
  line-height: 1;
  color: var(--color-accent);
  font-family: var(--font-body);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer {
  padding: 0 0 var(--space-lg);
}
.faq-answer p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
  margin: 0;
}

.site-footer {
  background: var(--color-primary);
  padding: var(--space-xl) 0;
}
.site-footer p {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Bloc "Ce qu'on fait pendant les 30 min" (dans la section RDV, fond noir) */
.decision-rdv {
  max-width: 620px;
  margin: 0 auto var(--space-2xl);
  text-align: left;
}
.decision-rdv p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.decision-rdv p strong { color: var(--color-white); font-weight: 500; }
.decision-rdv-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 var(--space-md);
}
.decision-rdv-list li {
  color: var(--color-text-light);
  font-size: 1.05rem;
  font-weight: 300;
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.decision-rdv-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* =========================================================
   Section "Ce qu'on fait pendant les 30 min" — photo + texte
   ========================================================= */
.rdv-section {
  background: var(--color-gray-light);
  padding: var(--space-3xl) 0;
}
.rdv-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.rdv-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
.rdv-text h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}
.rdv-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.rdv-text p strong { color: var(--color-primary); font-weight: 500; }
.rdv-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 var(--space-md);
}
.rdv-list li {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-secondary);
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.rdv-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}
@media (max-width: 768px) {
  .rdv-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .rdv-photo {
    max-width: 300px;
    margin: 0 auto;
  }
}
