/*
Theme Name:   Groupe EXTERN
Theme URI:    https://www.groupe-extern.fr
Description:  Thème enfant pour le Groupe EXTERN - Partenaire stratégique IT & RGPD
Author:       Groupe EXTERN
Author URI:   https://www.groupe-extern.fr
Template:     generatepress
Version:      2.1.4
Text Domain:  groupe-extern
*/

/* =============================================
   GOOGLE FONTS — DM Sans (corps)
   October Tamil chargée via functions.php
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* =============================================
   VARIABLES — Charte graphique GROUPE EXTERN
   ============================================= */
:root {
  /* Couleurs charte officielle */
  --extern-navy:        #193F77;
  --extern-blue:        #3B71B7;
  --extern-teal:        #55BDB6;
  --extern-green:       #29693F;
  --extern-grey:        #585857;

  /* Dérivées UI */
  --extern-navy-dark:   #0F2A52;
  --extern-navy-mid:    #1C4A8A;
  --extern-blue-light:  #EBF2FB;
  --extern-teal-light:  #E8F7F6;
  --extern-green-light: #E6F2E9;
  --extern-white:       #FFFFFF;
  --extern-off-white:   #F5F7FA;
  --extern-light-grey:  #E8ECF2;
  --extern-text-grey:   #6B7280;
  --extern-dark:        #0A1F40;

  /* Accent = turquoise */
  --extern-accent:      #55BDB6;
  --extern-accent-dark: #3D9E97;

  /* Typographie */
  --font-display: 'October Tamil', 'DM Sans', 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  /* Spacing / Radius */
  --section-pad:  96px 0;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-pill:  100px;

  /* Ombres */
  --shadow-card:  0 2px 24px rgba(25,63,119,0.08);
  --shadow-hover: 0 8px 40px rgba(25,63,119,0.16);
  --shadow-glow:  0 0 32px rgba(85,189,182,0.22);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--extern-grey);
  background: var(--extern-white);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--extern-navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--extern-accent); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--extern-navy); line-height: 1.2; font-weight: 600; }

/* =============================================
   UTILITAIRES
   ============================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-pad); }
.section--navy { background: var(--extern-navy); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--extern-white); }
.section--dark { background: var(--extern-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--extern-white); }
.section--light { background: var(--extern-off-white); }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--extern-teal);
  margin-bottom: 14px;
}
.section__label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--extern-teal);
  border-radius: 2px;
}

.section__title { font-size: clamp(26px, 3.5vw, 44px); margin-bottom: 18px; letter-spacing: -0.3px; }
.section__subtitle { font-size: 17px; color: var(--extern-text-grey); max-width: 600px; line-height: 1.75; }
.section--navy .section__subtitle,
.section--dark .section__subtitle { color: rgba(255,255,255,0.5); }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn--primary { background: var(--extern-navy); color: var(--extern-white); border-color: var(--extern-navy); }
.btn--primary:hover { background: var(--extern-navy-mid); color: var(--extern-white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--teal { background: var(--extern-teal); color: var(--extern-white); border-color: var(--extern-teal); }
.btn--teal:hover { background: var(--extern-accent-dark); color: var(--extern-white); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn--outline-white { background: transparent; color: var(--extern-white); border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { border-color: var(--extern-teal); color: var(--extern-teal); transform: translateY(-2px); }
.btn--outline-navy { background: transparent; color: var(--extern-navy); border-color: var(--extern-navy); }
.btn--outline-navy:hover { background: var(--extern-navy); color: var(--extern-white); transform: translateY(-2px); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s;
}
.site-header.scrolled {
  background: rgba(25, 63, 119, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.header__logo { display: flex; align-items: center; text-decoration: none; }
.header__logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.header__logo-text { font-family: var(--font-display); font-weight: 600; color: var(--extern-white); }
.header__logo-text .groupe { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.65); display: block; line-height: 1; }
.header__logo-text .name { font-size: 22px; color: var(--extern-teal); letter-spacing: 0.5px; }

.header__nav { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.header__nav a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.header__nav a:hover { color: var(--extern-teal); }
.header__nav .nav-cta { background: var(--extern-teal); color: var(--extern-white); padding: 9px 20px; border-radius: var(--radius-sm); font-weight: 600; font-size: 13px; }
.header__nav .nav-cta:hover { background: var(--extern-accent-dark); color: var(--extern-white); }

.header__burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.header__burger span { width: 24px; height: 2px; background: var(--extern-white); border-radius: 2px; transition: all 0.3s; display: block; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--extern-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(85,189,182,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(59,113,183,0.10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 28px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(85,189,182,0.1);
  border: 1px solid rgba(85,189,182,0.3);
  color: var(--extern-teal);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--extern-teal);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  color: var(--extern-white);
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero__title .accent { color: var(--extern-teal); }

.hero__subtitle { font-size: 17px; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 40px; max-width: 500px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
}
.hero__card::before {
  content: '';
  position: absolute;
  top: -1px; left: 30px; right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--extern-teal), transparent);
}

.hero__stat { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero__stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero__stat:first-child { padding-top: 0; }

.hero__stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hero__stat-icon--blue  { background: rgba(59,113,183,0.2); }
.hero__stat-icon--teal  { background: rgba(85,189,182,0.18); }
.hero__stat-icon--green { background: rgba(41,105,63,0.2); }

.hero__stat-number { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--extern-teal); min-width: 68px; line-height: 1; }
.hero__stat-label { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.45; }
.hero__stat-label strong { display: block; font-size: 15px; color: rgba(255,255,255,0.82); font-weight: 500; margin-bottom: 2px; }

/* =============================================
   MISSION / VISION / RAISON D'ÊTRE
   ============================================= */
.mission { padding: var(--section-pad); }
.mission__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.mission__card {
  background: var(--extern-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mission__card--navy  { border-left-color: var(--extern-navy); }
.mission__card--blue  { border-left-color: var(--extern-blue); }
.mission__card--teal  { border-left-color: var(--extern-teal); }
.mission__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.mission__card-picto { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.mission__card-picto--navy { background: var(--extern-blue-light); }
.mission__card-picto--blue { background: var(--extern-blue-light); }
.mission__card-picto--teal { background: var(--extern-teal-light); }

.mission__card-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--extern-teal); margin-bottom: 8px; }
.mission__card-title { font-size: 18px; font-weight: 600; color: var(--extern-navy); margin-bottom: 12px; }
.mission__card-text { font-size: 14px; color: var(--extern-text-grey); line-height: 1.75; }

/* =============================================
   OFFRES / BU
   ============================================= */
.offres { padding: var(--section-pad); }
.offres__header { margin-bottom: 52px; }
.offres__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.offre-card {
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.offre-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.offre-card--blue::after  { background: var(--extern-blue); }
.offre-card--teal::after  { background: var(--extern-teal); }
.offre-card--green::after { background: var(--extern-green); }
.offre-card--navy::after  { background: var(--extern-navy); }
.offre-card:hover { background: rgba(255,255,255,0.055); border-color: rgba(85,189,182,0.18); transform: translateY(-4px); }
.offre-card:hover::after { transform: scaleX(1); }

.offre-card__icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 22px; }
.offre-card__icon--blue  { background: rgba(59,113,183,0.18); }
.offre-card__icon--teal  { background: rgba(85,189,182,0.18); }
.offre-card__icon--green { background: rgba(41,105,63,0.22); }
.offre-card__icon--navy  { background: rgba(25,63,119,0.25); }

.offre-card__title { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--extern-white); margin-bottom: 9px; }
.offre-card__text { font-size: 13px; color: rgba(255,255,255,0.43); line-height: 1.7; }
.offre-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--extern-teal); opacity: 0; transform: translateX(-6px); transition: all 0.3s; }
.offre-card:hover .offre-card__link { opacity: 1; transform: translateX(0); }

/* =============================================
   VALEURS — cartes avec vraies images illustrées
   ============================================= */
.valeurs { padding: var(--section-pad); }
.valeurs__intro { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.valeurs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.valeur-card {
  border-radius: var(--radius-md);
  background: var(--extern-white);
  border: 2px solid var(--extern-light-grey);
  transition: all 0.35s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.valeur-card:hover {
  border-color: var(--extern-teal);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Zone image illustrée */
.valeur-card__image {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: var(--extern-off-white);
}
.valeur-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
  display: block;
}
.valeur-card:hover .valeur-card__image img { transform: scale(1.04); }

/* Bandeau couleur bas image */
.valeur-card__image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  transition: height 0.3s ease;
}
.valeur-card:nth-child(1) .valeur-card__image::after { background: var(--extern-teal); }
.valeur-card:nth-child(2) .valeur-card__image::after { background: var(--extern-blue); }
.valeur-card:nth-child(3) .valeur-card__image::after { background: var(--extern-navy); }
.valeur-card:nth-child(4) .valeur-card__image::after { background: var(--extern-teal); }
.valeur-card:nth-child(5) .valeur-card__image::after { background: var(--extern-green); }
.valeur-card:nth-child(6) .valeur-card__image::after { background: var(--extern-blue); }
.valeur-card:hover .valeur-card__image::after { height: 6px; }

/* Corps texte */
.valeur-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.valeur-card__name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--extern-navy); margin-bottom: 8px; }
.valeur-card__desc { font-size: 13px; color: var(--extern-text-grey); line-height: 1.75; flex: 1; }

/* =============================================
   CHIFFRES CLÉS
   ============================================= */
.chiffres { padding: var(--section-pad); }
.chiffres__inner { background: var(--extern-navy); border-radius: var(--radius-lg); padding: 60px 56px; position: relative; overflow: hidden; }
.chiffres__inner::before { content: ''; position: absolute; top: 50%; right: -80px; transform: translateY(-50%); width: 360px; height: 360px; background: radial-gradient(circle, rgba(85,189,182,0.1) 0%, transparent 70%); pointer-events: none; }

.chiffres__header { text-align: center; margin-bottom: 52px; }
.chiffres__grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 2; }
.chiffre-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.chiffre-item:last-child { border-right: none; }

.chiffre-item__number { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); font-weight: 600; color: var(--extern-teal); line-height: 1; margin-bottom: 12px; display: block; }
.chiffre-item__unit { font-size: 26px; opacity: 0.65; }
.chiffre-item__label { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.5; }
.chiffre-item__label strong { display: block; font-size: 15px; color: rgba(255,255,255,0.82); font-weight: 500; margin-bottom: 3px; }

/* =============================================
   CONTACT CTA
   ============================================= */
.contact-cta { padding: var(--section-pad); }
.contact-cta__box {
  background: linear-gradient(135deg, var(--extern-navy) 0%, var(--extern-navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 68px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta__box::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(85,189,182,0.14) 0%, transparent 70%); border-radius: 50%; }
.contact-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--extern-dark); color: rgba(255,255,255,0.4); padding: 60px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 44px; }

.footer__brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--extern-white); margin-bottom: 4px; }
.footer__brand-sub { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--extern-teal); margin-bottom: 14px; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 270px; }

.footer__bu { display: flex; gap: 7px; margin-top: 18px; flex-wrap: wrap; }
.footer__bu-tag { padding: 3px 10px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600; color: var(--extern-white); }
.footer__bu-tag--it  { background: var(--extern-blue); }
.footer__bu-tag--sn  { background: var(--extern-teal); }
.footer__bu-tag--dpo { background: var(--extern-green); }

.footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--extern-teal); margin-bottom: 16px; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer__links a:hover { color: var(--extern-teal); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s; }
.footer__legal a:hover { color: var(--extern-teal); }

/* =============================================
   ANIMATIONS D'ENTRÉE
   ============================================= */
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
[data-animate-delay="1"] { transition-delay: 0.08s; }
[data-animate-delay="2"] { transition-delay: 0.16s; }
[data-animate-delay="3"] { transition-delay: 0.24s; }
[data-animate-delay="4"] { transition-delay: 0.32s; }
[data-animate-delay="5"] { transition-delay: 0.40s; }
[data-animate-delay="6"] { transition-delay: 0.48s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 72px 28px; }
  .hero__subtitle { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__card { max-width: 420px; margin: 0 auto; }
  .mission__grid { grid-template-columns: 1fr 1fr; }
  .offres__grid { grid-template-columns: 1fr 1fr; }
  .valeurs__grid { grid-template-columns: 1fr 1fr; }
  .chiffres__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .chiffre-item:nth-child(2) { border-right: none; }
  .chiffres__inner { padding: 44px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-cta__box { padding: 52px 36px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .mission__grid { grid-template-columns: 1fr; }
  .offres__grid { grid-template-columns: 1fr; }
  .valeurs__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .chiffres__inner { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .valeurs__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .contact-cta__actions { flex-direction: column; }
  .chiffres__grid { grid-template-columns: 1fr; }
  .chiffre-item { border-right: none; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .chiffre-item:last-child { border-bottom: none; }
}

/* =============================================
   PAGES LÉGALES (mentions, confidentialité, cookies)
   ============================================= */
.legal-content {
  font-family: var(--font-body);
  color: var(--extern-grey);
  line-height: 1.85;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--extern-navy);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--extern-teal-light);
}

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

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--extern-navy);
  margin: 32px 0 12px;
}

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

.legal-content ul {
  margin: 12px 0 20px 0;
  padding-left: 20px;
}
.legal-content ul li {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--extern-teal);
  text-decoration: underline;
  text-decoration-color: rgba(85,189,182,0.4);
  transition: color 0.2s;
}
.legal-content a:hover { color: var(--extern-accent-dark); }

.legal-content hr {
  border: none;
  border-top: 1px solid var(--extern-light-grey);
  margin: 48px 0 24px;
}

.legal-update {
  font-size: 13px !important;
  color: var(--extern-text-grey) !important;
  font-style: italic;
}

/* Tableau cookies */
.legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--extern-light-grey);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table thead tr {
  background: var(--extern-navy);
  color: var(--extern-white);
}

.legal-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--extern-light-grey);
  vertical-align: top;
  color: var(--extern-grey);
  line-height: 1.65;
}

.legal-table tbody tr:last-child td { border-bottom: none; }

.legal-table tbody tr:nth-child(even) td {
  background: var(--extern-off-white);
}

.legal-table code {
  background: var(--extern-blue-light);
  color: var(--extern-navy);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
}

/* =============================================
   MODERNISATION UI 2026
   ============================================= */
:root {
  --extern-ink: #07172F;
  --extern-surface: #FFFFFF;
  --extern-surface-soft: #F7FAFC;
  --extern-border: rgba(25, 63, 119, 0.12);
  --extern-border-dark: rgba(255, 255, 255, 0.12);
  --extern-shadow-soft: 0 18px 60px rgba(7, 23, 47, 0.10);
  --extern-shadow-lift: 0 24px 70px rgba(7, 23, 47, 0.18);
  --extern-gradient-brand: linear-gradient(135deg, #193F77 0%, #235A9B 48%, #55BDB6 100%);
}

body {
  color: #4E5968;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 44%, #FFFFFF 100%);
}

.extern-front-page .site-content,
.extern-front-page .content-area,
.extern-front-page .site-main,
.extern-front-page .inside-article,
.extern-front-page .grid-container,
.extern-front-page .container.grid-container,
.extern-front-page .site.grid-container,
.extern-front-page #page {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.extern-front-page .site-content {
  flex-direction: column;
}

.extern-home {
  display: block;
  width: 100vw;
  max-width: none;
  min-width: 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.extern-home > header,
.extern-home > section,
.extern-home > footer {
  width: 100%;
  max-width: none;
  min-width: 0;
  flex: 0 0 100%;
}

a,
button,
.btn,
.offre-card,
.mission__card,
.valeur-card {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(85, 189, 182, 0.42);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
.section__title {
  letter-spacing: 0;
}

.container,
.header__inner,
.hero__inner {
  max-width: 1220px;
}

.section__label {
  letter-spacing: 1.6px;
  color: #338F8A;
}

.section__title {
  font-size: clamp(2rem, 2.75rem, 2.75rem);
  margin-top: 0;
}

.section__subtitle {
  color: #5F6B7A;
}

.section__subtitle--center {
  margin: 0 auto;
}

.section__title--inverse {
  color: var(--extern-white);
}

.section--dark {
  background:
    linear-gradient(180deg, #07172F 0%, #0B2346 100%);
}

.section--light {
  background:
    linear-gradient(180deg, #F7FAFC 0%, #EEF5FB 100%);
}

.btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 22px;
  box-shadow: none;
}

.btn--teal {
  background: linear-gradient(135deg, #55BDB6 0%, #338F8A 100%);
  border-color: transparent;
}

.btn--outline-white {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

.btn:hover {
  transform: translateY(-2px);
}

.site-header {
  padding: 10px 0;
  background: rgba(7, 23, 47, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.site-header.scrolled,
body.nav-open .site-header {
  background: rgba(7, 23, 47, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

@supports (backdrop-filter: blur(18px)) {
  .site-header,
  .site-header.scrolled,
  body.nav-open .site-header {
    backdrop-filter: blur(18px);
  }
}

.header__inner {
  height: 62px;
}

.header__logo img {
  width: auto;
  height: 48px;
  max-width: 190px;
  object-fit: contain;
  filter: none;
  background: var(--extern-white);
  border-radius: 6px;
  padding: 6px 10px;
}

.header__nav {
  gap: 8px;
}

.header__nav a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  padding: 9px 12px;
}

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

.header__nav .nav-cta {
  margin-left: 8px;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 12px 28px rgba(85, 189, 182, 0.24);
}

.header__burger {
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 94vh;
  background:
    linear-gradient(115deg, rgba(7, 23, 47, 0.96) 0%, rgba(11, 35, 70, 0.94) 50%, rgba(25, 63, 119, 0.90) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 80px);
}

.hero::before,
.hero::after {
  border-radius: 0;
  width: auto;
  height: auto;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(85, 189, 182, 0.10) 44%, transparent 72%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 66% 100%);
}

.hero::after {
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent 0%, #F7FAFC 100%);
}

.hero__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 72px;
  padding-top: 104px;
  padding-bottom: 104px;
}

.hero__badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
}

.hero__title {
  max-width: 760px;
  font-size: clamp(2.55rem, 4rem, 4rem);
  letter-spacing: 0;
}

.hero__title .accent {
  color: #73D7D1;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.70);
  max-width: 610px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.70);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 600;
}

.hero__card {
  border-radius: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.055) 100%);
  border: 1px solid var(--extern-border-dark);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

@supports (backdrop-filter: blur(22px)) {
  .hero__card {
    backdrop-filter: blur(22px);
  }
}

.hero__card::before {
  display: none;
}

.hero__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  padding: 14px 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hero__card-head span {
  color: rgba(255, 255, 255, 0.50);
  font-size: 12px;
  font-weight: 600;
}

.hero__card-head strong {
  color: var(--extern-white);
  font-size: 13px;
  font-weight: 700;
}

.hero__stat {
  min-height: 82px;
  padding: 16px 14px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.hero__stat:hover {
  background: rgba(255, 255, 255, 0.055);
}

.hero__stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero__stat-number {
  color: #73D7D1;
  font-size: 2rem;
}

.hero__stat-unit {
  font-size: 1.1rem;
}

.mission__grid,
.offres__grid,
.valeurs__grid {
  align-items: stretch;
}

.mission__card,
.valeur-card {
  border: 1px solid var(--extern-border);
  border-radius: 10px;
  box-shadow: var(--extern-shadow-soft);
}

.mission__card {
  border-left: 0;
  padding: 32px;
}

.mission__card::before {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--extern-gradient-brand);
}

.mission__card-picto {
  display: none;
}

.mission__card-title,
.valeur-card__name {
  color: var(--extern-ink);
}

.offres__header {
  display: block;
}

.offres__grid {
  gap: 20px;
}

.offre-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.11);
}

.offre-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(115, 215, 209, 0.38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
}

.offre-card__icon {
  border-radius: 8px;
  color: var(--extern-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.offre-card__title {
  font-size: 1.04rem;
}

.offre-card__text {
  color: rgba(255, 255, 255, 0.62);
}

.offre-card__link {
  margin-top: auto;
  opacity: 1;
  transform: none;
}

.offre-card__link::after {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 0.2s ease;
}

.offre-card:hover .offre-card__link::after {
  width: 30px;
}

.valeur-card {
  border-width: 1px;
}

.valeur-card__image {
  padding-top: 62%;
}

.valeur-card__body {
  padding: 24px;
}

.chiffres__inner,
.contact-cta__box {
  border-radius: 18px;
  box-shadow: var(--extern-shadow-lift);
}

.chiffres__inner {
  background:
    linear-gradient(135deg, rgba(25, 63, 119, 0.98) 0%, rgba(7, 23, 47, 0.98) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 76px);
}

.chiffres__inner::before,
.contact-cta__box::before {
  display: none;
}

.chiffre-item__number {
  color: #73D7D1;
  font-size: clamp(2.6rem, 3.75rem, 3.75rem);
}

.contact-cta__box {
  background:
    linear-gradient(135deg, rgba(7, 23, 47, 0.98) 0%, rgba(25, 63, 119, 0.96) 58%, rgba(51, 143, 138, 0.94) 100%);
}

.contact-cta__title {
  max-width: 580px;
  margin: 0 auto 16px;
}

.contact-cta__subtitle {
  margin: 0 auto;
  max-width: 520px;
}

.site-footer {
  background: #07172F;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 42px;
  }

  .hero__subtitle,
  .hero__card {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .offres__header {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    padding: 8px 0;
  }

  .header__inner {
    height: 58px;
  }

  .site-header nav {
    position: fixed;
    inset: 74px 16px auto 16px;
    z-index: 999;
    pointer-events: none;
  }

  .site-header nav.is-open {
    pointer-events: auto;
  }

  .header__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(7, 23, 47, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header nav.is-open .header__nav {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .header__nav a,
  .header__nav .nav-cta {
    width: 100%;
    margin-left: 0;
    padding: 13px 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding-top: 104px;
    padding-bottom: 72px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 2.8rem, 2.8rem);
  }

  .hero__card {
    max-width: none;
    padding: 16px;
  }

  .hero__stat {
    grid-template-columns: auto auto 1fr;
  }

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

@media (max-width: 480px) {
  .container,
  .header__inner,
  .hero__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__proof span {
    justify-content: center;
    text-align: center;
  }

  .hero__stat {
    align-items: flex-start;
    gap: 12px;
  }

  .hero__stat-number {
    min-width: 54px;
    font-size: 1.8rem;
  }

  .mission__card,
  .offre-card {
    padding: 24px;
  }

  .contact-cta__box {
    padding: 40px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   DIRECTION ARTISTIQUE EPUREE
   ============================================= */
:root {
  --ui-bg: #F6F8FB;
  --ui-paper: #FFFFFF;
  --ui-ink: #082044;
  --ui-muted: #607086;
  --ui-line: rgba(8, 32, 68, 0.10);
  --ui-soft-line: rgba(8, 32, 68, 0.07);
  --ui-accent: #45B7B0;
  --ui-accent-dark: #258A84;
  --ui-radius: 8px;
  --ui-shadow: 0 18px 45px rgba(8, 32, 68, 0.08);
}

html,
body {
  background: var(--ui-bg);
}

.extern-home {
  background: var(--ui-bg);
}

.extern-home .container,
.extern-home .header__inner,
.extern-home .hero__inner {
  max-width: 1320px;
}

.extern-home .container {
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}

.extern-home .site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--ui-soft-line);
  box-shadow: 0 10px 28px rgba(8, 32, 68, 0.06);
}

.extern-home .site-header.scrolled,
body.nav-open .extern-home .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--ui-line);
  box-shadow: 0 14px 34px rgba(8, 32, 68, 0.08);
}

.extern-home .header__inner {
  height: 70px;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}

.extern-home .header__logo img,
.extern-home .header__logo-img {
  width: auto;
  height: 46px;
  max-width: 210px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  object-fit: contain;
  filter: none;
}

.extern-home .header__nav {
  gap: 4px;
}

.extern-home .header__nav a {
  color: var(--ui-ink);
  font-weight: 650;
  padding: 10px 13px;
  border-radius: var(--ui-radius);
}

.extern-home .header__nav a:hover,
.extern-home .header__nav a.is-active {
  color: var(--ui-accent-dark);
  background: rgba(69, 183, 176, 0.10);
}

.extern-home .header__nav .nav-cta {
  color: var(--extern-white);
  background: var(--ui-ink);
  box-shadow: none;
}

.extern-home .header__nav .nav-cta:hover {
  color: var(--extern-white);
  background: var(--ui-accent-dark);
}

.extern-home .header__burger {
  background: rgba(8, 32, 68, 0.07);
}

.extern-home .header__burger span {
  background: var(--ui-ink);
}

.extern-home .hero {
  min-height: auto;
  padding-top: 84px;
  background:
    linear-gradient(135deg, rgba(8, 32, 68, 0.98) 0%, rgba(18, 58, 105, 0.96) 68%, rgba(69, 183, 176, 0.88) 100%);
}

.extern-home .hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.040) 0 1px, transparent 1px 100%);
  background-size: 96px 96px;
  opacity: 0.35;
  clip-path: none;
}

.extern-home .hero::after {
  display: none;
}

.extern-home .hero__inner {
  min-height: calc(100vh - 84px);
  padding: clamp(72px, 8vw, 124px) clamp(24px, 5vw, 72px);
  gap: clamp(48px, 7vw, 96px);
}

.extern-home .hero__badge {
  border-radius: var(--ui-radius);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.extern-home .hero__title {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 4.6rem, 4.6rem);
  line-height: 1.03;
}

.extern-home .hero__subtitle {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.extern-home .hero__card {
  border-radius: 12px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.extern-home .hero__stat {
  border-radius: var(--ui-radius);
}

.extern-home .hero__stat-icon,
.extern-home .offre-card__icon {
  border-radius: var(--ui-radius);
}

.extern-home .hero__proof span {
  border-radius: var(--ui-radius);
}

.extern-home .btn {
  border-radius: var(--ui-radius);
  min-height: 52px;
  padding: 14px 24px;
}

.extern-home .btn--teal {
  background: var(--ui-accent);
}

.extern-home .btn--teal:hover {
  background: var(--ui-accent-dark);
}

.extern-home .section--light,
.extern-home .section--white {
  background: var(--ui-bg);
}

.extern-home .mission,
.extern-home .offres,
.extern-home .valeurs,
.extern-home .chiffres,
.extern-home .contact-cta {
  padding-top: clamp(78px, 8vw, 118px);
  padding-bottom: clamp(78px, 8vw, 118px);
}

.extern-home .section__label {
  color: var(--ui-accent-dark);
  letter-spacing: 1.4px;
}

.extern-home .section__title {
  color: var(--ui-ink);
  font-size: clamp(2.25rem, 3.25rem, 3.25rem);
  line-height: 1.08;
}

.extern-home .section__subtitle {
  color: var(--ui-muted);
  font-size: 1.04rem;
}

.extern-home .mission__grid,
.extern-home .valeurs__grid {
  gap: 22px;
}

.extern-home .mission__card,
.extern-home .valeur-card {
  border-radius: var(--ui-radius);
  background: var(--ui-paper);
  border: 1px solid var(--ui-line);
  box-shadow: none;
}

.extern-home .mission__card:hover,
.extern-home .valeur-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 183, 176, 0.36);
  box-shadow: var(--ui-shadow);
}

.extern-home .mission__card::before {
  background: var(--ui-accent);
}

.extern-home .mission__card-label,
.extern-home .footer__col-title,
.extern-home .footer__brand-sub {
  color: var(--ui-accent-dark);
}

.extern-home .mission__card-title,
.extern-home .valeur-card__name {
  color: var(--ui-ink);
}

.extern-home .mission__card-text,
.extern-home .valeur-card__desc {
  color: var(--ui-muted);
}

.extern-home .offres {
  background: #071A36;
}

.extern-home .offres .section__title,
.extern-home .chiffres .section__title,
.extern-home .contact-cta .section__title {
  color: var(--extern-white);
}

.extern-home .offres .section__subtitle {
  color: rgba(255, 255, 255, 0.66);
}

.extern-home .offres__grid {
  gap: 16px;
}

.extern-home .offre-card {
  min-height: 250px;
  border-radius: var(--ui-radius);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.extern-home .offre-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.085);
  box-shadow: none;
}

.extern-home .valeur-card__image::after,
.extern-home .offre-card::after {
  height: 2px;
}

.extern-home .chiffres__inner,
.extern-home .contact-cta__box {
  border-radius: 12px;
  box-shadow: none;
}

.extern-home .chiffres__inner {
  background: #0B2448;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.extern-home .contact-cta__box {
  background: var(--ui-ink);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.extern-home .site-footer {
  background: #06162D;
}

@media (max-width: 1024px) {
  .extern-home .hero__inner {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .extern-home .site-header nav {
    inset: 82px 16px auto 16px;
  }

  .extern-home .header__nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--ui-line);
  }

  .extern-home .header__nav .nav-cta {
    text-align: center;
  }

  .extern-home .hero {
    padding-top: 78px;
  }

  .extern-home .hero__title {
    font-size: 2.65rem;
  }
}
