/* ============================================================
   SBE – Solutions Bél Énergie | Feuille de style principale
   Couleurs : Navy #0D1F3C | Orange #E8720C
   Polices  : Barlow + Barlow Condensed (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

/* ==================== VARIABLES ==================== */
:root {
  --navy:        #0D1F3C;
  --navy-mid:    #142545;
  --orange:      #E8720C;
  --orange-dark: #c55f08;
  --white:       #ffffff;
  --gray-50:     #f8f9fa;
  --gray-100:    #f1f3f5;
  --gray-200:    #e9ecef;
  --gray-300:    #dee2e6;
  --gray-500:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-700:    #495057;
  --gray-800:    #343a40;
  --text:        #1a1a2e;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
h1, h2, h3, h4, h5, h6 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

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

/* ==================== BOUTONS ==================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 4px !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  text-align: center !important;
  line-height: 1 !important;
}

.btn-primary {
  background: #E8720C !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 4px 16px rgba(232,114,12,0.35) !important;
}
.btn-primary:hover {
  background: #ffffff !important;
  color: #E8720C !important;
  border-color: #E8720C !important;
  box-shadow: 0 6px 24px rgba(232,114,12,0.2) !important;
}

.btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
.btn-secondary:hover {
  background: #ffffff !important;
  color: #0D1F3C !important;
  border-color: #ffffff !important;
}

.btn-outline-orange {
  background: transparent !important;
  color: #E8720C !important;
  border: 2px solid #E8720C !important;
}
.btn-outline-orange:hover {
  background: #E8720C !important;
  color: #ffffff !important;
  border-color: #E8720C !important;
}

.btn-white-navy {
  background: #ffffff !important;
  color: #0D1F3C !important;
  border: 2px solid #ffffff !important;
}
.btn-white-navy:hover {
  background: #E8720C !important;
  color: #ffffff !important;
  border-color: #E8720C !important;
}

/* ==================== HEADER ==================== */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo svg { height: 52px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 11px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange); background: rgba(232,114,12,0.08); }

.nav-cta {
  background: #E8720C !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 10px 18px !important;
  border-radius: 4px !important;
  margin-left: 8px !important;
  transition: all 0.25s !important;
  white-space: nowrap !important;
  box-shadow: 0 2px 10px rgba(232,114,12,0.35) !important;
  display: inline-block !important;
}
.nav-cta:hover {
  background: #ffffff !important;
  color: #E8720C !important;
  border-color: #E8720C !important;
  box-shadow: 0 4px 16px rgba(232,114,12,0.2) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== PAGE HERO (sous-pages) ==================== */
.page-hero {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,114,12,0.18) 0%, transparent 55%),
              radial-gradient(circle at 80% 20%, rgba(232,114,12,0.1) 0%, transparent 40%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb-nav { justify-content: center; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); color: #ffffff; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero .hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 620px; margin: 0 auto 32px; }

/* ==================== SECTIONS ==================== */
.section     { padding: 80px 0; }
.section-sm  { padding: 56px 0; }
.section-lg  { padding: 104px 0; }
.section-white { background: #ffffff; }
.section-gray  { background: var(--gray-50); }
.section-navy  { background: var(--navy); }
.section-orange { background: var(--orange); }

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,114,12,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-navy .section-label { background: rgba(232,114,12,0.2); }

.section-title { font-size: clamp(28px, 4vw, 44px); color: var(--navy); margin-bottom: 14px; }
.section-navy .section-title { color: #ffffff; }
.section-orange .section-title { color: #ffffff; }
.section-title em { font-style: normal; color: var(--orange); }
.section-orange .section-title em { color: rgba(255,255,255,0.85); text-decoration: underline; }

.section-subtitle { font-size: 17px; color: var(--gray-600); max-width: 640px; margin-bottom: 48px; line-height: 1.7; }
.section-navy .section-subtitle { color: rgba(255,255,255,0.7); }
.section-orange .section-subtitle { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.sep { width: 48px; height: 4px; background: var(--orange); border-radius: 2px; margin: 14px 0 24px; }
.sep-center { margin-left: auto; margin-right: auto; }

/* ==================== GRILLES ==================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ==================== CARDS GÉNÉRIQUES ==================== */
.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.11); }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(232,114,12,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 26px;
}
.card-title { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.card-text  { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* ==================== STATS ==================== */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item {
  padding: 44px 20px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.stat-item:hover { background: rgba(232,114,12,0.12); }
.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 58px; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 8px;
  display: block;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ==================== EXPERTISE CARDS ==================== */
.expertise-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border-bottom: 4px solid transparent;
}
.expertise-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,0.12); border-bottom-color: var(--orange); }
.expertise-card-header {
  background: var(--navy);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.expertise-card-header::after {
  content: '';
  position: absolute;
  right: -24px; bottom: -24px;
  width: 110px; height: 110px;
  background: rgba(232,114,12,0.15);
  border-radius: 50%;
}
.expertise-card-icon { font-size: 38px; margin-bottom: 10px; position: relative; z-index: 1; }
.expertise-card-title { font-size: 26px; color: #ffffff; position: relative; z-index: 1; }
.expertise-card-body { padding: 24px 28px 32px; }
.expertise-card-desc { font-size: 15px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.expertise-card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.expertise-card-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--gray-700); }
.expertise-card-list li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.expertise-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.expertise-card-link:hover { gap: 12px; }

/* ==================== HERO (ACCUEIL) ==================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 45%, rgba(232,114,12,0.14) 0%, transparent 50%),
    radial-gradient(circle at 78% 18%, rgba(232,114,12,0.09) 0%, transparent 38%),
    linear-gradient(180deg, #0D1F3C 0%, #142545 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 88px 0 56px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,114,12,0.15);
  border: 1px solid rgba(232,114,12,0.35);
  color: var(--orange);
  padding: 6px 14px; border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 800; color: #ffffff; margin-bottom: 22px; line-height: 1.08; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 10px; font-weight: 500; }
.hero-location {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 38px;
}
.hero-location-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero aside */
.hero-aside {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 24px;
}
.hero-aside-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.hero-aside-title { font-size: 22px; color: #ffffff; margin-bottom: 20px; }
.hero-aside-items { display: flex; flex-direction: column; gap: 12px; }
.hero-aside-item { display: flex; align-items: flex-start; gap: 12px; }
.hero-aside-check {
  width: 22px; height: 22px;
  background: rgba(232,114,12,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.hero-aside-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.hero-aside-text strong { color: #ffffff; font-weight: 600; }
.hero-aside-footer {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.hero-aside-footer .btn {
  width: 100%;
  padding: 12px 20px !important;
  font-size: 14px !important;
  display: block !important;
}

/* Hero arguments bar */
.hero-args {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
}
.hero-arg {
  padding: 22px 20px;
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.hero-arg:last-child { border-right: none; }
.hero-arg:hover { background: rgba(232,114,12,0.12); }
.hero-arg-icon { font-size: 28px; flex-shrink: 0; }
.hero-arg-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: #ffffff; }
.hero-arg-text  { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 1px; }

/* ==================== PROCESS STEPS ==================== */
.steps-wrap { position: relative; padding-top: 20px; }
.steps-line {
  position: absolute;
  top: 56px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; z-index: 1; }
.step-item { text-align: center; padding: 0 8px; }
.step-number {
  width: 72px; height: 72px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  margin: 0 auto 16px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 16px rgba(13,31,60,0.25);
  position: relative; z-index: 2;
  transition: background 0.3s;
}
.step-item.highlight .step-number { background: var(--orange); }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-text  { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ==================== PRICING CARDS ==================== */
.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(232,114,12,0.14);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 18px; border-radius: 50px; white-space: nowrap;
}
.pricing-icon { width: 64px; height: 64px; background: rgba(232,114,12,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.pricing-title { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.pricing-tag { display: inline-block; font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 12px; }
.pricing-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); }
.pricing-feature::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* ==================== CASE STUDIES ==================== */
.case-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.case-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.case-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,114,12,0.18) 0%, transparent 60%);
}
.case-card-img-icon { font-size: 52px; position: relative; z-index: 1; }
.case-card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange); color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.case-card-body { padding: 24px; }
.case-card-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.case-card-client { font-size: 13px; color: var(--gray-500); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.case-card-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.case-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 14px 0; margin-bottom: 20px; gap: 8px; }
.case-stat { text-align: center; }
.case-stat-value { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--orange); display: block; }
.case-stat-label { font-size: 11px; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 12px; right: 20px;
  font-family: Georgia, serif;
  font-size: 84px; color: rgba(232,114,12,0.12); line-height: 1;
}
.testimonial-stars { color: var(--orange); font-size: 16px; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; color: #ffffff; flex-shrink: 0;
  border: 2px solid var(--orange);
}
.testimonial-name { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 13px; color: var(--gray-600); }

/* ==================== TWO-COL CONTENT ==================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.col-visual {
  background: var(--navy);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.col-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,114,12,0.2) 0%, transparent 55%);
}
.col-visual-icon { font-size: 80px; position: relative; z-index: 1; }
.col-visual-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: var(--orange); color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 8px;
}

/* ==================== FEATURE LIST ==================== */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(232,114,12,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.feature-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-text  { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ==================== ACCORDION ==================== */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion-item { background: #ffffff; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); overflow: hidden; }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; transition: background 0.2s;
  user-select: none;
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-header.open { background: var(--navy); }
.accordion-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); }
.accordion-header.open .accordion-title { color: #ffffff; }
.accordion-chevron {
  width: 28px; height: 28px;
  background: rgba(232,114,12,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--orange);
  transition: transform 0.3s; flex-shrink: 0;
}
.accordion-header.open .accordion-chevron { transform: rotate(45deg); background: rgba(255,255,255,0.15); color: #ffffff; }
.accordion-body { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.accordion-body.open { max-height: 800px; padding: 20px 24px 24px; }
.accordion-body-text { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.accordion-body-text ul { padding-left: 16px; margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.accordion-body-text ul li { list-style: disc; color: var(--gray-700); font-size: 14px; }

/* ==================== CERTIFICATIONS ==================== */
.certs-flex { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cert-badge {
  background: #ffffff;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 28px;
  text-align: center;
  transition: all 0.3s;
  min-width: 120px;
}
.cert-badge:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,114,12,0.12); }
.cert-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.cert-desc { font-size: 12px; color: var(--gray-600); }

/* ==================== VALUES ==================== */
.value-card { background: var(--navy); border-radius: 12px; padding: 32px 28px; position: relative; overflow: hidden; }
.value-card::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 90px; height: 90px; background: rgba(232,114,12,0.12); border-radius: 50%; }
.value-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 800; color: rgba(232,114,12,0.25); line-height: 1; margin-bottom: 14px; }
.value-title { font-size: 22px; color: #ffffff; margin-bottom: 10px; }
.value-text  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ==================== TEAM ==================== */
.team-card { background: #ffffff; border-radius: 12px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,0.07); transition: transform 0.3s; }
.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; color: #ffffff;
  margin: 0 auto 16px;
  border: 3px solid var(--orange);
}
.team-name { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-bio  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ==================== CONTACT ==================== */
.contact-form { background: #ffffff; border-radius: 16px; padding: 48px 40px; box-shadow: 0 4px 40px rgba(0,0,0,0.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.span-2 { grid-column: 1 / -1; }
.form-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--gray-200); border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--text);
  background: #ffffff; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,114,12,0.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-checkbox-row { display: flex; align-items: flex-start; gap: 12px; }
.form-checkbox { width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; margin-top: 3px; cursor: pointer; }
.form-checkbox-label { font-size: 14px; color: var(--gray-600); cursor: pointer; line-height: 1.5; }
.form-checkbox-label a { color: var(--orange); text-decoration: underline; }
.form-submit {
  background: #E8720C !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 16px 40px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: all 0.25s !important;
  box-shadow: 0 4px 16px rgba(232,114,12,0.35) !important;
  margin-top: 8px !important;
}
.form-submit:hover {
  background: #ffffff !important;
  color: #E8720C !important;
  border-color: #E8720C !important;
}

.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 32px;
  color: #ffffff;
  height: fit-content;
}
.contact-info-title { font-size: 28px; color: #ffffff; margin-bottom: 8px; }
.contact-info-subtitle { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.6; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(232,114,12,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-info-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.contact-info-value { font-size: 16px; color: #ffffff; font-weight: 500; }

/* ==================== CTA BANNER ==================== */
.cta-section {
  background: var(--orange);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); color: #ffffff; margin-bottom: 12px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.88); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==================== ALERT ==================== */
.alert { padding: 16px 20px; border-radius: 8px; border-left: 4px solid; font-size: 14px; line-height: 1.6; }
.alert-warning { background: #fff8e1; border-color: #f59e0b; color: #78350f; }
.alert-info    { background: #eff6ff; border-color: #3b82f6; color: #1e3a5f; }
.alert-success { background: #f0fdf4; border-color: #22c55e; color: #14532d; }

/* ==================== TAGS ==================== */
.tag { display: inline-block; background: rgba(13,31,60,0.08); color: var(--navy); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.4px; padding: 4px 12px; border-radius: 50px; }
.tag-orange { background: rgba(232,114,12,0.1); color: var(--orange); }

/* ==================== BREADCRUMB ==================== */
.breadcrumb-nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb-nav a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb-nav a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb-nav .sep-bc { color: rgba(255,255,255,0.25); }
.breadcrumb-nav .current { color: var(--orange); }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 280px repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.footer-social:hover { background: var(--orange); color: #ffffff; }
.footer-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-link::before { content: '→'; font-size: 11px; color: var(--orange); opacity: 0.7; }
.footer-link:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.footer-contact-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal-link { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal-link:hover { color: rgba(255,255,255,0.65); }

/* ==================== MISC ==================== */
.pill { display: inline-block; background: rgba(232,114,12,0.1); color: var(--orange); font-size: 13px; font-weight: 600; padding: 3px 12px; border-radius: 50px; }
.pill-navy { background: rgba(13,31,60,0.08); color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }
.inline-check { color: var(--orange); font-weight: 700; margin-right: 6px; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 290px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .hero-args { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .steps-line { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col-reverse { direction: ltr; }
  .col-visual { display: none; }
}

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px;
    gap: 2px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    transform: translateY(-120%);
    transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    align-items: stretch;
    z-index: 999;
  }
  .site-nav.open { transform: translateY(0); }
  .nav-link { padding: 13px 16px; }
  .nav-cta { text-align: center !important; margin: 8px 0 0 !important; }
  .nav-toggle { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: 1; }
  .contact-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; }
  .hero-args { grid-template-columns: 1fr 1fr; }

  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .hero-grid { padding: 52px 0 40px; }
  .page-hero { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-args { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .case-card-stats { grid-template-columns: 1fr; }
  .certs-flex { justify-content: flex-start; }
}
