/* ── 1. VARIABLES À PERSONNALISER ────────────── */
:root {
  --brand-accent: #B08A4B;

  --neutral-white: #FAF7F2;
  --neutral-black: #091221;
  --dark-bg: #0D1B28;

  --information-100: #CBE4FB;
  --information-200: #6CB2F4;
  --information-400: #0E81EC;
  --information-600: #0067B3;
  --information-700: #003261;

  --succes-100: #ADEBAF;
  --succes-200: #92D994;
  --succes-400: #21BC26;
  --succes-600: #009E05;
  --succes-700: #004702;

  --error-100: #F3BBB4;
  --error-200: #EC705F;
  --error-400: #D62E18;
  --error-600: #A4200E;
  --error-700: #75170A;

  --brand-white: #FFFFFF;
  --brand-dark: var(--neutral-dark-grey);
  /* texte sombre, footer */
  --brand-dark-txt: var(---neutral-black);
  --brand-bg: #FAF7F2;
  --brand-bg-light: #F6F8F4;

  /* Fonts — remplacer les noms selon Google Fonts */
  --font-display: 'Playfair Display', serif;
  --font-subtitle: 'Montserrat', sans-serif;
  --font-body: 'Cormorant', serif;


  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3.5rem;
  --space-xl: 4.5rem;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Ombres */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.14);

  /* Transition */
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 900px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brand-dark);
  background: var(--brand-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

html {
  font-size: 16px;
}

/* ── 3. CONTAINER ────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* ── 4. BOUTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.0em;
  cursor: pointer;
  border: none;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--brand-accent);
  color: var(--neutral-white);
}

.btn-primary:hover {
  background: var(--neutral-white);
  color: var(--neutral-black);
}

.btn-primary:hover .icone-nav {
  filter: brightness(0) saturate(100%) invert(38%) sepia(150%) saturate(200%)hue-rotate(80deg);
}

.btn-accent {
  background: var(--brand-accent);
  color: var(--brand-white);
}

.btn-accent:hover {
  background: var(--neutral-white);
  color: var(--neutral-black);
}

.btn-accent:hover .btn-icon {
  filter: brightness(0);
}

.btn-accent:hover .btn-icon,
.btn-form:hover .btn-icon {
  /* transform: translateX(4px);  METTRE AUTRE CHOSE*/
}

.btn-lg {
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 1.5px;
  font-weight: 600;
}

.cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  border: var(--brand-bg-light) 1px solid;
}

.btn-cta {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
}

.btn-icon {
  height: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn-form {
  width: 100%;
  justify-content: center;
  background: var(--brand-accent);
  color: var(--neutral-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--space-sm);
  transition: background-color var(--transition);
}

.btn-form:hover {
  background: var(--brand-accent--100);
  color: var(--brand-accent--600);
}

.btn-form:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(38%) sepia(150%) saturate(200%)hue-rotate(80deg);

}

/* ── LIST ───────────────────────────────── */
.list {
  display: flex;
  flex-direction: column;
}

.list-item {
  align-self: flex-start;
  color: var(--neutral-white);
  border: var(--brand-accent) 1px solid;
  font-size: 1rem;

  padding: 4px 10px;
}

.list-item.light-mode {
  padding: 4px 10px;
}

.row {
  gap: var(--space-xs);
  flex-direction: row;
  flex-wrap: wrap;
}



/* ── 5. HEADER ───────────────────────────────── */
.top {
  background: url(src/img/pexels-celine-3776818-29224390.jpg);
  background-size: cover;
}

.site-header {
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgb(246, 248, 249, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 70vw;
  margin-inline: auto;
  width: 100%;
}

.logo-container {
  display: flex;
}



.logo-font-nav {
  display: flex;
  flex-direction: column;
  padding: 4px;
  font-size: .9rem;
  color: var(--brand-accent--400);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 110%;
  text-transform: uppercase;
}

.name-1 {
  color: var(--brand-accent);
  font-weight: 100;
  letter-spacing: 35%;
}


.menu {
  height: 15px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.icone-nav {
  height: 1rem;
}


/* ── 6. HERO ─────────────────────────────────── */
.hero {
  background: url(src/img/DKDAvocat-profil-2.png);
  background-size: 83%;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 5;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--brand-white);
  padding-top: var(--space-xl);
}

.container.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60vh;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  letter-spacing: -3%;
  margin-bottom: var(--space-sm);
  line-height: 1.6rem;
  text-transform: uppercase;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}


.hero-title h1 {
  color: var(--neutral-black);
  font-size: 3rem;
  line-height: 3rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 7%;

}

.hero-title-2 {
  color: var(--brand-accent);
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 100;
  letter-spacing: 60%;
}

.section-rule-hero {
  width: 15vw;
  height: 4px;
  background: var(--neutral-black);
  margin-inline: auto;
  margin-bottom: var(--space-sm);
}



.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-black);
  line-height: 147%;
  max-width: 560px;
  margin-bottom: var(--space-md);
  text-align: center;
}

.hero-subtitle span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 4px 8px;
}

.btn-hero {
  margin-inline: auto;
  gap: 0.75rem;
}

.stats-band {
  margin-top: var(--space-md);
  background-color: rgba(0, 71, 2, 0.4);
  padding: 0.75rem var(--space-md);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: var(--container-max);
  margin-inline: auto;
}



.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}

.stat-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--brand-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* ── 7. SECTIONS COMMUNES ────────────────────── */
.section {
  padding-block: var(--space-xl);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-sm);
}

.eyebrow-title {
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 25%;
  font-weight: 500;
  color: var(--brand-accent);
}

.section-heading {
  display: flex;
  align-items: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}

.section-rule {
  width: 100%;
  flex: 1;
  height: 2px;
  background: var(--brand-accent);
  margin-bottom: var(--space-xs);
}

.section-rule-title {
  width: 15vw;
  flex: 1;
  height: 2px;
  background: var(--brand-accent);
  margin-bottom: var(--space-md);
}

.section-rule-form {
  flex: 1;
  height: 2px;
  background: var(--brand-primary);
}

.section-rule-zone {
  flex: 1;
  height: 2px;
  background: rgba(35, 39, 45, 0.2);
}

.section-intro {
  font-size: 1rem;
  line-height: 140%;
  margin-bottom: var(--space-lg);
  color: var(--neutral-black);
}

/* ── 8. À PROPOS ─────────────────────────────── */
.about {
  background: var(--brand-dark);
}

.about .section-intro {
  color: var(--brand-light);
}

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

.about-image img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ── 9. SERVICES ─────────────────────────────── */
/* .section.services{
  padding-block: var(--space-lg) ;
} */
.services {
  background: var(--brand-primary-dark);
}

/* .services .section-intro { color: var(--brand-light); } */

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 3fr);
  width: 70%;
  gap: var(--space-md);
  margin-inline: auto;
}


.service-card {
  background-color: rgba(44, 66, 87, 0.3);
  border-bottom: rgba(255, 255, 255, 0.5) 1px solid;
  border-radius: var(--radius-xs);
  padding: var(--space-md);
  transition: border-color var(--transition), transform var(--transition);
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border: none;
}

.light-mode {
  background: none;
  color: var(--neutral-black);
  display: flex;
  padding: 0;
  filter: none;
}

.service-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.service-heading {
  display: inline-flex;
  background-color: var(--brand-primary--400);
  align-items: center;
  gap: 10px;
  padding: var(--space-xs);
  border-radius: 2px;
  margin-bottom: var(--space-xs);
}

.service-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0em;
  color: var(--brand-white);
}

.service-body {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}



/* ── BANDEAU ─────────────────────────── */
.image {
  margin-bottom: var(--space-md);
  object-fit: cover;
  height: 400px;
}

.img-container {
  position: relative;
  height: 400px;
  margin-inline: auto;
  margin-top: var(--space-lg);
}

.bandeau {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: white;
  background: rgba(176, 138, 75, .4);
}

/* 
.overlay p {
  font-size: 3.5rem;
  font-weight: 500;
} */

.big {
  font-family: "Cormorant Infant", serif;
  font-size: 4rem;
  font-weight: 700;
}

.small {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: -5%;
}


/* ── 10. décisions obtenues ─────────────────────────── */
.beige-bg {
  background-color: #F1EDE2;
}

.dark {
  background: var(--dark-bg);
  color: var(--brand-bg-light);
}


.testimonials-grid {
  margin-inline: auto;
  width: 70%;
  margin-bottom: var(--space-md);
}

.testimonial-card {
  background: var(--brand-white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
}

.testimonial-heading {
  background-color: var(--dark-bg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));

  font-size: 1rem;
}

.card-heading {
  text-transform: uppercase;
  letter-spacing: -1%;
  font-weight: 700;
  color: var(--brand-accent);
}

.card-heading-label {
  font-weight: 400;
  color: var(--neutral-white);
  padding-bottom: var(--space-xs);
}

.testimonial-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 120%;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 140%;
  color: var(--neutral-black);
}

.testimonial-label {
  font-size: 0.8rem;
  line-height: 140%;
  color: var(--neutral-black);
  letter-spacing: -4%;
}

.author-name {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-primary);
}

.author-role {
  display: block;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
}

.beige-bg {
  background-color: #F1EDE2;
}

/* ── 10. Valeurs ─────────────────────────── */
.valeurs {
  margin-top: 0%;
  background-color: var(--brand-primary-dark);
  z-index: 0;
}

.valeurs .section-intro {
  color: var(--brand-light);
}

.valeur-heading {
  color: var(--brand-accent--400);
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1rem;

  font-weight: 400;

  font-family: var(--font-display);
}

.valeur-heading.h3 {}

.number {
  color: var(--brand-accent);
}

.valeur-title {
  letter-spacing: 0em;
  font-weight: 400;
}

.valeur-title.accent {
  color: var(--brand-accent);
}

.valeur-rule {
  flex: 1;
  height: 2px;
  background: var(--neutral-grey);
  margin-bottom: 0.75rem;
}

/* ── 11. FORMULAIRE ──────────────────────────── */
.contact {
  background: var(--dark-bg);
}

.contact .section-intro {
  color: var(--neutral-white);
}

.section-eyebrow.contact .eyebrow-title {
  color: var(--brand-accent--100);
  font-weight: 600;
}

.section-eyebrow.contact .section-rule {
  background-color: var(--brand-accent--100);
  height: 2px;
}

.section-heading.section-title.light {
  color: var(--neutral-white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.form-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 100;
  display: block;
  font-size: 0.8rem;
  color: var(--brand-white);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgb(255, 255, 255);
  color: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--brand-accent);
}

.form-field textarea {
  height: 120px;
  resize: none;
}

.form-field input:disabled,
.form-field textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-family: var(--font-display);
  text-align: center;
}

.form-feedback.error {
  color: #ee5342;
  font-weight: 700;
}

.form-feedback.success {
  color: #2ecc71;
  font-weight: 700;
}

.form-feedback.loading {
  color: var(--brand-light);
}

/* ── 12. FOOTER ──────────────────────────────── */
.site-footer {
  background: var(--neutral-black);
  color: var(--brand-white);
  padding-block: var(--space-md);
}

.pro-2 {
  color: var(--brand-white);
}

.footer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
  margin-bottom: var(--space-md);
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--space-md);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--brand-light);
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-light);
  margin-top: 2px;
}

.footer-map iframe {
  border-radius: var(--radius-lg);
  border: 2px solid var(--brand-accent);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--brand-accent--100);
}

/* LEGAL SECTION */
.legal-section {
  background: var(--brand-bg);
  padding-block: var(--space-xl);
}

.legal-content {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary--400);
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-accent--400);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.06em;
}

.legal-content p,
li {
  font-size: 0.9rem;
  color: var(--neutral-black);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.legal-content a {
  color: var(--brand-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── 13. RESPONSIVE ──────────────────────────── */
@media (max-width: 1000px) {
  .top {
    width: 100%;
  }

  .header-inner {
    max-width: 85vw;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: var(--space-lg);
  }

  .section-heading {
    margin-bottom: var(--space-sm);
  }

  .services {
    margin-top: -10%;
  }

  .section-intro {
    margin-bottom: var(--space-md);
  }



  .bandeau {
    object-position: 50% 70%;
  }

  .mobile-only {
    display: block;
  }

  /* .overlay p {
    font-size: 2rem;
  } */
}

@media (max-width: 768px) {
  .top {
    background-position: 50% 100%;
  }

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

  .services-grid,
  .testimonials-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .services {
    margin-top: var(--space-xs);
  }

  .img-container {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .desktop-only {
    display: none;
  }

  .logo {
    height: 36px;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .icone-nav {
    height: 0.9rem;
  }

  .hero {
    padding-top: var(--space-md);
    padding-bottom: 0;
  }

  .hero-title h1 {
    padding: 2px 4px;
    font-size: 2rem;
    line-height: 1.6rem;
  }

  .hero-title-2 {
    line-height: 1.6rem;
    font-size: 1.5rem;
    padding: 2px 4px;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }


  .btn {
    font-size: 0.875rem;
    padding: 5px 10px;
    font-weight: 400;
  }

  .btn-primary {
    font-size: 0.875rem;
    padding: 5px 10px;
    font-weight: 100;
  }

  .btn-secondary {
    padding: var(--space-xs) var(--space-sm);
  }

  .btn-lg {
    font-size: 0.875rem;
    padding: var(--space-sm);
  }


  .section-rule {
    height: 1px;
  }

  .section-rule-zone {
    height: 1px;
  }

  .valeur-rule {
    height: 1px;
  }

  .service-title {
    font-size: 0.75rem;
  }

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

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

  .section-title {
    font-size: 1.75rem;
    letter-spacing: 0em;
    line-height: 120%;
  }



  .testimonial-text {
    font-size: 0.875rem;
  }


}

@media (max-width: 1023) {

  .desktop-div {
    display: none;
  }

}

@media (min-width: 1024px) {

  /* Container */
  :root {
    --container-max: 1100px;
  }

  .section.services .container {
    height: 400px;
    display: flex;
    gap: var(--space-md);
  }

  .grid-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-eyebrow {
    margin-bottom: var(--space-xs);
  }

  .section-rule-title {
    width: 5vw;
    margin-top: var(--space-sm);
  }

  /* Header */
  .header-inner {
    max-width: 1100px;
  }

  /* Hero — photo à droite, contenu à gauche */
  .hero {
    background-size: 29%;
    background-position: 80% 100%;
    min-height: 70vh;
  }

  .container.hero-content {
    height: 40vh;
    max-width: 1100px;
  }

  .hero-title {
    align-items: flex-start;
  }

  .hero-subtitle {
    text-align: left;
  }

  .section-rule-hero {
    margin-inline: 0;
    width: 8rem;
  }

  .btn-hero {
    margin-inline: 0;
  }

  /* Présentation — photo à gauche, texte à droite */
  .mobile-only {
    display: none;
  }

  /* Services grid — 3 colonnes */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  /* Engagements — 3 colonnes */
  .section.testimonials.beige-bg .services-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .desktop-div {
    display: block;
    height: 100%;
  }

  /* Réseau international — Afrique en colonne 1 (pleine hauteur), Europe + Amérique empilées en colonne 2 */
  .section:has(.row) .services-grid {
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto auto;
    width: 100%;
    align-items: start;
  }

  .section:has(.row) .services-grid .section-intro:nth-child(1) {
    grid-column: 1;
    padding-right: var(--space-md);
  }

  .section:has(.row) .services-grid .service-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .section:has(.row) .services-grid .service-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  /* Décisions obtenues */
  .testimonials-grid {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: stretch;
  }
  
  .decision{
    display: flex;
    gap: 2.2rem;
  }

  .testimonial-heading{
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  }

  .testimonial-card{
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0 ;
  }

  .decision-wrapper{
    width: 50%;
  }
  /* Contact — formulaire centré plus large */
  .contact .container {
    max-width: 800px;
  }


  .big {
    font-size: 6rem;
  }

  .small {
    font-size: 2.5rem;
  }
}

@media (min-width: 1440px) {
  :root {
    --container-max: 1200px;
  }

  .header-inner {
    max-width: 1200px;
  }

  .hero-title h1 {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }

  .hero-title-2 {
    font-size: 4.5rem;
    line-height: 5rem;
  }
}

/* ── 14. ANIMATIONS ──────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.7s ease both;
}