:root {
  --energie-primary: #4B7B1E;
  --energie-secondary: #8B9A2F;
  --energie-light: #F0F5E6;
  --energie-accent: #6B8E23;
  --energie-gradient: linear-gradient(135deg, #8B9A2F, #4B7B1E);

  --air-primary: #1B3A5C;
  --air-secondary: #4A8CC7;
  --air-light: #EBF3FA;
  --air-accent: #6BA3D6;
  --air-gradient: linear-gradient(135deg, #1B3A5C, #6BA3D6);

  --amiante-primary: #B83218;
  --amiante-secondary: #E67E22;
  --amiante-light: #FDF0E8;
  --amiante-accent: #D4541E;
  --amiante-gradient: linear-gradient(135deg, #B83218, #E67E22);

  --apa-primary: #5B2D8E;
  --apa-secondary: #8E44AD;
  --apa-light: #F3ECF9;
  --apa-accent: #9B59B6;
  --apa-gradient: linear-gradient(135deg, #5B2D8E, #9B59B6);

  --dark: #1A1A2E;
  --gray-900: #2D2D3F;
  --gray-700: #4A4A5A;
  --gray-500: #7A7A8A;
  --gray-300: #C4C4D0;
  --gray-100: #F4F4F8;
  --white: #FFFFFF;

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

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container-sm {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
}

.nav-logo svg {
  height: 36px;
  width: auto;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
  color: var(--gray-700);
}

.nav-links a:hover {
  background: var(--gray-100);
  color: var(--dark);
}

.nav-links a.active {
  color: var(--dark);
  font-weight: 600;
}

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gray-900) !important;
  transform: translateY(-1px);
}

.nav-menu { display: contents; }
.nav-menu-cta, .nav-menu-footer { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-toggle.active span { background: #fff; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

body.menu-open { overflow: hidden; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8f9fa 0%, #e8ecf1 50%, #f4f4f8 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,123,30,0.06) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,92,0.06) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--energie-primary);
}

.hero h1 {
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #3B7DD8, #1A3F7A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-anim {
  position: relative;
  width: 340px;
  height: 370px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logotype {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.08));
}

.logo-layer {
  transform-origin: 87.8px 95px;
}

.logo-layer-4 {
  animation: layerPulse 4s ease-in-out infinite, layerReveal 1s ease forwards;
  animation-delay: 0s, 0.2s;
  opacity: 0;
}

.logo-layer-3 {
  animation: layerPulse 4s ease-in-out infinite, layerReveal 0.8s ease forwards;
  animation-delay: 0.5s, 0.5s;
  opacity: 0;
}

.logo-layer-2 {
  animation: layerPulse 4s ease-in-out infinite, layerReveal 0.8s ease forwards;
  animation-delay: 1s, 0.8s;
  opacity: 0;
}

.logo-layer-1 {
  animation: layerPulse 4s ease-in-out infinite, layerReveal 0.6s ease forwards;
  animation-delay: 1.5s, 1.1s;
  opacity: 0;
}

@keyframes layerReveal {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: var(--layer-opacity, 1); transform: scale(1); }
}

.logo-layer-4 { --layer-opacity: 0.12; }
.logo-layer-3 { --layer-opacity: 0.25; }
.logo-layer-2 { --layer-opacity: 0.5; }
.logo-layer-1 { --layer-opacity: 1; }

@keyframes layerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  border-color: var(--dark);
  background: var(--gray-100);
}

.btn-energie { background: var(--energie-gradient); color: #fff; }
.btn-energie:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(75,123,30,0.3); }

.btn-air { background: var(--air-gradient); color: #fff; }
.btn-air:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(27,58,92,0.3); }

.btn-amiante { background: var(--amiante-gradient); color: #fff; }
.btn-amiante:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(184,50,24,0.3); }

.btn-apa { background: var(--apa-gradient); color: #fff; }
.btn-apa:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(91,45,142,0.3); }

/* ── SECTIONS ── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding: 6px 16px;
  border-radius: 100px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ── PILLARS SECTION (HOME) ── */
.pillars {
  background: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-card.energie::before { background: var(--energie-gradient); }
.pillar-card.air::before { background: var(--air-gradient); }
.pillar-card.amiante::before { background: var(--amiante-gradient); }
.pillar-card.apa::before { background: var(--apa-gradient); }

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.pillar-card.energie .pillar-icon { background: var(--energie-light); color: var(--energie-primary); }
.pillar-card.air .pillar-icon { background: var(--air-light); color: var(--air-primary); }
.pillar-card.amiante .pillar-icon { background: var(--amiante-light); color: var(--amiante-primary); }
.pillar-card.apa .pillar-icon { background: var(--apa-light); color: var(--apa-primary); }

.pillar-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pillar-link {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.pillar-card.energie .pillar-link { color: var(--energie-primary); }
.pillar-card.air .pillar-link { color: var(--air-primary); }
.pillar-card.amiante .pillar-link { color: var(--amiante-primary); }
.pillar-card.apa .pillar-link { color: var(--apa-primary); }

.pillar-link:hover { gap: 12px; }

/* ── SERVICE SECTION (colored) ── */
.service-section {
  position: relative;
}

.service-section .section-header .label {
  color: var(--white);
}

.service-section.energie { background: var(--energie-light); }
.service-section.energie .section-header .label { background: var(--energie-primary); }
.service-section.energie .section-header h2 { color: var(--energie-primary); }

.service-section.air { background: var(--air-light); }
.service-section.air .section-header .label { background: var(--air-primary); }
.service-section.air .section-header h2 { color: var(--air-primary); }

.service-section.amiante { background: var(--amiante-light); }
.service-section.amiante .section-header .label { background: var(--amiante-primary); }
.service-section.amiante .section-header h2 { color: var(--amiante-primary); }

.service-section.apa { background: var(--apa-light); }
.service-section.apa .section-header .label { background: var(--apa-primary); }
.service-section.apa .section-header h2 { color: var(--apa-primary); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}

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

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── RESULTS / STATS ── */
.results-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.result-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.result-item .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.result-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.energie .result-item .number { color: var(--energie-primary); }
.air .result-item .number { color: var(--air-primary); }
.amiante .result-item .number { color: var(--amiante-primary); }
.apa .result-item .number { color: var(--apa-primary); }

/* ── TARGETS ── */
.targets {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.target-tag {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--dark);
}

.cta-section .btn-primary:hover {
  background: var(--gray-100);
}

.cta-section .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.cta-section .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ── POSITIONING / ABOUT ── */
.about-section {
  background: var(--gray-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  list-style: none;
  display: grid;
  gap: 16px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.about-features li .icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: var(--white);
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.contact-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--gray-100);
  transition: all 0.3s;
}

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

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  background: var(--dark);
  color: var(--white);
}

.contact-card h4 {
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.contact-card a {
  color: var(--dark);
  font-weight: 600;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo svg {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--gray-300);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ── TRUST BAR ── */
.trust-logos {
  padding: 48px 0;
  background: var(--gray-100);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.trust-logos .section-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 28px;
  font-weight: 600;
}
.trust-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
  opacity: 0.6;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.trust-logo-item:hover { opacity: 1; }
.trust-logo-item .tl-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.trust-logo-item .tl-icon .i {
  width: 16px;
  height: 16px;
  color: var(--gray-500);
}

/* ── GUARANTEES ── */
.guarantees {
  padding: 56px 0;
  background: var(--white);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.guarantee-item {
  text-align: center;
  padding: 24px 16px;
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5B9BD5, #2B6CB0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.guarantee-icon .i {
  width: 24px;
  height: 24px;
  color: #fff;
}
.guarantee-item h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin: 0 0 6px;
}
.guarantee-item p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

/* ── GOOGLE BADGE ── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.google-badge:hover { background: rgba(255,255,255,0.14); }
.google-badge .gb-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.google-badge .gb-stars {
  display: flex;
  gap: 2px;
}
.google-badge .gb-stars svg {
  width: 12px;
  height: 12px;
  fill: #FBBC04;
}
.google-badge .gb-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}
.google-badge .gb-text strong {
  color: #fff;
  font-size: 0.8rem;
}

.footer-credit {
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(255,255,255,0.6); }
.footer-credit img {
  height: 14px;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.footer-credit a:hover img { opacity: 0.7; }

/* ── SERVICE PAGE HERO ── */
.service-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.service-hero.energie { background: linear-gradient(160deg, var(--energie-light) 0%, #d9e8c4 100%); }
.service-hero.air { background: linear-gradient(160deg, var(--air-light) 0%, #d0e3f5 100%); }
.service-hero.amiante { background: linear-gradient(160deg, var(--amiante-light) 0%, #f5d6c4 100%); }
.service-hero.apa { background: linear-gradient(160deg, var(--apa-light) 0%, #e0d0f0 100%); }

.service-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.service-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-hero-visual .hero-logo-anim {
  width: 280px;
  height: 310px;
}

.service-hero-content {
  max-width: 640px;
  padding: 60px 0;
  text-align: left;
}

.service-hero .label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}

.service-hero.energie .label { background: var(--energie-primary); }
.service-hero.air .label { background: var(--air-primary); }
.service-hero.amiante .label { background: var(--amiante-primary); }
.service-hero.apa .label { background: var(--apa-primary); }

.service-hero.energie h1 { color: var(--energie-primary); }
.service-hero.air h1 { color: var(--air-primary); }
.service-hero.amiante h1 { color: var(--amiante-primary); }
.service-hero.apa h1 { color: var(--apa-primary); }

.service-hero h1 {
  margin-bottom: 16px;
}

.service-hero p {
  font-size: 1.15rem;
  color: var(--gray-700);
  margin-bottom: 28px;
}

/* ── DETAIL SECTIONS (service pages) ── */
.detail-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-100);
}

.detail-section:last-of-type {
  border-bottom: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-grid.reverse {
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-content h2 {
  margin-bottom: 16px;
}

.detail-content p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.detail-list {
  list-style: none;
  margin-bottom: 24px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
}

.detail-list li .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--white);
}

.energie .detail-list .check { background: var(--energie-primary); }
.air .detail-list .check { background: var(--air-primary); }
.amiante .detail-list .check { background: var(--amiante-primary); }
.apa .detail-list .check { background: var(--apa-primary); }

.detail-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.detail-card h3 {
  margin-bottom: 20px;
}

/* ── STEPS ── */
.steps {
  display: grid;
  gap: 20px;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  counter-increment: step;
}

.step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.energie .step-number { background: var(--energie-gradient); }
.air .step-number { background: var(--air-gradient); }
.amiante .step-number { background: var(--amiante-gradient); }
.apa .step-number { background: var(--apa-gradient); }

.step-content h4 {
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ── COMPARISON TABLE ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.energie .comparison-table thead th { background: var(--energie-primary); }
.air .comparison-table thead th { background: var(--air-primary); }
.amiante .comparison-table thead th { background: var(--amiante-primary); }
.apa .comparison-table thead th { background: var(--apa-primary); }

.comparison-table tbody tr:hover {
  background: var(--gray-100);
}

.comparison-table td:first-child {
  font-weight: 500;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--gray-100);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  min-width: 20px;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

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

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .hero p {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual,
  .service-hero-visual {
    display: none;
  }

  .service-hero .container {
    grid-template-columns: 1fr;
  }

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

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

  .detail-grid.reverse {
    direction: ltr;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-logo { z-index: 300; position: relative; }

  .nav-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #0f0f1a;
    padding: 100px 32px 32px;
    z-index: 190;
    overflow-y: auto;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }

  .nav-links li { overflow: hidden; }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 !important;
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 0 !important;
    background: none !important;
    letter-spacing: -0.02em;
    transform: translateY(30px);
    opacity: 0;
    transition: color 0.25s ease, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s ease;
  }

  .nav-menu.open .nav-links a {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li:nth-child(1) a { transition-delay: 0.08s; }
  .nav-links li:nth-child(2) a { transition-delay: 0.14s; }
  .nav-links li:nth-child(3) a { transition-delay: 0.20s; }
  .nav-links li:nth-child(4) a { transition-delay: 0.26s; }
  .nav-links li:nth-child(5) a { transition-delay: 0.32s; }

  .nav-links a:hover, .nav-links a.active { color: #fff !important; }

  .nav-toggle { display: flex; }

  .nav-dropdown { width: 100%; }

  .nav-cta {
    background: none !important;
    color: rgba(255, 255, 255, 0.4) !important;
    padding: 20px 0 !important;
  }
  .nav-cta:hover { transform: none !important; }
  .nav-cta svg { display: none; }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: block;
    padding: 0 0 8px 20px;
    min-width: 0;
    background: none;
  }

  .dropdown-menu li a {
    font-size: clamp(0.95rem, 3vw, 1.1rem) !important;
    font-weight: 600 !important;
    padding: 10px 0 !important;
    color: rgba(255, 255, 255, 0.25) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  }
  .dropdown-menu li a:hover { color: #fff !important; }

  .nav-menu-cta {
    display: block;
    margin-top: 32px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.34s, opacity 0.5s ease 0.34s;
  }
  .nav-menu.open .nav-menu-cta {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-menu-cta .btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
  }

  .nav-menu-footer {
    display: block;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.40s, opacity 0.5s ease 0.40s;
  }
  .nav-menu.open .nav-menu-footer {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .nav-menu-contact a,
  .nav-menu-contact span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .nav-menu-contact a:hover { color: #fff; }

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

  .results-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .trust-logos-grid { gap: 24px; }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .service-hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-content,
  .service-hero-content {
    text-align: center;
  }

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

  .hero p,
  .service-hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── INLINE SVG ICONS ── */
.i {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
  flex-shrink: 0;
}

.pillar-icon .i,
.service-card-icon .i {
  width: 28px;
  height: 28px;
}

.contact-icon .i {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.about-features .icon .i {
  width: 18px;
  height: 18px;
}

.check .i {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 3;
}

.faq-question .arrow .i {
  width: 18px;
  height: 18px;
}

.btn .i {
  width: 18px;
  height: 18px;
}

.target-tag .i {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

/* ── RESSOURCES OFFICIELLES ── */
.resources-section {
  background: var(--gray-50, #f8f9fa);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.resource-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.resource-card:hover {
  border-color: #ccc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.resource-card .rc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resource-card .rc-icon .i {
  width: 22px;
  height: 22px;
}

.resource-card .rc-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.resource-card .rc-text p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
}

.resource-card .rc-arrow {
  margin-left: auto;
  color: #ccc;
  flex-shrink: 0;
  align-self: center;
  transition: color 0.2s;
}

.resource-card:hover .rc-arrow {
  color: var(--dark);
}

.resource-card .rc-arrow .i {
  width: 16px;
  height: 16px;
}

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

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 200px;
  list-style: none;
  z-index: 100;
  border: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700) !important;
  background: none !important;
  border-radius: 0 !important;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: var(--gray-100) !important;
  color: var(--dark) !important;
}

/* ══════════════════════════════════════
   DEVIS PAGE – WIZARD
   ══════════════════════════════════════ */

.devis-page {
  padding: 120px 0 60px;
  min-height: 100vh;
}

.devis-header {
  text-align: center;
  margin-bottom: 40px;
}

.devis-header h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.devis-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

/* ── Progress Bar ── */
.devis-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 48px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #bbb;
  white-space: nowrap;
  transition: color 0.3s;
}

.progress-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
  color: #bbb;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.progress-step.active {
  color: #2B6CB0;
}

.progress-step.active span {
  background: #2B6CB0;
  color: #fff;
}

.progress-step.done span {
  background: #2B6CB0;
  color: #fff;
}

.progress-line {
  flex: 1;
  height: 3px;
  background: #eee;
  margin: 0 12px;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #2B6CB0;
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ── Steps ── */
.devis-step {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp 0.4s ease;
}

.devis-step.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.devis-step h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.step-hint {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* ── Service Cards ── */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.service-select-card {
  cursor: pointer;
}

.service-select-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ssc-inner {
  position: relative;
  background: var(--white);
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s ease;
}

.ssc-inner:hover {
  border-color: #ccc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-select-card input:checked ~ .ssc-inner {
  border-color: #2B6CB0;
  background: #f0f6ff;
  box-shadow: 0 0 0 3px rgba(43,108,176,0.12);
}

.ssc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}

.ssc-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.ssc-inner p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.4;
}

.ssc-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.ssc-check svg {
  width: 14px;
  height: 14px;
  color: transparent;
  transition: color 0.2s;
}

.service-select-card input:checked ~ .ssc-inner .ssc-check {
  background: #2B6CB0;
  border-color: #2B6CB0;
}

.service-select-card input:checked ~ .ssc-inner .ssc-check svg {
  color: #fff;
}

/* ── Form Fields ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group .optional {
  font-weight: 400;
  color: var(--gray);
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2B6CB0;
  box-shadow: 0 0 0 3px rgba(43,108,176,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Nav Buttons ── */
.devis-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.btn-outline {
  background: none;
  border: 2px solid #e0e0e0;
  color: var(--gray);
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-outline:hover {
  border-color: #bbb;
  color: var(--dark);
}

.btn-primary[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-send {
  background: linear-gradient(135deg, #3B7DD8, #1A3F7A);
}

.btn-send:hover {
  background: linear-gradient(135deg, #2B6CB0, #163468);
}

/* ── Success Screen ── */
.success-screen {
  text-align: center;
  padding: 40px 0;
}

.success-icon svg {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.success-screen h2 {
  color: #2B6CB0;
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Trust Bar ── */
.devis-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

.trust-item .i {
  width: 20px;
  height: 20px;
  color: #2B6CB0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .devis-header h1 {
    font-size: 1.8rem;
  }

  .service-select-grid {
    grid-template-columns: 1fr;
  }

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

  .devis-nav {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .devis-nav .btn {
    width: 100%;
    justify-content: center;
  }

  .devis-nav .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .devis-trust {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .progress-step {
    font-size: 0;
  }

  .progress-step span {
    font-size: 0.85rem;
  }
}

/* ── COMPARE TABLE ── */
.compare-table {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.compare-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 500px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 0.92rem;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
}

.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 20px;
  background: var(--gray-100);
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius-lg) 0 0;
}

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

.compare-table tbody tr:hover {
  background: var(--gray-100);
}

.compare-table .i {
  width: 20px;
  height: 20px;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.process-step .step-number {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── PRICING CARDS ── */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 750px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 30px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.pricing-featured {
  border-color: var(--energie-primary);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin: 20px 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
}

.pricing-features .i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 16px;
  }
}
