/* ============================================================
   INNOVA THERMIC — Site Enseigne
   Palette inspirée du logo :
   · Vert lime → Cyan turquoise (INNOVA / thermic)
   · Rouge → Orange → Jaune (couronne solaire)
   · Bleu nuit (texte / contraste)
   ============================================================ */

:root {
  /* Identité — issue du logo */
  --vert: #2BE0A0;          /* vert lime "INNOVA" */
  --cyan: #1AC8DD;          /* cyan turquoise "thermic" */
  --cyan-dark: #0FA8BD;     /* hover */
  --vert-cyan: linear-gradient(90deg, #2BE0A0 0%, #1AC8DD 100%); /* dégradé titre logo */

  /* Couronne solaire — accents */
  --rouge: #E94A2F;
  --orange: #FF7A2D;
  --orange-dark: #E26010;
  --jaune: #FFC845;
  --soleil: linear-gradient(135deg, #FFC845 0%, #FF7A2D 50%, #E94A2F 100%);

  /* Textes & neutres */
  --bleu-nuit: #0A1628;
  --bleu-nuit-soft: #14233d;
  --gris-clair: #F4F7FB;
  --gris: #E2E7EF;
  --gris-texte: #5A6478;
  --blanc: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.14);
  --radius: 10px;
  --radius-lg: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--bleu-nuit);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--cyan-dark); text-decoration: none; }
a:hover { color: var(--cyan); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bleu-nuit);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--bleu-nuit); }
.lead { font-size: 1.2rem; color: var(--gris-texte); }

/* Texte en dégradé logo */
.gradient-text {
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(26, 200, 221, 0.35);
}
.btn-primary:hover { color: white; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(26, 200, 221, 0.45);}
.btn-secondary {
  background: transparent;
  color: var(--bleu-nuit);
  border-color: var(--bleu-nuit);
}
.btn-secondary:hover { background: var(--bleu-nuit); color: white; }
.btn-orange {
  background: var(--soleil);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 122, 45, 0.35);
}
.btn-orange:hover { color: white; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(233, 74, 47, 0.45);}
.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover { background: white; color: var(--bleu-nuit); border-color: white; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  background: white;
  border-bottom: 1px solid var(--gris);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img { height: 72px; width: auto; display: block; }
.logo-footer img { height: 80px; filter: none; }

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-main a {
  color: var(--bleu-nuit);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-main a:hover { background: var(--gris-clair); color: var(--cyan-dark); }
.nav-main a.active { color: var(--cyan-dark); background: var(--gris-clair); }
.nav-main .btn { margin-left: 8px; padding: 10px 20px; }
.dropdown-toggle {
  cursor: pointer;
  padding: 8px 0;
  position: absolute;
  top: -6px;
  right: -6px;
}
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; font-size: 0.92rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--bleu-nuit);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-soft) 100%);
  color: white;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(43,224,160,0.20) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -50%; left: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(circle, rgba(255,122,45,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: white; max-width: 900px; }
.hero h1 span.accent {
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { color: rgba(255,255,255,0.88); max-width: 720px; font-size: 1.25rem; margin: 1.2rem 0 2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero avec photo */
.hero-with-image {
  position: relative;
}
.hero-with-image .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-with-image .hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  /*aspect-ratio: 4/5;*/
}
.hero-with-image .hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-with-image .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(10,22,40,0.4) 100%);
}
.hero-badge {
  position: absolute;
  bottom: 0px; left: 0px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: var(--radius);
  color: var(--bleu-nuit);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.hero-badge::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--vert);
  box-shadow: 0 0 12px var(--vert);
}

.hero-sub {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--bleu-nuit-soft) 100%);
  color: white;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-sub::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(43,224,160,0.13) 0%, transparent 55%);
  pointer-events: none;
}
.hero-sub .container { position: relative; z-index: 2; }
.hero-sub h1 { color: white; }
.hero-sub .lead { color: rgba(255,255,255,0.85); }
.breadcrumb { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--vert); }

/* ---------- Bandeau confiance ---------- */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--gris);
  padding: 24px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--bleu-nuit);
  font-size: 0.95rem;
}
.trust-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-light { background: var(--gris-clair); }
.section-dark { background: var(--bleu-nuit); color: white; position: relative; overflow: hidden; }
.section-dark::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(255,122,45,0.10) 0%, transparent 55%);
}
.section-dark .container { position: relative; z-index: 2; }
.section-dark h2, .section-dark h3, .section-dark p { color: white; }

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-header .eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.section-header p { color: var(--gris-texte); font-size: 1.1rem; }

/* ---------- Grilles services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--gris);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card.orange .service-icon {
  background: var(--soleil);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gris-texte); margin-bottom: 20px; flex-grow: 1; }
.service-card .link {
  font-weight: 600;
  color: var(--cyan-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .link::after { content: "→"; transition: transform 0.2s; }
.service-card:hover .link::after { transform: translateX(4px); }
.service-card.orange .link { color: var(--orange-dark); }

/* ---------- Pourquoi nous ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.why-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.why-item h3 { margin-bottom: 10px; }
.why-item p { color: var(--gris-texte); }

/* ---------- Chiffres clés ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat { padding: 24px; }
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  color: var(--gris-texte);
  font-size: 0.95rem;
}
.section-dark .stat-label { color: rgba(255,255,255,0.75); }

/* ---------- Témoignages ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gris);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 8px; left: 22px;
  font-size: 5rem;
  color: var(--vert);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial p { font-style: italic; color: var(--bleu-nuit); position: relative; }
.testimonial-author { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
}
.testimonial-author strong { display: block; color: var(--bleu-nuit); font-size: 0.95rem; }
.testimonial-author span { color: var(--gris-texte); font-size: 0.85rem; }

/* ---------- Processus ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gris);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px; left: 24px;
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 100%);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.step h3 { margin-top: 8px; margin-bottom: 8px; }
.step p { color: var(--gris-texte); font-size: 0.95rem; margin: 0; }

/* ---------- Bloc audit particuliers (passerelle) ---------- */
.audit-cta {
  background: linear-gradient(135deg, #FFF1DC 0%, #FFE0C2 60%, #FFD0B5 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid #F5D2B0;
  position: relative;
  overflow: hidden;
}
.audit-cta::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(255,200,69,0.3) 0%, transparent 55%);
}
.audit-cta > * { position: relative; z-index: 2; }
.audit-cta h2 { margin-bottom: 14px; }
.audit-cta p { color: var(--gris-texte); margin-bottom: 22px; }
.audit-cta-side {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid #f4d2b3;
}
.audit-cta-side strong { display: block; font-size: 1.1rem; margin-bottom: 18px; color: var(--bleu-nuit); }

/* ---------- CTA final ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, #1a2c4d 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(43,224,160,0.22) 0%, transparent 60%);
}
.cta-block::after {
  content: "";
  position: absolute;
  bottom: -50%; left: -10%;
  width: 50%; height: 180%;
  background: radial-gradient(circle, rgba(255,122,45,0.15) 0%, transparent 60%);
}
.cta-block h2 { color: white; position: relative; }
.cta-block p { color: rgba(255,255,255,0.88); max-width: 600px; margin: 1rem auto 2rem; position: relative; }
.cta-block .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bleu-nuit);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 50%, var(--orange) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: white; font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-grid a { color: rgba(255,255,255,0.7); display: block; padding: 5px 0; }
.footer-grid a:hover { color: var(--vert); }
.footer-grid p { color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.footer-grid .logo { margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Listes & contenus ---------- */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}
.feature-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  border-bottom: 1px dashed var(--gris);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 10px;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%);
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.feature-list li:last-child { border-bottom: none; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-img.placeholder {
  background: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 4rem;
}

/* ---------- FAQ ---------- */
.faq details {
  background: white;
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.faq details[open] { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: -2px;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cyan);
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p, .faq details > ul {
  margin-top: 14px;
  color: var(--gris-texte);
}

/* ---------- Tableau "pour qui" ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 1.5rem;
}
.audience-card {
  background: var(--gris-clair);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--cyan);
}
.audience-card strong { color: var(--bleu-nuit); display: block; margin-bottom: 6px; }
.audience-card p { color: var(--gris-texte); margin: 0; font-size: 0.95rem; }

/* ---------- Benefits 3 colonnes (audit) ---------- */
.benefits-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}
.benefit {
  padding: 28px 22px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--soleil);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.benefit h3 { margin-bottom: 8px; }
.benefit p { color: var(--gris-texte); font-size: 0.95rem; }

/* ---------- Big audit CTA (page passerelle) ---------- */
.big-cta {
  background: var(--soleil);
  color: white;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 24px 48px rgba(233, 74, 47, 0.3);
  margin: 30px 0;
}
.big-cta h2 { color: white; }
.big-cta p { color: rgba(255,255,255,0.95); max-width: 540px; margin: 1rem auto 2rem; }
.big-cta .btn {
  background: white;
  color: var(--rouge);
  font-size: 1.15rem;
  padding: 20px 44px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.big-cta .btn:hover { transform: translateY(-3px); color: var(--bleu-nuit); }

/* ---------- Formulaire contact ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
.form-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gris);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--bleu-nuit);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gris);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.98rem;
  transition: border 0.2s;
  background: var(--gris-clair);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: white;
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* Upload de fichiers */
.file-upload { position: relative; }
.file-upload input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.file-upload-label {
  display: flex !important;
  align-items: center;
  gap: 16px;
  padding: 18px 22px !important;
  border: 2px dashed var(--gris) !important;
  border-radius: 10px;
  background: var(--gris-clair) !important;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
}
.file-upload-label:hover {
  border-color: var(--cyan) !important;
  background: rgba(26,200,221,0.05) !important;
}
.file-upload-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%);
  color: white;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.file-upload-text { color: var(--bleu-nuit); }
.file-upload input[type="file"]:focus + .file-upload-label {
  border-color: var(--cyan) !important;
  background: white !important;
}

/* Captcha */
.captcha-group {
  background: var(--gris-clair);
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--gris);
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.captcha-question {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: var(--bleu-nuit);
  border: 1px solid var(--gris);
  flex: 1;
  min-width: 220px;
}
.captcha-question strong {
  font-size: 1.3rem;
  color: var(--cyan-dark);
  font-weight: 800;
}

.contact-info {
  background: var(--bleu-nuit);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vert) 0%, var(--cyan) 50%, var(--orange) 100%);
}
.contact-info h3 { color: white; }
.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border: none; }
.contact-info-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(43,224,160,0.18);
  color: var(--vert);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item strong { display: block; color: white; margin-bottom: 4px; }
.contact-info-item span { color: rgba(255,255,255,0.7); font-size: 0.94rem; }

/* ---------- Tarifs / forfaits ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gris);
}
.pricing-table th {
  background: var(--bleu-nuit);
  color: white;
  font-weight: 600;
}
.pricing-table tr:hover { background: var(--gris-clair); }
.pricing-table strong { color: var(--cyan-dark); }

/* ---------- Qualifications cards ---------- */
.quali-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.quali-card {
  background: white;
  border: 1px solid var(--gris);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.quali-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quali-logo {
  width: 90px; height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gris-clair);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--bleu-nuit);
  border: 3px solid;
  border-image: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%) 1;
}
.quali-badge {
  width: 180px;
  height: 120px;
  margin: 0 auto 20px;
  padding: 16px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gris);
}
.quali-badge svg { width: 100%; height: 100%; display: block; }
.quali-card h3 { margin-bottom: 8px; }
.quali-card .tag {
  display: inline-block;
  background: rgba(26,200,221,0.12);
  color: var(--cyan-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gris);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--vert) 0%, var(--cyan) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 2.5rem;
  overflow: hidden;
}
.blog-cover img { position: absolute; inset: 0; width:100%; height:100%; object-fit: cover; }
.blog-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.35) 100%);
}
.blog-card-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.85rem; color: var(--gris-texte); margin-bottom: 8px; }
.blog-meta .cat {
  background: var(--gris-clair);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--cyan-dark);
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; flex-grow: 1; }
.blog-card .link { margin-top: 12px; font-weight: 600; color: var(--cyan-dark); }

/* ---------- Espace pro ---------- */
.pro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pro-feature {
  padding: 28px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gris);
  border-top: 4px solid var(--cyan);
}
.pro-feature .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(43,224,160,0.15) 0%, rgba(26,200,221,0.15) 100%);
  color: var(--cyan-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---------- Réalisations ---------- */
.real-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.real-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gris);
  transition: all 0.3s;
}
.real-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.real-cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bleu-nuit) 0%, var(--cyan) 100%);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 24px;
  color: white;
  overflow: hidden;
}
.real-cover img { position: absolute; inset: 0; width:100%; height:100%; object-fit: cover; }
.real-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.85) 100%);
}
.real-cover > * { position: relative; z-index: 2; }
.real-cover .tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 3;
}
.real-cover h3 { color: white; font-size: 1.3rem; }
.real-body { padding: 24px; }
.real-stats {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gris);
}
.real-stats div { font-size: 0.85rem; color: var(--gris-texte); }
.real-stats strong { display: block; color: var(--cyan-dark); font-size: 1.1rem; }

/* ---------- Photo media decorative ---------- */
.photo-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  position: relative;
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; display:block; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
.nav-main { display: none; position: fixed; top: 80px; left: 0; right: 0; z-index: 101; flex-direction: column; background: white; padding: 20px; border-bottom: 1px solid var(--gris); align-items: stretch; box-shadow: var(--shadow-md); }
  .nav-main.open { display: flex; }
  .nav-main a { padding: 14px 16px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; opacity: 1; visibility: visible; transform: none; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .mobile-toggle { display: block; }
  .hero { padding: 60px 0 70px; }
  .hero-with-image .hero-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .audit-cta { grid-template-columns: 1fr; padding: 20px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-block { padding: 40px 24px; }
  .logo img { height: 56px; }
  .logo-footer img { height: 64px; }
.section-header,
  .hero h1,
  .hero .lead,
  .hero-actions,
  .why-item,
  .step,
  .service-card,
  .stat,
  .cta-block,
  .audit-cta,
  .trust-bar-inner {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-bar-inner {
    justify-content: center;
  }

  .feature-list li {
    text-align: left;
  }
.service-icon {
  margin: 0 auto 20px;
}
.service-card .link {
  margin: 0 auto;
}
.site-footer {
  text-align: center;
}
.footer-grid .logo {
  display: inline-block;
}
.form-card {
  padding: 0;
  box-shadow: none;
  border: none;
}
.btn {
    white-space: normal;
}
.dropdown-toggle {
    position: relative;
    top: 0;
    right: 0;
  }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .big-cta { padding: 40px 20px; }
}
.re2020-section {
  padding: 60px 20px 70px;
  background: #f0f7ef;
}
.re2020-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.re2020-wrap .form-header {
  text-align: center;
  margin-bottom: 40px;
}
.re2020-wrap .badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #edf7ec; border: 1px solid #d1e8cf;
  color: #2d8828;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.re2020-wrap .badge::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: #3baa34; display: inline-block;
}
.re2020-wrap .form-header h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 4vw, 40px); font-weight: 700;
  color: #1a1f1a; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 12px;
}
.re2020-wrap .form-header h1 span { color: #3baa34; }
.re2020-wrap .form-header p {
  font-family: 'Inter', sans-serif;
  color: #6b7280; font-size: 15px;
  line-height: 1.65; max-width: 520px; margin: 0 auto;
}
.re2020-wrap .form-card {
  background: #fff; border-radius: 22px;
  border: 1px solid #d1e8cf;
  box-shadow: 0 4px 24px rgba(59,170,52,.09);
  padding: 38px 34px 30px;
}
.re2020-wrap .step { display: none; }
.re2020-wrap .step.active { display: block; }
.re2020-wrap .step-indicator { display: flex; align-items: center; margin-bottom: 34px; }
.re2020-wrap .step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: #e5e7eb; color: #9ca3af;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: .25s; flex-shrink: 0;
}
.re2020-wrap .step-dot.done   { background: #3baa34; color: #fff; }
.re2020-wrap .step-dot.active { background: #1a1f1a; color: #fff; box-shadow: 0 0 0 4px rgba(59,170,52,.15); }
.re2020-wrap .step-line { flex: 1; height: 2px; background: #e5e7eb; transition: background .25s; }
.re2020-wrap .step-line.done { background: #3baa34; }
.re2020-wrap .section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; font-weight: 700; color: #1a1f1a; margin-bottom: 4px;
}
.re2020-wrap .section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #6b7280; margin-bottom: 22px;
}
.re2020-wrap .radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 12px; margin-bottom: 28px;
}
.re2020-wrap .surface-grid { grid-template-columns: repeat(3,1fr); }
.re2020-wrap .radio-card input[type="radio"] { display: none; }
.re2020-wrap .radio-card label {
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  padding: 20px 14px 16px; border-radius: 14px;
  border: 2px solid #e5e7eb; background: #fafafa;
  cursor: pointer; transition: .25s;
  text-align: center; position: relative; overflow: hidden;
}
.re2020-wrap .radio-card label::before {
  content: ''; position: absolute; inset: 0;
  background: #edf7ec; opacity: 0; transition: opacity .25s;
}
.re2020-wrap .radio-card label:hover {
  border-color: #3baa34; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(59,170,52,.16);
}
.re2020-wrap .radio-card label:hover::before { opacity: .5; }
.re2020-wrap .radio-card input:checked + label {
  border-color: #3baa34; background: #edf7ec;
  box-shadow: 0 0 0 3px rgba(59,170,52,.13);
}
.re2020-wrap .radio-card input:checked + label::before { opacity: 1; }
.re2020-wrap .radio-card input:checked + label::after {
  content: 'âœ“'; position: absolute; top: 7px; right: 9px;
  width: 19px; height: 19px; border-radius: 50%;
  background: #3baa34; color: #fff;
  font-size: 10px; font-weight: 700; line-height: 19px; text-align: center;
}
.re2020-wrap .card-icon {
  width: 50px; height: 50px; border-radius: 11px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 7px rgba(0,0,0,.08);
  position: relative; z-index: 1; transition: .25s;
}
.re2020-wrap .radio-card input:checked + label .card-icon {
  background: #3baa34; box-shadow: 0 4px 14px rgba(59,170,52,.32);
}
.re2020-wrap .card-icon svg { width: 24px; height: 24px; color: #3baa34; transition: .25s; }
.re2020-wrap .radio-card input:checked + label .card-icon svg { color: #fff; }
.re2020-wrap .card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #1a1f1a; line-height: 1.3;
  position: relative; z-index: 1;
}
.re2020-wrap .card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: #6b7280;
  position: relative; z-index: 1; margin-top: -5px;
}
.re2020-wrap .result-section { display: none; }
.re2020-wrap .result-section.visible { display: block; animation: r2020Up .35s ease both; }
.re2020-wrap .result-card {
  border-radius: 14px; border: 2px solid #3baa34;
  background: linear-gradient(135deg,#edf7ec 0%,#fff 100%);
  padding: 24px 24px 20px;
  position: relative; overflow: hidden; margin-top: 14px;
}
.re2020-wrap .result-card::before {
  content: ''; position: absolute; top: -36px; right: -36px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(59,170,52,.1);
}
.re2020-wrap .result-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #2d8828; margin-bottom: 6px;
}
.re2020-wrap .result-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #1a1f1a; margin-bottom: 4px; line-height: 1.25;
}
.re2020-wrap .result-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: #e53e3e; margin: 6px 0 14px; font-weight: 500;
}
.re2020-wrap .cta-btn {
  display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
  width: 100%; padding: 15px 20px; border-radius: 11px;
  background: #3baa34; color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  text-decoration: none; transition: .25s; margin-bottom: 9px;
}
.re2020-wrap .cta-btn:hover {
  background: #2d8828; transform: translateY(-1px);
  box-shadow: 0 7px 26px rgba(59,170,52,.38);
}
.re2020-wrap .cta-btn .btn-price { font-size: 17px; font-weight: 700; white-space: nowrap; }
.re2020-wrap .cta-btn .btn-arrow { font-size: 19px; opacity: .8; }
.re2020-wrap .nav-row { display: flex; gap: 11px; margin-top: 8px; }
.re2020-wrap .btn-back {
  flex: 0 0 auto; padding: 13px 18px; border-radius: 11px;
  border: 2px solid #e5e7eb; background: #fff; color: #6b7280;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: .25s;
}
.re2020-wrap .btn-back:hover { border-color: #1a1f1a; color: #1a1f1a; }
.re2020-wrap .btn-next {
  flex: 1; padding: 15px 22px; border-radius: 11px;
  border: none; background: #1a1f1a; color: #fff;
  font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: .25s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.re2020-wrap .btn-next:hover    { background: #000; transform: translateY(-1px); box-shadow: 0 5px 18px rgba(0,0,0,.18); }
.re2020-wrap .btn-next:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.re2020-wrap .trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; flex-wrap: wrap;
  margin-top: 26px; padding-top: 22px;
  border-top: 1px solid #d1e8cf;
}
.re2020-wrap .trust-item {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif; font-size: 12px; color: #6b7280;
}
.re2020-wrap .trust-item svg { color: #3baa34; width: 15px; height: 15px; flex-shrink: 0; }
.re2020-wrap .form-footnote {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px dashed #d1e8cf;
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: #9ca3af; font-style: italic;
  text-align: center; line-height: 1.6;
}
.re2020-wrap .fn-star { color: #3baa34; font-style: normal; font-weight: 700; margin-right: 2px; }
@keyframes r2020Up { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }
@media (max-width: 540px) {
  .re2020-wrap .form-card   { padding: 24px 16px 20px; }
  .re2020-wrap .radio-grid  { grid-template-columns: 1fr; }
  .re2020-wrap .surface-grid { grid-template-columns: repeat(2,1fr); }
}
.re2020-wrap .pay-panel {
  display: none;
  margin-top: 20px;
  border-radius: 16px;
  border: 2px solid #3baa34;
  background: #fff;
  overflow: hidden;
  animation: r2020Up .35s ease both;
}
.re2020-wrap .pay-panel.open { display: block; }
 
.re2020-wrap .pay-product-bar {
  background: linear-gradient(135deg,#edf7ec 0%,#d4f0d2 100%);
  padding: 18px 22px 16px;
  border-bottom: 1px solid #d1e8cf;
}
.re2020-wrap .pay-product-bar .result-label { margin-bottom: 4px; }
.re2020-wrap .pay-product-bar .result-title { margin-bottom: 0; }
 
/* options */
.re2020-wrap .pay-options {
  padding: 18px 22px 14px;
  border-bottom: 1px solid #eee;
}
.re2020-wrap .pay-options-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #3baa34; margin-bottom: 10px;
}
.re2020-wrap .pay-opt-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 8px; cursor: pointer;
}
.re2020-wrap .pay-opt-row input[type="checkbox"] { display: none; }
.re2020-wrap .pay-opt-check {
  width: 20px; height: 20px; border-radius: 5px;
  border: 2px solid #d1d5db; background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: .2s; margin-top: 1px;
}
.re2020-wrap .pay-opt-row input:checked ~ .pay-opt-check {
  background: #3baa34; border-color: #3baa34;
}
.re2020-wrap .pay-opt-row input:checked ~ .pay-opt-check::after {
  content: 'âœ“'; color: #fff; font-size: 11px; font-weight: 700;
}
.re2020-wrap .pay-opt-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: #374151; line-height: 1.45;
}
.re2020-wrap .pay-opt-text strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700; color: #1a1f1a;
  display: block; margin-bottom: 1px;
}
.re2020-wrap .pay-opt-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; color: #3baa34; font-weight: 700;
}
 
/* price summary */
.re2020-wrap .pay-summary {
  padding: 14px 22px;
  border-bottom: 1px solid #eee;
  display: flex; flex-direction: column; gap: 6px;
}
.re2020-wrap .pay-sum-row {
  display: flex; justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; color: #6b7280;
}
.re2020-wrap .pay-sum-row.total {
  font-size: 16px; font-weight: 700; color: #1a1f1a;
  padding-top: 8px; margin-top: 4px;
  border-top: 2px solid #e5e7eb;
}
.re2020-wrap .pay-sum-row span:last-child { font-weight: 700; }
 
/* customer form */
.re2020-wrap .pay-form {
  padding: 20px 22px 18px;
  border-bottom: 1px solid #eee;
}
.re2020-wrap .pay-form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #1a1f1a; margin-bottom: 14px;
}
.re2020-wrap .pay-field-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 10px;
}
.re2020-wrap .pay-field-row.full { grid-template-columns: 1fr; }
.re2020-wrap .pay-field {
  display: flex; flex-direction: column; gap: 4px;
}
.re2020-wrap .pay-field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  color: #6b7280; text-transform: uppercase; letter-spacing: .06em;
}
.re2020-wrap .pay-field input,
.re2020-wrap .pay-field select {
  padding: 10px 12px; border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: #1a1f1a; background: #fafafa;
  transition: border-color .2s;
  width: 100%;
}
.re2020-wrap .pay-field input:focus,
.re2020-wrap .pay-field select:focus {
  outline: none; border-color: #3baa34;
  background: #fff;
}
 
/* type toggle */
.re2020-wrap .pay-type-row {
  display: flex; gap: 8px; margin-bottom: 10px;
}
.re2020-wrap .pay-type-btn {
  flex: 1; padding: 10px;
  border-radius: 8px; border: 1.5px solid #e5e7eb;
  background: #fafafa; cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700; color: #6b7280;
  transition: .2s; text-align: center;
}
.re2020-wrap .pay-type-btn.active {
  border-color: #3baa34; background: #edf7ec; color: #2d8828;
}
.re2020-wrap .pay-entreprise { display: none; }
.re2020-wrap .pay-entreprise.show { display: grid; }
 
/* payment method */
.re2020-wrap .pay-method {
  padding: 16px 22px 14px;
  border-bottom: 1px solid #eee;
}
.re2020-wrap .pay-method-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #1a1f1a; margin-bottom: 12px;
}
.re2020-wrap .pay-method-row { display: flex; gap: 10px; }
.re2020-wrap .pay-method-opt { display: none; }
.re2020-wrap .pay-method-lbl {
  flex: 1; padding: 13px 16px;
  border-radius: 10px; border: 2px solid #e5e7eb;
  cursor: pointer; transition: .2s;
  display: flex; align-items: center; gap: 10px;
}
.re2020-wrap .pay-method-lbl:hover { border-color: #3baa34; }
.re2020-wrap .pay-method-opt:checked + .pay-method-lbl {
  border-color: #3baa34; background: #edf7ec;
}
.re2020-wrap .pay-method-lbl svg { width: 28px; height: 28px; flex-shrink: 0; }
.re2020-wrap .pay-method-lbl span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700; color: #1a1f1a;
}
 
/* submit */
.re2020-wrap .pay-footer {
  padding: 16px 22px;
  background: #f9fafb;
}
.re2020-wrap .pay-submit {
  width: 100%; padding: 16px;
  border-radius: 11px; border: none;
  background: #3baa34; color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px; font-weight: 700;
  cursor: pointer; transition: .25s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.re2020-wrap .pay-submit:hover { background: #2d8828; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,170,52,.35); }
.re2020-wrap .pay-secure {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 10px;
  font-family: 'Inter', sans-serif; font-size: 11px; color: #9ca3af;
}
.re2020-wrap .pay-secure svg { width: 12px; height: 12px; color: #9ca3af; }
 
/* close link */
.re2020-wrap .pay-close {
  display: inline-block; margin-top: 14px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: #9ca3af; cursor: pointer; text-decoration: underline;
}
 
@media (max-width: 480px) {
  .re2020-wrap .pay-field-row { grid-template-columns: 1fr; }
  .re2020-wrap .pay-method-row { flex-direction: column; }
}
#admin-bar {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 9999;
    display: flex;
    gap: 8px;
}
#admin-bar a {
    padding: 9px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.certifications-bar {
  padding: 32px 0;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}
.certif-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 20px;
}
.certif-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.certif-logos img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.2s, opacity 0.2s;
}
.certif-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}