/* ============================================================
   MAJOR COMPAGNIE — Design System & Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --c-navy:        #0D1B3E;
  --c-navy-light:  #1A2E5E;
  --c-gold:        #C9A84C;
  --c-gold-light:  #DEC478;
  --c-gold-dark:   #A8852D;
  --c-white:       #F2F4F8;
  --c-off-white:   #E4E7EC;
  --c-light:       #D5D8E1;
  --c-silver:      #E4E7EC;
  --c-gray:        #6B7280;
  --c-dark:        #374151;
  --c-anthracite:  #1F2937;
  --c-black:       #0A0F1E;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 4rem;
  --sp-3xl: 6rem;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-full: 9999px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.16);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.35);

  --ease: .3s ease;
  --ease-fast: .18s ease;

  --max-w: 1200px;
  --px: 1.5rem;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-anthracite);
  background: var(--c-silver);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section      { padding: var(--sp-3xl) 0; }
.section--sm  { padding: var(--sp-xl) 0; }

.section--dark {
  background: var(--c-navy);
  color: var(--c-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--c-white); }

.section--light { background: var(--c-off-white); }
.section--gold  { background: var(--c-gold); color: var(--c-navy); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-2xl);
}
.section-header__tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,168,76,.12);
  color: var(--c-gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  padding: .3rem 1rem;
  border-radius: var(--r-full);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--sp-sm);
}
.section--dark .section-header__tag {
  background: rgba(201,168,76,.18);
  color: var(--c-gold);
  border-color: rgba(201,168,76,.4);
}
.section-header__sub {
  color: var(--c-gray);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.section--dark .section-header__sub { color: rgba(255,255,255,.65); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn--outline-white:hover {
  background: var(--c-white);
  color: var(--c-navy);
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn--outline-navy:hover {
  background: var(--c-navy);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
}
.btn--navy:hover {
  background: var(--c-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: .95rem; }
.btn--full { width: 100%; }
.btn--whatsapp {
  background: #25D366;
  color: var(--c-white);
  border-color: #25D366;
}
.btn--whatsapp:hover { background: #1EB35A; border-color: #1EB35A; transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--c-navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: var(--r-sm);
  mix-blend-mode: lighten;
}
.logo__text { font-family: var(--font-heading); line-height: 1.1; }
.logo__name {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
}
.logo__tagline {
  display: block;
  font-size: .56rem;
  font-weight: 600;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: var(--sp-sm); }
.main-nav__list { display: flex; align-items: center; gap: 1rem; }
.main-nav__link {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 0;
  padding: .4rem 0;
  white-space: nowrap;
  position: relative;
  transition: color var(--ease-fast);
}
.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--c-gold);
  transition: width var(--ease);
}
.main-nav__link:hover,
.main-nav__link.active { color: var(--c-gold); }
.main-nav__link:hover::after,
.main-nav__link.active::after { width: 100%; }

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--ease-fast);
}
.header-phone i { color: var(--c-gold); }
.header-phone:hover { color: var(--c-gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--c-navy-light);
  z-index: 999;
  padding: var(--sp-sm) var(--px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  flex-direction: column;
  gap: .3rem;
  border-top: 1px solid rgba(201,168,76,.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  display: block;
  padding: .75rem var(--sp-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  border-radius: var(--r-md);
  transition: background var(--ease-fast), color var(--ease-fast);
}
.mobile-nav__link:hover { background: rgba(201,168,76,.12); color: var(--c-gold); }
.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem;
  margin-top: .5rem;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.mobile-nav__cta i { color: var(--c-gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: linear-gradient(140deg, var(--c-navy) 0%, #122244 55%, #0D1B3E 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__decor {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 52%;
  height: 85%;
  background: rgba(201,168,76,.05);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  pointer-events: none;
}
.hero__dots {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(201,168,76,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-3xl) var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.hero__text { color: var(--c-white); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--c-gold);
  padding: .35rem 1rem;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--sp-md);
}
.hero__title {
  color: var(--c-white);
  margin-bottom: var(--sp-md);
}
.hero__title em {
  font-style: normal;
  color: var(--c-gold);
}
.hero__subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: var(--sp-xl);
  max-width: 480px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
}
.hero__trust-item i { color: var(--c-gold); }

/* Hero visual — logo + badge */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual__img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--r-xl);
  display: block;
  margin: 0 auto;
  mix-blend-mode: lighten;
}
.hero-visual__card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--c-gold);
  border-radius: var(--r-lg);
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-gold);
}
.hero-visual__card-icon {
  width: 36px; height: 36px;
  background: rgba(0,0,0,.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
  font-size: 1rem;
}
.hero-visual__card-title {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.1;
}
.hero-visual__card-sub {
  font-size: .7rem;
  color: rgba(13,27,62,.65);
  font-weight: 600;
}

/* Hero form card — kept for contact page usage */
.hero-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-lg);
}
.hero-card__header { margin-bottom: var(--sp-md); }
.hero-card__title {
  font-size: 1.3rem;
  color: var(--c-navy);
  margin-bottom: .3rem;
}
.hero-card__sub {
  font-size: .88rem;
  color: var(--c-gray);
  margin-bottom: 0;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: var(--sp-sm); }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-anthracite);
  margin-bottom: .35rem;
}
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--c-light);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-anthracite);
  background: #fff;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: #fff;
}
.form-control::placeholder { color: #aaa; }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); }
.form-note { font-size: .78rem; color: var(--c-gray); text-align: center; margin-top: .5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-xl);
}
.form-success__icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,.12);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
  font-size: 1.75rem;
  color: var(--c-gold);
}
.form-success h3 { margin-bottom: .5rem; }
.form-success p   { color: var(--c-gray); font-size: .9rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}
.service-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-md);
}
.service-card__icon i { font-size: 1.6rem; color: var(--c-gold); }
.service-card__title { margin-bottom: .5rem; }
.service-card__desc  { color: var(--c-gray); font-size: .9rem; margin-bottom: var(--sp-md); }
.service-card__list  { margin-bottom: var(--sp-md); }
.service-card__list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .85rem; color: var(--c-dark); margin-bottom: .4rem;
}
.service-card__list li::before {
  content: '✓';
  color: var(--c-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-gold);
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: gap var(--ease-fast);
}
.service-card__link:hover { gap: .7rem; }

/* ============================================================
   FEATURES / AVANTAGES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-lg);
}
.feature-item { text-align: center; padding: var(--sp-lg); }
.feature-item__icon {
  width: 70px; height: 70px;
  background: rgba(201,168,76,.14);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
}
.feature-item__icon i { font-size: 1.7rem; color: var(--c-gold); }
.feature-item h4 { color: var(--c-white); margin-bottom: .5rem; }
.feature-item p  { color: rgba(255,255,255,.6); font-size: .88rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.stat {
  text-align: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 18px;
  padding: var(--sp-lg) var(--sp-md);
  box-shadow:
    0 4px 0 rgba(0,0,0,.45),
    0 10px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform: perspective(700px) rotateX(5deg);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover {
  transform: perspective(700px) rotateX(0deg) translateY(-6px);
  box-shadow:
    0 10px 0 rgba(0,0,0,.35),
    0 22px 44px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat__label { font-size: .82rem; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-lg);
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 34px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, rgba(201,168,76,.15) 100%);
  pointer-events: none;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num {
  width: 68px; height: 68px;
  border: 3px solid var(--c-gold);
  background: var(--c-navy);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-md);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-gold);
}
.process-step h4 { margin-bottom: .4rem; }
.process-step p  { color: var(--c-gray); font-size: .88rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--sp-lg);
}
.testimonial {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: .8rem; right: 1.5rem;
  font-size: 5rem;
  color: var(--c-gold);
  opacity: .15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial__stars { display: flex; gap: 2px; color: var(--c-gold); margin-bottom: var(--sp-sm); }
.testimonial__text  { color: var(--c-dark); font-style: italic; margin-bottom: var(--sp-md); }
.testimonial__author { display: flex; align-items: center; gap: var(--sp-sm); }
.testimonial__avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; color: var(--c-navy); font-size: .95rem; }
.testimonial__role { font-size: .78rem; color: var(--c-gray); }

/* ============================================================
   GALLERY / AVANT-APRÈS
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: var(--sp-md);
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
}
.gallery-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.gallery-item__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.gallery-img {
  aspect-ratio: 1;
  background: var(--c-light);
  position: relative;
  overflow: hidden;
}
.gallery-img__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-img__placeholder i { font-size: 2rem; opacity: .4; }
.gallery-img--before .gallery-img__placeholder { background: #e8e8e8; color: #999; }
.gallery-img--after  .gallery-img__placeholder { background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light)); color: rgba(255,255,255,.6); }
.gallery-img img    { width: 100%; height: 100%; object-fit: cover; }
.gallery-badge {
  position: absolute;
  top: .5rem;
  font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: .2rem .5rem;
  border-radius: var(--r-sm);
}
.gallery-badge--before { left: .5rem; background: rgba(0,0,0,.55); color: var(--c-white); }
.gallery-badge--after  { right: .5rem; background: var(--c-gold); color: var(--c-navy); }
.gallery-separator {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--c-white);
  z-index: 2;
}
.gallery-item__info { background: var(--c-white); padding: .9rem var(--sp-md); }
.gallery-item__info h4  { font-size: .95rem; margin-bottom: .2rem; }
.gallery-item__info span { font-size: .78rem; color: var(--c-gray); }

/* ============================================================
   ZONES D'INTERVENTION
   ============================================================ */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--sp-md); }
.area-tag {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  background: var(--c-off-white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-full);
  font-size: .82rem;
  color: var(--c-dark);
  transition: background var(--ease-fast), border-color var(--ease-fast);
}
.area-tag i { color: var(--c-gold); font-size: .65rem; }
.area-tag--main {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
  font-weight: 600;
}
.area-tag--main i { color: var(--c-gold); }
.area-tag:hover:not(.area-tag--main) { background: rgba(201,168,76,.1); border-color: var(--c-gold); }
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-md);
  margin-bottom: .5rem;
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-sm);
  width: 100%;
  padding: var(--sp-md) var(--sp-lg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .97rem;
  font-weight: 600;
  color: var(--c-navy);
  transition: background var(--ease-fast);
}
.faq-q:hover { background: var(--c-off-white); }
.faq-q i { color: var(--c-gold); transition: transform var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 var(--sp-lg) var(--sp-md);
  color: var(--c-gray);
  font-size: .93rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   SLOGAN VISUAL BREAK
   ============================================================ */
.slogan-visual {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.slogan-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  padding: var(--sp-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.07) 0%, transparent 65%);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--c-white); margin-bottom: var(--sp-sm); }
.cta-banner p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 580px; margin: 0 auto var(--sp-xl); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-sm); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-black);
  color: var(--c-white);
  padding: var(--sp-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin-bottom: var(--sp-md);
  max-width: 250px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  margin-bottom: .6rem;
  font-size: .88rem; color: rgba(255,255,255,.65);
}
.footer-contact-item i { color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--ease-fast); }
.footer-contact-item a:hover { color: var(--c-gold); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--c-gold);
  margin-bottom: var(--sp-md);
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-link {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--ease-fast), padding-left var(--ease-fast);
}
.footer-link:hover { color: var(--c-gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: var(--sp-md) 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-sm);
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: var(--sp-md); }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color var(--ease-fast); }
.footer-legal a:hover { color: var(--c-gold); }
.social-links { display: flex; gap: .5rem; margin-top: var(--sp-md); }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.social-link:hover { background: var(--c-gold); color: var(--c-navy); transform: translateY(-2px); }

/* ============================================================
   FLOATING WIDGETS
   ============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
}
.float-whatsapp a {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  color: var(--c-white);
  font-size: 1.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
  animation: float-pulse 2.5s infinite;
}
.float-whatsapp a:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

@keyframes float-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* Mobile sticky bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--c-navy);
  padding: .7rem var(--px);
  gap: .5rem;
}
.mobile-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .75rem;
  border-radius: var(--r-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  transition: opacity var(--ease-fast);
}
.mobile-bar a:hover { opacity: .88; }
.mobile-bar .bar-call { background: var(--c-gold); color: var(--c-navy); }
.mobile-bar .bar-quote { background: rgba(255,255,255,.1); color: var(--c-white); border: 1px solid rgba(255,255,255,.2); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, var(--c-navy) 0%, #122244 100%);
  padding: calc(72px + var(--sp-xl)) 0 var(--sp-xl);
  text-align: center;
  color: var(--c-white);
}
.page-hero h1   { color: var(--c-white); margin-bottom: .5rem; }
.page-hero__sub { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: var(--sp-md);
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.breadcrumb a { color: var(--c-gold); }
.breadcrumb i { font-size: .65rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-lg);
}
.pricing-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border-color: var(--c-gold); box-shadow: var(--shadow-gold); }
.pricing-featured-badge {
  position: absolute; top: -13px; right: var(--sp-md);
  background: var(--c-gold); color: var(--c-navy);
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: .28rem .75rem; border-radius: var(--r-full);
}
.pricing-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-md);
}
.pricing-icon i { font-size: 1.5rem; color: var(--c-gold); }
.pricing-price { margin: var(--sp-md) 0; }
.pricing-price .from { font-size: .8rem; color: var(--c-gray); display: block; margin-bottom: .1rem; }
.pricing-price .amount { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; color: var(--c-gold); line-height: 1; }
.pricing-price .unit   { font-size: .85rem; color: var(--c-gray); }
.pricing-desc { color: var(--c-gray); font-size: .88rem; margin-bottom: var(--sp-md); }
.pricing-list { margin-bottom: var(--sp-lg); }
.pricing-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .88rem; color: var(--c-dark); margin-bottom: .5rem; }
.pricing-list li::before { content: '✓'; color: var(--c-gold); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--sp-3xl); align-items: start; }
.contact-info-item { display: flex; gap: var(--sp-md); margin-bottom: var(--sp-lg); }
.contact-info-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon i { font-size: 1.3rem; color: var(--c-gold); }
.contact-info-body h4  { margin-bottom: .2rem; font-size: .95rem; }
.contact-info-body p   { color: var(--c-gray); font-size: .88rem; }
.contact-info-body a   { color: var(--c-gray); transition: color var(--ease-fast); }
.contact-info-body a:hover { color: var(--c-gold); }
.contact-form-card { background: var(--c-white); border-radius: var(--r-xl); padding: var(--sp-xl); box-shadow: var(--shadow-md); }

/* ============================================================
   À PROPOS
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3xl); align-items: center; }
.about-img {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-img__placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--sp-md);
  color: rgba(255,255,255,.4);
}
.about-img__placeholder i { font-size: 4rem; }
.about-img__placeholder p { font-size: .8rem; text-align: center; }
.about-img__badge {
  position: absolute; bottom: var(--sp-md); left: var(--sp-md);
  background: var(--c-gold); color: var(--c-navy);
  padding: .6rem 1rem; border-radius: var(--r-md);
  font-family: var(--font-heading); font-weight: 700; font-size: .9rem;
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-sm); margin-top: var(--sp-xl); }
.value-card {
  padding: var(--sp-md); background: var(--c-off-white);
  border-radius: var(--r-md); border-left: 3px solid var(--c-gold);
}
.value-card h5 { font-size: .9rem; margin-bottom: .3rem; }
.value-card p  { font-size: .82rem; color: var(--c-gray); }

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: var(--sp-xl) 0 var(--sp-sm); padding-bottom: .5rem; border-bottom: 2px solid var(--c-light); }
.legal-content h3 { font-size: 1rem; margin: var(--sp-md) 0 .5rem; color: var(--c-navy); }
.legal-content p,
.legal-content li { font-size: .92rem; color: var(--c-gray); line-height: 1.75; }
.legal-content ul  { margin: .5rem 0 var(--sp-sm) var(--sp-md); }
.legal-content ul li { list-style: disc; margin-bottom: .3rem; }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: linear-gradient(135deg, rgba(201,168,76,.07), rgba(201,168,76,.03));
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.info-box {
  background: var(--c-off-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid rgba(0,0,0,.06);
}

/* ============================================================
   UTILS
   ============================================================ */
.text-center { text-align: center; }
.text-gold    { color: var(--c-gold); }
.text-navy    { color: var(--c-navy); }
.text-white   { color: var(--c-white); }
.text-gray    { color: var(--c-gray); }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }
.mt-xl  { margin-top: var(--sp-xl); }
.mb-0   { margin-bottom: 0; }
.mb-sm  { margin-bottom: var(--sp-sm); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.gold-line {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  border-radius: var(--r-full);
  margin: var(--sp-sm) 0;
}
.gold-line--center { margin: var(--sp-sm) auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; padding: var(--sp-xl) var(--px); }
  .hero__decor { display: none; }
  .hero-card  { max-width: 580px; margin: 0 auto; }

  .stats-row  { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .areas-wrap { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --px: 1rem; --sp-3xl: 4rem; }

  .section { padding: 3rem 0; }
  .hero { padding-bottom: 5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat__number { font-size: 2rem; }
  .stat { padding: var(--sp-md) var(--sp-sm); border-radius: 12px; }

  .mobile-bar { display: flex; }
  .float-whatsapp { bottom: 5.5rem; }
  body { padding-bottom: 4rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .services-grid, .testimonials-grid, .pricing-grid, .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.55rem; }
  .process-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — CORRECTIONS MOBILES
   ============================================================ */

/* Bloquer tout scroll horizontal au niveau racine */
html { overflow-x: hidden; }

/* Header : masquer le bouton CTA "Demander un devis" sur mobile
   (uniquement sur index.html, ne casse pas les autres pages) */
@media (max-width: 1024px) {
  #headerCta { display: none; }
}

/* Logo tagline : réduire le letter-spacing sur mobile
   pour éviter que le logo dépasse la largeur de l'écran */
@media (max-width: 768px) {
  .logo__tagline { letter-spacing: .3px; }
}

/* Stats : passer en colonne unique sur très petits écrans (360–430px)
   pour éviter que les chiffres et textes débordent des cellules */
@media (max-width: 460px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
  }
}

/* Utilitaire : grille 2 colonnes → 1 colonne sur mobile
   Utilisé pour les grilles avec style inline sans classe responsive */
.double-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .double-col-grid { grid-template-columns: 1fr; }
}
