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

:root {
  --white:       #ffffff;
  --off-white:   #f0fafd;       /* fond très léger cyan */
  --ocean:       #1e3a8a;       /* bleu nuit principal */
  --ocean-deep:  #1e3a8a;       /* bleu nuit footer */
  --ocean-mid:   #2563eb;       /* bleu intermédiaire */
  --teal:        #38bdf8;       /* accent turquoise clair */
  --seafoam:     #7dd3fc;       /* touche douce */
  --blue-light:  #eff6ff;       /* fond hover très doux */
  --border:      #bfdbfe;       /* bordures */
  --gray-2:      #dbeafe;
  --gray-4:      #6b82a8;
  --gray-6:      #374e72;
  --navy:        #1e3a5f;       /* texte principal */
  --font:        'Outfit', -apple-system, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t:           0.3s;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--ocean-deep);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#loader.out { opacity: 0; visibility: hidden; }

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 320px;
}

.loader-logo {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
}

.loader-bar-wrap {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.loader-bar-fill {
  height: 100%;
  background: var(--teal);
  width: 0%;
  transition: width 0.08s linear;
}

.loader-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease);
}
#header.scrolled { border-color: var(--gray-2); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  color: var(--ocean);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gray-6);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ocean);
  transition: width var(--t) var(--ease);
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after { width: 100%; }

.btn-proposal {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--ocean);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-proposal:hover { background: var(--ocean-deep); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--t);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 20px 48px 24px;
  gap: 18px;
  border-top: 1px solid var(--gray-2);
  background: var(--white);
}
.mobile-nav.open { display: flex; }
.mobile-nav > a { font-size: 15px; font-weight: 500; color: var(--gray-6); }
.mobile-nav .btn-proposal { width: fit-content; margin-top: 4px; }

/* Accordéon mobile "Nos métiers" */
.mobile-dropdown { display: flex; flex-direction: column; }
.mobile-drop-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-6);
  cursor: pointer;
  font-family: var(--font);
}
.mobile-drop-trigger svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mobile-dropdown.is-open .mobile-drop-trigger svg { transform: rotate(180deg); }
.mobile-drop-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-top 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
  padding-top: 0;
}
.mobile-dropdown.is-open .mobile-drop-items {
  max-height: 120px;
  padding-top: 12px;
}
.mobile-drop-items a {
  font-size: 14px !important;
  font-weight: 500;
  color: var(--ocean) !important;
  position: relative;
  padding-left: 14px;
}
.mobile-drop-items a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ocean);
}

/* ===== CTA BUTTONS ===== */
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: var(--white);
  color: var(--ocean-deep);
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}
.cta-primary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34,211,238,0.35);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.cta-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

.cta-full { width: 100%; justify-content: center; }

/* ===== TAG ===== */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 14px;
}

/* ===== SECTION HEAD ===== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 100px;
}
.section-head h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 0;
  color: var(--navy);
}
.section-head h2:not(:last-child) { margin-bottom: 16px; }
.section-head p { font-size: 15px; color: var(--gray-4); line-height: 1.55; margin-top: 20px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0f1f45 0%, #1e3a8a 50%, #2255b5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.hero-headline {
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 48px;
  text-transform: uppercase;
}

/* Gradient text on "courant fort / courant faible" */
.gradient-text {
  background: linear-gradient(135deg, #e0f2fe 0%, #93c5fd 45%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Taille plus grande pour les mots clés */
.hero-impact {
  font-size: clamp(56px, 7.8vw, 104px);
  line-height: 1.0;
  display: block;
}

/* Le "&" entre les deux */
.hero-amp {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

/* Mixed-weight utilities (conservés pour autres pages) */
.hw-light { font-weight: 300; }
.hw-bold  { font-weight: 800; }

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto 48px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  pointer-events: all;
}

/* Pill CTA (hero accueil) */
.cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 18px 42px;
  background: var(--white);
  color: var(--ocean);
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}
.cta-pill:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(56,189,248,0.45);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(8px); opacity: 0.7; }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--blue-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-strip--alt {
  background: var(--off-white);
  border-color: var(--gray-2);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track--reverse { animation-direction: reverse; }

.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  flex-shrink: 0;
}

.marquee-strip--alt .marquee-track span { color: var(--gray-4); }

.marquee-track .sep { font-size: 10px; color: var(--teal); letter-spacing: 0; display: inline-flex; align-items: center; }
.marquee-track .sep svg { display: inline-block; vertical-align: middle; }
.marquee-strip--alt .marquee-track .sep { color: var(--gray-2); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee3 {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
.marquee-track--x3 { animation-name: marquee3; }

/* ===== ABOUT ===== */
.about {
  background: var(--white);
  padding: 160px 0;
  border-bottom: 1px solid var(--gray-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 680px;
  gap: 80px;
  align-items: start;
}

.about-left h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--navy);
}

.about-right p { font-size: 15px; color: var(--gray-4); line-height: 1.55; margin-bottom: 0; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--gray-2);
  border-left: 1px solid var(--gray-2);
}

.astat {
  display: flex;
  flex-direction: column;
  padding: 36px 24px;
  border-right: 1px solid var(--gray-2);
  border-bottom: 1px solid var(--gray-2);
}

.astat strong {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: 6px;
}

.astat span { font-size: 12px; color: var(--gray-4); font-weight: 500; }

/* ===== SERVICES ===== */
.services {
  background: var(--white);
  padding: 120px 0 160px;
}

/* Grand titre section services — style référence */
.services-head {
  margin-bottom: 72px;
}
.services-headline {
  font-size: clamp(44px, 6.5vw, 100px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.srv-headline-gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0 0;
}

/* Card style AprilFord */
.srv-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 36px 36px 40px;
  position: relative;
  cursor: pointer;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}

.srv-card::before { content: none; }

/* Effet au survol : carte levée + halo bleu en dessous */
.srv-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 32px 64px rgba(59,130,246,0.22),
    0 12px 28px rgba(59,130,246,0.14),
    0 2px 8px rgba(59,130,246,0.08);
}

/* Icône — petite, bare, sans fond */
.srv-icon {
  width: 32px;
  height: 32px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.srv-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }

/* Titre grand et dominant */
.srv-card h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 16px;
  line-height: 1.1;
  min-height: 88px;
}

/* Description — taille lisible, normale */
.srv-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-4);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0;
}

.srv-arrow { display: none; }

/* ===== SECTEURS D'ACTIVITÉ ===== */
.sectors {
  padding: 120px 0;
  background: var(--gray-1);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.sector-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 28px 20px 32px;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
  cursor: default;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(59,130,246,0.18),
    0 8px 20px rgba(59,130,246,0.10);
}

.sector-icon {
  width: 36px;
  height: 36px;
  color: var(--navy);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.sector-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.sector-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 12px;
  line-height: 1.2;
  min-height: 34px;
}

.sector-card p {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-4);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* ===== PARTNERS ===== */
.partners {
  padding: 100px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.partners-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 64px;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
}

/* Fondu sur les bords */
.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

@keyframes scroll-partners {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partners-marquee { margin-bottom: 24px; }
.partners-marquee:last-child { margin-bottom: 0; }

.partners-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scroll-partners 32s linear infinite;
}

/* Deuxième ligne : sens inverse */
.partners-track--reverse {
  animation-direction: reverse;
  animation-duration: 36s;
}

/* Chaque logo */
.partner-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 40px;
}

.partner-item span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-4);
  white-space: nowrap;
}

.partner-item img {
  height: 120px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

/* ===== SECTEURS ===== */
.secteurs {
  background: linear-gradient(160deg, #0f1f45 0%, #1e3a8a 100%);
  padding: 160px 0;
}

.secteurs .section-head h2 { color: var(--white); font-weight: 300; }
.secteurs .section-head p  { color: rgba(255,255,255,0.5); }
.secteurs .tag             { color: var(--seafoam); }

.secteurs-list { display: flex; flex-direction: column; }

.sec-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background var(--t);
  cursor: pointer;
}
.sec-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.sec-item:hover { background: rgba(255,255,255,0.04); }

.sec-num { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; color: var(--seafoam); flex-shrink: 0; width: 32px; }

.sec-body { flex: 1; }
.sec-body h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 6px; }
.sec-body p  { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.sec-link { font-size: 20px; font-weight: 300; color: rgba(255,255,255,0.2); transition: color var(--t); flex-shrink: 0; }
.sec-item:hover .sec-link { color: var(--seafoam); }

/* ===== REALISATIONS ===== */
/* ===== RÉALISATIONS ===== */
.realisations {
  background: var(--white);
  padding: 160px 0;
  border-bottom: 1px solid var(--gray-2);
}

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

.real-card--lg   { grid-column: span 2; }
.real-card--full { grid-column: span 3; }
.real-card--full .real-bg { min-height: 340px; }

.real-row-2 {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.real-card { display: flex; }

.real-bg {
  min-height: 340px;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--t) var(--ease);
}

.real-card--lg .real-bg { min-height: 400px; }

.real-bg--photo {
  background-color: #0f1f45;
  background-size: cover;
  background-position: center;
}

.real-bg:hover { transform: scale(1.015); }

.real-info {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(12,74,110,0.88) 0%, rgba(12,74,110,0.1) 55%, transparent 100%);
  transition: background var(--t);
}

.real-bg:hover .real-info {
  background: linear-gradient(to top, rgba(12,74,110,0.94) 0%, rgba(12,74,110,0.25) 55%, transparent 100%);
}

.real-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--seafoam);
  border: 1px solid rgba(103,232,249,0.4);
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(103,232,249,0.08);
  width: fit-content;
  margin-bottom: 12px;
}

.real-info h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.real-card--lg .real-info h3 { font-size: 26px; }
.real-info p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.real-subtitle { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }

/* ===== REAL CARD HOVER OVERLAY ===== */
.real-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 69, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  padding: 40px;
  border-radius: inherit;
}
.real-card--hover:hover .real-hover-overlay {
  opacity: 1;
}
.real-hover-text {
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.55;
  text-align: center;
  transform: translateY(14px);
  transition: transform 0.4s ease;
}
.real-card--hover:hover .real-hover-text {
  transform: translateY(0);
}

/* ===== TESTIMONIALS ===== */
.testi {
  background: var(--off-white);
  padding: 160px 0;
  border-bottom: 1px solid var(--gray-2);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.testi-card {
  background: var(--white);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background var(--t);
}
.testi-card:hover { background: var(--blue-light); }

.testi-quote { font-size: 64px; font-weight: 900; line-height: 0.6; color: var(--blue-light); font-family: Georgia, serif; }
.testi-card p { font-size: 15px; color: var(--gray-6); line-height: 1.8; flex: 1; }

.testi-meta { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--gray-2); }

.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.testi-meta strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.testi-meta span   { font-size: 12px; color: var(--gray-4); }

/* ===== CONTACT ===== */
.contact { background: var(--white); padding: 160px 0; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-left > p { font-size: 15px; color: var(--gray-4); line-height: 1.55; margin-bottom: 52px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }

.cd-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray-6); }
.cd-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

#devisForm {
  background: var(--off-white);
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--t);
  resize: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ocean); }

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

.chk { position: relative; cursor: pointer; }
.chk input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.chk span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--white);
  border: 2px solid var(--gray-2);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  user-select: none;
  letter-spacing: 0.01em;
}

.chk span::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.25s, background 0.25s, transform 0.3s;
  background: transparent;
}

.chk:hover span {
  border-color: var(--ocean);
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,58,138,0.1);
}

.chk input:checked + span {
  border-color: var(--ocean);
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(30,58,138,0.3);
  animation: chk-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chk input:checked + span::before {
  border-color: rgba(255,255,255,0.6);
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%231e3a8a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

@keyframes chk-pop {
  0%   { transform: scale(0.95); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

#devisForm .cta-primary { background: var(--ocean); color: var(--white); padding: 20px 30px; font-size: 16px; font-weight: 700; border-radius: 12px; }
#devisForm .cta-primary:hover { background: var(--ocean-deep); color: var(--white); box-shadow: 0 10px 28px rgba(14,116,144,0.25); }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, #0f1f45 0%, #1e3a8a 100%);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  padding-bottom: 64px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ft-logo { font-size: 26px; font-weight: 900; letter-spacing: -0.04em; color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 24px; }

.ft-social { display: flex; gap: 10px; }
.ft-social a {
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t);
}
.ft-social a:hover { border-color: var(--seafoam); background: rgba(103,232,249,0.08); }
.ft-social svg { width: 14px; height: 14px; color: rgba(255,255,255,0.5); }

.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li,
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--t); line-height: 1.5; }
.footer-col ul a:hover { color: var(--seafoam); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.18); }
.ft-legal { display: flex; gap: 24px; }
.ft-legal a { font-size: 12px; color: rgba(255,255,255,0.18); transition: color var(--t); }
.ft-legal a:hover { color: var(--seafoam); }

/* ===== DROPDOWN NAV ===== */
.nav-dropdown { position: relative; }

.nav-drop-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gray-6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--t);
}
.nav-drop-trigger:hover,
.nav-dropdown:hover .nav-drop-trigger,
.nav-dropdown.is-open .nav-drop-trigger { color: var(--ocean); }

.nav-drop-trigger svg {
  width: 13px;
  height: 13px;
  transition: transform 0.22s var(--ease);
}
.nav-dropdown:hover .nav-drop-trigger svg,
.nav-dropdown.is-open .nav-drop-trigger svg { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 18px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 24px 64px rgba(30,58,138,0.12), 0 4px 16px rgba(30,58,138,0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.15s 0.1s;
  pointer-events: none;
  z-index: 200;
}
/* Pont invisible qui comble le gap entre le bouton et le menu */
.nav-drop-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 16px;
}
.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.is-open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s;
}

.drop-item {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 12px;
  transition: background var(--t);
}
.drop-item::after { display: none; }
.drop-item:hover { background: var(--blue-light); }

.drop-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  transition: color var(--t);
}
.drop-item-text span { font-size: 12px; color: var(--gray-4); }
.drop-item:hover .drop-item-text strong { color: var(--ocean); }

/* ===== HERO SMALL (sub-pages) ===== */
.hero--sm {
  min-height: 70vh;
  padding: 120px 48px 80px;
  display: flex;
  align-items: center;
}

.hero-wrap--page {
  text-align: center;
  width: 100%;
}

.hero-kpi-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.hero-kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
}

.hero-kpi-item strong {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-kpi-item span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-kpi-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero-kpi-row {
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 36px;
  }
  .hero-kpi-sep { display: none; }
  .hero-kpi-item { padding: 0 16px; }
}

.hero-page-title {
  font-size: clamp(72px, 11vw, 148px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--off-white);
  padding: 160px 0;
  border-bottom: 1px solid var(--gray-2);
}

.process-list { display: flex; flex-direction: column; }

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-2);
}
.process-item:first-child { border-top: 1px solid var(--gray-2); }

.process-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--border);
  line-height: 1;
}
.process-body h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 10px; }
.process-body p  { font-size: 14px; color: var(--gray-4); line-height: 1.6; }

/* ===== TIMELINE ===== */
.timeline-section {
  background: var(--white);
  padding: 160px 0;
  border-bottom: 1px solid var(--gray-2);
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Rail gris en fond */
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: #e2e8f0;
  border-radius: 2px;
}

/* Progression bleue au scroll */
.timeline::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px;
  height: var(--tl-progress, 0%);
  background: linear-gradient(180deg, #0f1f45 0%, #1e3a8a 40%, #2563eb 75%, #93c5fd 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.55), 0 0 24px rgba(37, 99, 235, 0.2);
  transition: height 0.08s linear;
  z-index: 1;
}

.tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 44px 0;
  padding-left: 44px;
  position: relative;
  cursor: default;
}

/* Décalage du contenu uniquement — le dot reste sur la ligne */
.tl-item .tl-year,
.tl-item .tl-body {
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tl-item:hover .tl-year,
.tl-item:hover .tl-body { transform: translateX(8px); }

/* Point — anneau + centre */
.tl-item::before {
  content: '';
  position: absolute;
  left: -10px; top: 52px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px #2563eb, 0 0 0 5px rgba(37, 99, 235, 0.12), 0 0 18px rgba(37, 99, 235, 0.3);
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}
.tl-item:hover::before {
  box-shadow: 0 0 0 3px #2563eb, 0 0 0 10px rgba(37, 99, 235, 0.15), 0 0 30px rgba(37, 99, 235, 0.55);
  transform: scale(1.3);
}

/* Pulse sur l'item actif (visible à l'écran) */
@keyframes tl-pulse {
  0%, 100% {
    box-shadow: 0 0 0 2px #2563eb, 0 0 0 5px rgba(37, 99, 235, 0.12), 0 0 18px rgba(37, 99, 235, 0.3);
  }
  50% {
    box-shadow: 0 0 0 3px #2563eb, 0 0 0 10px rgba(37, 99, 235, 0.08), 0 0 32px rgba(37, 99, 235, 0.5);
  }
}
.tl-item.tl-active::before {
  animation: tl-pulse 2.2s ease-in-out infinite;
}

/* Année */
.tl-year {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gray-4);
  padding-top: 4px;
  transition: color 0.3s ease;
}
.tl-item:hover .tl-year { color: #2563eb; }

.tl-body h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 8px;
  transition: color 0.3s ease;
}
.tl-item:hover .tl-body h3 { color: #2563eb; }
.tl-body p { font-size: 14px; color: var(--gray-4); line-height: 1.65; }

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.value-card {
  background: var(--white);
  padding: 52px 40px;
  transition: background var(--t);
}
.value-card:hover { background: var(--blue-light); }

.value-num { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; color: var(--ocean); text-transform: uppercase; margin-bottom: 20px; display: block; }
.value-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--navy); margin-bottom: 14px; }
.value-card p  { font-size: 14px; color: var(--gray-6); line-height: 1.6; }

/* ===== MÉTHODE SCIE ===== */

/* KPI bar */
.method-kpi {
  background: var(--navy);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.method-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.method-kpi-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.method-kpi-item:last-child { border-right: none; }
.method-kpi-item strong {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.method-kpi-item span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Sections */
.mth-section { padding: 120px 0; }

.section-intro {
  font-size: 17px;
  color: var(--gray-4);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.65;
}

/* Étapes process */
.mth-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 72px;
}
.mth-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.mth-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(59,130,246,0.14);
}
.mth-step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #3b82f6;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.mth-step-icon {
  width: 40px;
  height: 40px;
  color: var(--navy);
  margin-bottom: 20px;
}
.mth-step-icon svg { width: 100%; height: 100%; }
.mth-step h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.mth-step p {
  font-size: 14px;
  color: var(--gray-4);
  line-height: 1.65;
}
.mth-step-arrow {
  flex-shrink: 0;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  opacity: 0.5;
}
.mth-step-arrow svg { width: 24px; height: 24px; }

/* Deux colonnes */
.mth-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.mth-two-col--flip .mth-col-visual { order: -1; }
.mth-col-text p {
  font-size: 16px;
  color: var(--gray-4);
  line-height: 1.75;
  max-width: 460px;
  margin-top: 24px;
}
.mth-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mth-list li {
  font-size: 15px;
  color: var(--gray-4);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.mth-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
}

/* Badge grid */
.mth-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mth-badge {
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mth-badge strong {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
}
.mth-badge span {
  font-size: 13px;
  color: var(--gray-4);
}
.mth-badge--accent strong { color: #3b82f6; }

/* Certifications */
.mth-cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.mth-cert {
  background: var(--gray-1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.mth-cert:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(59,130,246,0.12);
  background: var(--white);
}
.mth-cert-icon {
  width: 36px;
  height: 36px;
  color: #3b82f6;
  margin-bottom: 20px;
}
.mth-cert-icon svg { width: 100%; height: 100%; }
.mth-cert h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mth-cert p {
  font-size: 13px;
  color: var(--gray-4);
  line-height: 1.6;
}

/* Disponibilité */
.mth-avail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.mth-avail {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 32px;
  transition: background 0.3s;
}
.mth-avail:hover { background: rgba(255,255,255,0.1); }
.mth-avail-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.mth-avail h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.mth-avail p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* Outils bureau d'études */
.mth-tools {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mth-tool {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.mth-tool:hover {
  background: var(--white);
  border-color: #3b82f6;
  transform: translateX(6px);
}

/* Lien nav actif */
.nav-active { color: #3b82f6 !important; font-weight: 600; }

/* Responsive méthode */
@media (max-width: 1024px) {
  .method-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .mth-steps { flex-direction: column; }
  .mth-step-arrow { transform: rotate(90deg); }
  .mth-two-col { grid-template-columns: 1fr; gap: 60px; }
  .mth-two-col--flip .mth-col-visual { order: 0; }
  .mth-cert-grid { grid-template-columns: repeat(2, 1fr); }
  .mth-avail-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .method-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .mth-cert-grid { grid-template-columns: 1fr; }
  .mth-avail-grid { grid-template-columns: 1fr; }
  .mth-badge-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE CTA ===== */
.page-cta {
  background: linear-gradient(160deg, #0f1f45 0%, #1e3a8a 100%);
  padding: 120px 0;
  text-align: center;
}
.page-cta h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}
.page-cta p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.page-cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .header-inner { padding: 0 28px; }
  .mobile-nav { padding: 20px 28px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(4, 1fr); }
  .real-grid { grid-template-columns: 1fr 1fr; }
  .real-card--lg { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 60px; }
  #devisForm { padding: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item { grid-template-columns: 60px 1fr; gap: 24px; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-proposal { display: none; }
  .burger { display: flex; }
  .hero { padding: 120px 28px 80px; }
  .hero--sm { min-height: 55vh; padding: 100px 28px 60px; }
  .hero-page-title { font-size: clamp(56px, 14vw, 96px); }
  .hero-headline { font-size: clamp(44px, 12vw, 72px); }
  h1 br, h2 br { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .real-item { grid-template-columns: 1fr; padding: 48px 0; }
  .real-item--flip { direction: ltr; }
  .real-item--flip .real-blob-col { order: -1; }
  .real-blob-col { justify-content: center !important; }
  .real-grid { grid-template-columns: 1fr; }
  .real-card--lg { grid-column: span 1; }
  .real-bg, .real-card--lg .real-bg { min-height: 280px; }
  .real-text { padding: 32px 28px !important; }
  .real-show-desc { max-width: 100%; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .checkboxes { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline::before, .timeline::after, .tl-item::before { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; padding-left: 0; }
  .process-item { grid-template-columns: 48px 1fr; gap: 20px; }
}
