:root {
    --navy: #2BA8A0; --navy-dark: #1F8983; --orange: #F4B400; --orange-dark: #D9A300;
    --bg: #F0F4F8; --bg-blue: #E3F5F4; --text: #1A1A2E; --text-light: #5A6478;
    --white: #FFFFFF; --border: #D1DCE8; --green: #16A34A;
    --radius: 12px; --shadow: 0 4px 24px rgba(43,168,160,0.10); --shadow-lg: 0 8px 40px rgba(43,168,160,0.16);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,0.08); height: 116px; display: flex; align-items: center; border-bottom: 3px solid var(--orange); }
  .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.35rem; color: var(--text); text-decoration: none; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a { color: var(--text-light); text-decoration: none; font-size: 0.875rem; font-weight: 600; padding: 6px 12px; border-radius: 6px; transition: all 0.2s; position: relative; cursor: pointer; }
  .nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--bg-blue); }
  .nav-links a.active::after { content: ''; position: absolute; bottom: -8px; left: 12px; right: 12px; height: 2px; background: var(--orange); border-radius: 2px; }
  .nav-cta { background: var(--orange) !important; color: #1A1A2E !important; padding: 8px 18px !important; border-radius: 8px !important; font-weight: 600 !important; }
  .nav-cta:hover { background: var(--orange-dark) !important; }
  .nav-cta.active { background: var(--orange-dark) !important; }
  .nav-cta.active::after { display: none; }

  /* HAMBURGER MOBILE */
  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
  .nav-mobile { display: none; position: fixed; top: 80px; left: 0; right: 0; background: #ffffff; border-bottom: 2px solid var(--orange); z-index: 99999; padding: 16px; flex-direction: column; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.5); -webkit-transform: translateZ(0); transform: translateZ(0); }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 600; padding: 10px 16px; border-radius: 8px; cursor: pointer; transition: all 0.2s; }
  .nav-mobile a:hover { background: var(--bg-blue); color: var(--navy); }
  .nav-mobile .nav-cta { background: var(--orange) !important; color: #1A1A2E !important; text-align: center; margin-top: 8px; }

  /* PAGES */
  .page { display: none; padding-top: 119px; min-height: 100vh; }
  .page.active { display: block; }

  /* HERO */
  .hero {
    background:
      linear-gradient(135deg, rgba(31,137,131,0.92) 0%, rgba(43,168,160,0.85) 55%, rgba(63,196,188,0.75) 100%),
      url('/wp-content/themes/jbs-energy/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white); padding: 80px 24px 64px; position: relative; overflow: visible; z-index: 0;isolation: isolate;
  }
  .hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(244,180,0,0.22) 0%, transparent 70%); pointer-events: none; }
  .hero-watermark { position: absolute; top: 50%; right: -30px; transform: translateY(-50%); width: 480px; max-width: 50vw; opacity: 0.16; pointer-events: none; z-index: 0; }
  .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center; position: relative; z-index: 1; }
  .hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(244,180,0,0.22); border: 1px solid rgba(244,180,0,0.5); color: #FFF3CC; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase; margin-top: 20; }
  .hero h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 16px rgba(8,41,40,0.35); }
  .hero h1 em { color: var(--orange); font-style: normal; }
  .hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); margin-bottom: 32px; max-width: 520px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary { background: var(--orange); color: #1A1A2E; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; text-decoration: none; display: inline-block; transition: all 0.2s; box-shadow: 0 4px 16px rgba(244,180,0,0.35); font-family: 'Inter', sans-serif; }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
  .btn-secondary { background: rgba(255,255,255,0.12); color: var(--white); padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; cursor: pointer; border: 1px solid rgba(255,255,255,0.25); text-decoration: none; display: inline-block; transition: all 0.2s; }
  .btn-secondary:hover { background: rgba(255,255,255,0.2); }
  .hero-card { background: var(--white); border-radius: 16px; padding: 28px; box-shadow: 0 12px 48px rgba(8,41,40,0.35); color: var(--text); }
  .hero-card h3 { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
  .cert-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .cert-item { display: flex; align-items: center; gap: 10px; background: var(--bg-blue); border-radius: 8px; padding: 10px 14px; font-size: 0.875rem; font-weight: 600; color: var(--navy); }
  .tel-block { background: var(--navy); color: var(--white); border-radius: 10px; padding: 14px 18px; text-align: center; }
  .tel-block .tel-label { font-size: 0.75rem; opacity: 0.7; margin-bottom: 2px; }
  .tel-block .tel-num { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; letter-spacing: 0.04em; }

  /* TRUST BAR */
  .trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 18px 24px; }
  .trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: var(--text-light); }
  .trust-item strong { color: var(--text); }
  .trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

  /* GOOGLE RATING BADGE */
  .google-rating-bar { background: linear-gradient(135deg, #1F8983 0%, #2BA8A0 100%); padding: 12px 24px; }
  .google-rating-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
  .google-rating-item { display: flex; align-items: center; gap: 10px; color: white; font-size: 0.875rem; font-weight: 600; }
  .google-stars { color: #F4B400; font-size: 1rem; letter-spacing: 1px; }

  /* SECTIONS */
  .section { padding: 72px 24px; }
  .section-alt { background: var(--white); }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
  .section-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
  .section-sub { color: var(--text-light); max-width: 600px; font-size: 1rem; margin-bottom: 48px; }

  /* SERVICES */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-card { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); cursor: pointer; transition: all 0.25s; box-shadow: var(--shadow); text-decoration: none; color: inherit; display: block; }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
  .service-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--bg-blue); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
  .service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
  .service-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; }
  .service-arrow { margin-top: 16px; color: var(--orange); font-weight: 700; font-size: 0.875rem; }

  /* AIDES */
  .aides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .aides-grid--2col { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) {
  .aides-grid--2col { grid-template-columns: 1fr; }
}
  .aide-card { background: var(--bg-blue); border-radius: var(--radius); padding: 24px; border-left: 4px solid var(--orange); }
  .aide-montant { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--orange); }
  .aide-label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
  .aide-desc { font-size: 0.875rem; color: var(--text-light); margin-top: 6px; }

  /* PROCESS */
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .step { text-align: center; position: relative; }
  .step::after { content: '\2192'; position: absolute; top: 14px; right: -12px; color: var(--border); font-size: 1.4rem; }
  .step:last-child::after { display: none; }
  .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
  .step h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
  .step p { font-size: 0.82rem; color: var(--text-light); }

  /* ZONE */
  .zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .zone-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .zone-tag { background: var(--bg-blue); border-radius: 8px; padding: 8px 14px; font-size: 0.875rem; font-weight: 500; color: var(--navy); display: flex; align-items: center; gap: 6px; }
  .zone-tag::before { content: '\1F4CD'; font-size: 0.8rem; }

  /* FORM */
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(43,168,160,0.12); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  /* PAGE HERO */
  .page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); padding: 100px 24px 48px; }
  .page-hero-inner { max-width: 1200px; margin: 0 auto; }
  .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
  .breadcrumb span { color: rgba(255,255,255,0.8); }
  .page-hero h1 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
  .page-hero p { color: rgba(255,255,255,0.78); max-width: 600px; font-size: 1rem; margin-bottom: 24px; }
  .page-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
  .badge { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--white); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
  .badge.green { background: rgba(22,163,74,0.25); border-color: rgba(22,163,74,0.5); color: #86EFAC; }

  /* FAQ */
  .faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer; }
  .faq-question { font-weight: 600; font-size: 0.95rem; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
  .faq-toggle { color: var(--orange); font-size: 1.5rem; font-weight: 300; flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-answer { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
  .faq-item.open .faq-answer { max-height: 300px; padding-top: 12px; }

  /* LAYOUT HELPERS */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .two-col-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; align-items: start; }

  /* STICKY CTA */
  .sticky-cta { position: fixed; bottom: 24px; right: 24px; z-index: 99; background: var(--orange); color: #1A1A2E; padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; cursor: pointer; box-shadow: 0 4px 24px rgba(244,180,0,0.45); transition: all 0.2s; display: flex; align-items: center; gap: 8px; border: none; font-family: 'Inter', sans-serif; text-decoration: none; }
  .sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(244,180,0,0.55); }

  /* INFO CARDS */
  .info-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
  .info-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 16px; }
  .info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.875rem; }
  .info-row-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
  .info-row strong { color: var(--text); display: block; font-weight: 600; }
  .info-row span { color: var(--text-light); display: block; }
  .check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
  .check-list li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .highlight-box { background: linear-gradient(135deg, var(--bg-blue), #dbeafe); border: 1px solid #93c5fd; border-radius: var(--radius); padding: 24px 28px; margin: 28px 0; }
  .highlight-box .hl-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 6px; }
  .highlight-box .hl-value { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--orange); }
  .highlight-box .hl-desc { font-size: 0.875rem; color: var(--text-light); margin-top: 4px; }

  /* GEO SECTION */
  .geo-section { background: var(--navy-dark); color: white; padding: 48px 24px; }
  .geo-inner { max-width: 1200px; margin: 0 auto; }
  .geo-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; margin-bottom: 12px; }
  .geo-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; max-width: 800px; }

  /* FOOTER */
  footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 48px 24px 24px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
  .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
  .footer-logo span { color: var(--orange); }
  .footer-desc { font-size: 0.875rem; line-height: 1.6; max-width: 280px; }
  .footer-col h4 { color: var(--white); font-size: 0.875rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
  .footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.875rem; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; cursor: pointer; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 8px; }

  /* REVIEWS */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .review-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; }
  .review-card::before { content: '"'; position: absolute; top: 12px; right: 20px; font-size: 4rem; color: var(--bg-blue); font-family: Georgia, serif; line-height: 1; }
  .review-stars { color: #F4B400; font-size: 1.1rem; margin-bottom: 12px; }
  .review-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 10px; }
  .review-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero-inner, .two-col, .two-col-3-2, .zone-grid { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .hero-watermark { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .aides-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .step::after { display: none; }
  }

  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .trust-inner { gap: 16px; }
    .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.85rem; }
    .section { padding: 48px 20px; }
    nav { height: 80px; }
    .nav-inner { padding: 0 16px; }
    nav img { height: 60px !important; }
    .nav-mobile { display: none; position: fixed; top: 80px; left: 0; right: 0; background: #ffffff; border-bottom: 2px solid var(--orange); z-index: 99999; padding: 16px; flex-direction: column; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
    .page { padding-top: 80px; }
    .hero { padding: 24px 20px 48px; }
    .hero-badge { margin-top: 20px; }
    .form-group input, .form-group select, .form-group textarea { width: 100%; max-width: 100%; }
.info-card { max-width: 100%; overflow: hidden; padding: 20px; box-sizing: border-box; width: 100%; }
.aides-grid { grid-template-columns: 1fr !important; }
.two-col-3-2 > div { min-width: 0; max-width: 100%; }
  }