/* ═══════════════════════════════════════════════════════════
   AUDIT & DIAGNOSTICS — style.css
   Charte : #E0BD2F (or) | #3C7C86 (bleu-vert) | blanc | gris
══════════════════════════════════════════════════════════════ */

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

:root {
  --gold:       #E0BD2F;
  --gold-dark:  #c9a91e;
  --teal:       #3C7C86;
  --teal-dark:  #2d5f68;
  --teal-light: #e8f4f6;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --cream:      #fdf9ee;
  --text-dark:  #1a2e32;
  --text-mid:   #2d4a50;
  --text-light: #5a7a82;
  --border:     rgba(60, 124, 134, 0.18);
  --shadow-sm:  0 2px 12px rgba(28, 60, 68, 0.08);
  --shadow-md:  0 6px 32px rgba(28, 60, 68, 0.13);
  --shadow-lg:  0 16px 64px rgba(28, 60, 68, 0.16);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.serif { font-family: 'Playfair Display', Georgia, serif; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(224, 189, 47, 0.35);
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--gold-dark);
  box-shadow: 0 6px 28px rgba(224, 189, 47, 0.5);
  transform: translateY(-2px);
  outline: none;
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

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

.btn--full { width: 100%; display: block; }

/* ─── SECTION HEADERS ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   PRELOADER
═════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  width: 320px;
}

.preloader__logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto 2.5rem;
}

.preloader__bar-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.preloader__bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.preloader__percent {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  min-width: 38px;
  text-align: right;
}

.preloader__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
═════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
  position: relative;
}

.site-header.scrolled .nav__link {
  color: var(--text-mid);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--gold); }
.site-header.scrolled .nav__link:hover { color: var(--teal); }

.nav__link--cta {
  background: var(--gold);
  color: var(--text-dark) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold-dark);
  color: var(--text-dark) !important;
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}

.site-header.scrolled .nav__burger span { background: var(--teal-dark); }

.nav__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
}

.nav__mobile.open { display: block; }

.nav__mobile ul { padding: 0 1.5rem; }
.nav__mobile li { border-bottom: 1px solid var(--border); }
.nav__mobile a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--teal); }

/* ════════════════════════════════════════════════════════════
   HERO SECTION
═════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Teal overlay #3C7C86 at 55% */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(60, 124, 134, 0.55);
  z-index: 1;
}

/* Two-column content area */
.hero__content {
  position: relative;
  z-index: 2;
  height: calc(100% - 56px); /* subtract bottom bar height */
  padding-top: 80px;         /* clear fixed nav */
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

/* ── Left column (60%) ── */
.hero__left {
  flex: 0 0 58%;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Location badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

/* H1 */
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* Services subtitle */
.hero__subtitle {
  color: #D4A843;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  text-align: right;
}

/* CTA buttons row */
.hero__cta-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-weight: 600;
}

.hero__btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero__btn--gold {
  background: #D4A843;
  color: #0d2630;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.hero__btn--gold:hover {
  background: #c49a30;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, 0.55);
}

.hero__cta-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 4px;
}

/* ── Right column (40%) ── */
.hero__right {
  flex: 1;
  min-width: 0;
}

/* Glassmorphic Typeform card */
.hero__tf-card {
  background: rgba(13, 38, 48, 0.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
}

.hero__tf-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 1rem;
}

.hero__tf-embed {
  min-height: 400px;
}

.hero__tf-embed > div {
  height: 100%;
  min-height: 400px;
}

/* ── Bottom info bar ── */
.hero__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 38, 48, 0.85);
  padding: 1rem 2rem;
  z-index: 3;
  text-align: center;
}

.hero__bar p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   TYPEFORM MODAL
═════════════════════════════════════════════════════════════ */
.tf-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tf-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.tf-modal__card {
  position: relative;
  background: #0d2630;
  width: min(700px, 95vw);
  height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.tf-modal.open .tf-modal__card {
  transform: scale(1);
}

.tf-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.tf-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.tf-modal__embed {
  flex: 1;
  overflow: hidden;
}

.tf-modal__embed > div {
  width: 100%;
  height: 100%;
}

/* ════════════════════════════════════════════════════════════
   SECTION WHY
═════════════════════════════════════════════════════════════ */
.section-why {
  padding: 7rem 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.why-card__title {
  font-size: 1.2rem;
  color: var(--teal-dark);
  margin-bottom: 0.75rem;
}

.why-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SECTION DIAGNOSTICS
═════════════════════════════════════════════════════════════ */
.section-diagnostics {
  padding: 7rem 0;
  background: var(--white);
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diag-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.diag-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.diag-card:hover::before { transform: scaleX(1); }

.diag-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(60, 124, 134, 0.3);
}

.diag-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}

.diag-card__badge--both {
  background: rgba(224, 189, 47, 0.18);
  color: #8a7010;
  border: 1px solid rgba(224, 189, 47, 0.4);
}

.diag-card__badge--vente {
  background: rgba(60, 124, 134, 0.12);
  color: var(--teal-dark);
  border: 1px solid var(--border);
}

.diag-card__badge--location {
  background: rgba(28, 60, 68, 0.08);
  color: var(--text-mid);
  border: 1px solid rgba(28, 60, 68, 0.15);
}

.diag-card__title {
  font-size: 1.15rem;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}

.diag-card__sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.9rem;
}

.diag-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.2rem;
}

.diag-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition);
  margin-top: auto;
}

.diag-card__link:hover { color: var(--gold-dark); }

/* ════════════════════════════════════════════════════════════
   SECTION PROCESS — Scroll Storytelling
═════════════════════════════════════════════════════════════ */
.section-process {
  /* anchor wrapper only — layout handled by .process-story */
}

.process-story {
  position: relative;
  height: 400vh;
  background: #0d2630;
}

.process-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  background: #0d2630;
}

/* ── Large decorative background number ── */
.process-story__bg-num {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(18rem, 40vw, 36rem);
  font-weight: 700;
  color: rgba(212, 168, 67, 0.042);
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
  transition: opacity 0.4s ease;
}

/* ── Vertical progress indicator ── */
.process-story__progress {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.process-story__progress-track {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.process-story__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #D4A843;
  border-radius: 2px;
  transition: height 0.35s ease;
}

.process-story__progress-labels {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}

.process-story__progress-labels span {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.process-story__progress-labels span.ps-label-active {
  color: #D4A843;
  transform: scale(1.2);
}

/* ── Section header ── */
.process-story__header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.process-story__header .section-eyebrow {
  background: rgba(212, 168, 67, 0.12);
  color: #D4A843;
  border: 1px solid rgba(212, 168, 67, 0.28);
}

.process-story__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  line-height: 1.2;
}

/* ── Steps wrapper ── */
.process-story__steps {
  position: relative;
  width: 100%;
  max-width: 860px;
  height: 240px;
  z-index: 2;
}

/* ── Individual step ── */
.process-story__step {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.ps--left  { transform: translateX(-50px); }
.ps--right { transform: translateX(50px); }

.ps--active {
  opacity: 1;
  transform: translateX(0) !important;
  pointer-events: auto;
}

/* ── Step inner layout ── */
.ps__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

/* ── Large step number ── */
.ps__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 700;
  color: #D4A843;
  line-height: 1;
  flex-shrink: 0;
  min-width: 130px;
  text-align: center;
  text-shadow: 0 0 40px rgba(212, 168, 67, 0.22);
}

/* ── Step content ── */
.ps__content {
  flex: 1;
}

.ps__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.ps__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.78;
  max-width: 460px;
}

.process-story__step.ps--right .ps__text {
  margin-left: auto;
}

/* ════════════════════════════════════════════════════════════
   SECTION TESTIMONIALS
═════════════════════════════════════════════════════════════ */
.section-testimonials {
  padding: 7rem 0;
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 600;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ════════════════════════════════════════════════════════════
   SECTION CONTACT
═════════════════════════════════════════════════════════════ */
.section-contact {
  padding: 7rem 0;
  background: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-eyebrow { margin-bottom: 1rem; }
.contact-info .section-title {
  text-align: left;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.contact-info__text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-info__list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-info__list a {
  color: var(--teal);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-info__list a:hover { color: var(--teal-dark); }

.contact-info__badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border: 1px solid var(--border);
}

.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-row--half > * { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-label span { color: var(--teal); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(60, 124, 134, 0.15);
}

.form-input::placeholder { color: #aab5b8; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233C7C86' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
  margin-top: 0.3rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.checkbox-label:hover { color: var(--teal); }

.checkbox-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label--consent {
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-light);
}

.checkbox-label--consent a {
  color: var(--teal);
  text-decoration: underline;
}

.form-group--check { margin-top: 0.3rem; }

.form-success {
  display: none;
  background: rgba(60, 124, 134, 0.1);
  border: 1px solid rgba(60, 124, 134, 0.3);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-weight: 500;
  text-align: center;
}

.form-success.visible { display: block; }

/* ════════════════════════════════════════════════════════════
   SECTION CTA FINAL
═════════════════════════════════════════════════════════════ */
.section-cta-final {
  position: relative;
  padding: 8rem 0;
  background: var(--teal);
  text-align: center;
  overflow: hidden;
}

.section-cta-final__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-final__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
}

.cta-final__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  position: relative;
}

.cta-final__tf-embed {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}

.cta-final__tf-embed > div {
  min-height: 420px;
}

/* ════════════════════════════════════════════════════════════
   REVIEWS — Avis Google
═════════════════════════════════════════════════════════════ */
.reviews {
  padding: 6rem 0;
  background: #f8f9fa;
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reviews__google-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reviews__google-text {
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.05em;
}

.reviews__global-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reviews__global-score {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.reviews__stars-global span {
  color: #FBBC05;
  font-size: 1rem;
  letter-spacing: 2px;
}

.reviews__count {
  font-size: 0.78rem;
  color: #888;
}

.reviews__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.reviews__subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.reviews__track-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 0 1rem;
}

.reviews__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 1rem 0.5rem 1.5rem;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.review-card__avatar--G { background: #4285F4; }
.review-card__avatar--L { background: #9E9E9E; }
.review-card__avatar--E { background: #34A853; }
.review-card__avatar--T { background: #3C7C86; }
.review-card__avatar--A { background: #E0BD2F; color: #1a1a1a; }

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.review-card__source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #888;
}

.review-card__stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444;
  flex: 1;
  font-style: italic;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}

.review-card__date {
  font-size: 0.75rem;
  color: #aaa;
}

.review-card__score {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3C7C86;
  background: rgba(60,124,134,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #3C7C86;
  background: #fff;
  color: #3C7C86;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.reviews__nav:hover {
  background: #3C7C86;
  color: #fff;
}

.reviews__nav--prev { left: 0; }
.reviews__nav--next { right: 0; }

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews__dot--active {
  background: #3C7C86;
  width: 24px;
  border-radius: 4px;
}

.reviews__cta {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  color: #444;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  background: #fff;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reviews__cta-btn:hover {
  border-color: #4285F4;
  color: #4285F4;
  box-shadow: 0 4px 16px rgba(66,133,244,0.15);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 580px) {
  .review-card { flex: 0 0 85vw; }
  .reviews__nav { display: none; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand__logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .diag-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

}

@media (max-width: 768px) {

  /* ── Navbar mobile ── */
  .nav {
    height: 58px;
  }

  .nav__logo-img {
    height: 38px;
  }

  .nav__burger {
    padding: 6px;
  }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__mobile ul {
    padding: 0 1.2rem;
  }

  .nav__mobile li:last-child {
    border-bottom: none;
    padding: 0.8rem 0;
  }

  .nav__mobile li:last-child a {
    display: inline-block;
    background: var(--gold);
    color: var(--text-dark) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    text-align: center;
  }

  /* ── Hero mobile — text at bottom, white, shadow ── */
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 72px;
    padding-bottom: 90px;
    gap: 0;
    height: 100%;
  }

  /* Hide Typeform card inside hero on mobile — accessible via buttons & contact section */
  .hero__right {
    display: none;
  }

  .hero__left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero__badge {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  .hero__title {
    color: #ffffff !important;
    font-size: clamp(1.35rem, 5.5vw, 1.9rem) !important;
    text-align: left !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 1px 6px rgba(0,0,0,0.55);
    margin-bottom: 0.8rem;
  }

  .hero__subtitle {
    color: #ffffff !important;
    font-size: 0.82rem !important;
    text-align: left !important;
    text-shadow: 0 1px 10px rgba(0,0,0,0.7);
    margin-bottom: 1.8rem;
  }

  .hero__cta-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__btn--outline,
  .hero__btn--gold {
    width: 100%;
    display: block;
    text-align: center;
  }

  .hero__cta-group {
    width: 100%;
  }

  .hero__tf-embed {
    min-height: 350px;
  }

  .hero__tf-embed > div {
    min-height: 350px;
  }

  /* Modal — mobile */
  .tf-modal__card {
    height: 90vh;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .form-row--half {
    flex-direction: column;
  }

  .section-cta-final {
    padding: 5rem 0;
  }

  .section-why,
  .section-diagnostics,
  .section-testimonials,
  .section-contact {
    padding: 5rem 0;
  }

  /* Process story — mobile: static vertical layout, no sticky */
  .process-story {
    height: auto;
  }

  .process-story__sticky {
    position: relative;
    height: auto;
    padding: 5rem 1.5rem;
    gap: 2.5rem;
    justify-content: flex-start;
  }

  .process-story__bg-num,
  .process-story__progress {
    display: none;
  }

  .process-story__header {
    margin-bottom: 0;
  }

  .process-story__steps {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
  }

  .process-story__step {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .ps__inner,
  .process-story__step.ps--right .ps__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    align-items: center;
  }

  .ps__num {
    min-width: auto;
    font-size: 4rem;
  }

  .ps__text,
  .process-story__step.ps--right .ps__text {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-info__badges {
    gap: 0.4rem;
  }
}
