/* ===== VARIABLES ===== */
:root {
  --teal:       #1B9E8A;
  --teal-dark:  #157A6E;
  --teal-light: #E4F4F1;
  --navy:       #2C3A4B;
  --navy-dark:  #1C2B38;
  --gray:       #6B7280;
  --light-gray: #9CA3AF;
  --bg-light:   #F3F8F7;
  --border:     #E5E7EB;
  --white:      #FFFFFF;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}
[dir="rtl"] body,
[dir="rtl"] { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }
a { text-decoration: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--teal); color: white;
  border: none; border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .2s, transform .2s; font-family: inherit;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: transparent; color: var(--navy);
  border: 2px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; background: white; color: var(--teal);
  border: none; border-radius: 8px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.btn-white:hover { background: var(--teal-light); transform: translateY(-1px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
.nav-inner {
  display: flex; align-items: center; height: 72px; gap: 8px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-right: 20px;
}
[dir="rtl"] .nav-logo { margin-right: 0; margin-left: 20px; }
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 2px; list-style: none; flex: 1;
}
.nav-links a {
  padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--navy);
  border-radius: 6px; transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--bg-light); color: var(--teal); }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 3px;
  background: var(--bg-light); border-radius: 10px; padding: 4px; flex-shrink: 0;
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px; border: none; background: transparent;
  border-radius: 7px; font-size: 12px; font-weight: 600; color: var(--gray);
  cursor: pointer; transition: all .2s; font-family: inherit; white-space: nowrap;
}
.lang-btn.active { background: white; color: var(--navy); box-shadow: 0 1px 6px rgba(0,0,0,.1); }
.lang-btn:hover:not(.active) { color: var(--navy); }
.lang-flag { font-size: 16px; line-height: 1; }

/* Nav CTA */
.nav-cta { margin-left: 12px; flex-shrink: 0; }
[dir="rtl"] .nav-cta { margin-left: 0; margin-right: 12px; }

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none; margin-left: auto;
}
[dir="rtl"] .menu-toggle { margin-left: 0; margin-right: auto; }
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: all .3s;
}

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: white; border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: 16px 28px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 4px; }
.mobile-menu ul a {
  display: block; padding: 10px 12px; font-size: 15px; font-weight: 500;
  color: var(--navy); border-radius: 8px; transition: background .2s;
}
.mobile-menu ul a:hover { background: var(--bg-light); color: var(--teal); }
.mobile-lang { display: flex; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.mobile-lang button {
  flex: 1; padding: 10px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--gray); background: transparent;
  cursor: pointer; font-family: inherit; transition: all .2s;
}
.mobile-lang button.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* ===== HERO ===== */
.hero { padding: 116px 0 0; background: var(--white); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--teal-light); color: var(--teal);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-size: 54px; font-weight: 900; line-height: 1.08;
  color: var(--navy-dark); margin-bottom: 22px; letter-spacing: -.02em;
}
.hero h1 .accent { color: var(--teal); }
.hero-desc { font-size: 17px; color: var(--gray); line-height: 1.75; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-primary { padding: 14px 28px; font-size: 15px; }
.hero-actions .btn-outline { padding: 14px 28px; font-size: 15px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-panel {
  width: 100%; height: 420px; border-radius: 20px; overflow: hidden; position: relative;
}
.hero-panel img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.hero-float {
  position: absolute; bottom: -20px; right: 24px;
  background: white; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 36px rgba(0,0,0,.12); display: flex; align-items: center; gap: 14px;
}
[dir="rtl"] .hero-float { right: auto; left: 24px; }
.hero-float-icon {
  width: 44px; height: 44px; background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.hero-float-val { font-size: 22px; font-weight: 800; color: var(--navy-dark); line-height: 1.1; }
.hero-float-lbl { font-size: 11px; font-weight: 600; color: var(--light-gray); text-transform: uppercase; letter-spacing: .06em; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px;
}
.section-title { font-size: 40px; font-weight: 800; color: var(--navy-dark); line-height: 1.2; margin-bottom: 16px; letter-spacing: -.02em; }
.section-title .accent { color: var(--teal); }
.section-desc { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: white; border-radius: 14px; padding: 32px;
  border: 1px solid var(--border); transition: all .3s;
}
.service-card:hover {
  box-shadow: 0 12px 44px rgba(27,158,138,.12); border-color: var(--teal); transform: translateY(-5px);
}
.service-icon {
  width: 54px; height: 54px; background: var(--teal-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--teal);
}
.service-icon svg { width: 26px; height: 26px; }
.service-title { font-size: 18px; font-weight: 700; color: var(--navy-dark); margin-bottom: 12px; }
.service-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 22px; }
.service-desc ul { list-style: none; padding: 0; margin: 0; }
.service-desc ul li {
  display: flex; align-items: flex-start; gap: 9px; margin-bottom: 7px;
}
.service-desc ul li::before {
  content: '—'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--teal); transition: gap .2s;
  background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
}
.service-link:hover { gap: 10px; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: white; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 210px 210px; gap: 14px; }
.mosaic-cell {
  border-radius: 14px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.mosaic-cell svg { opacity: .5; }
.about-tag { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; }
.about h2 { font-size: 38px; font-weight: 800; color: var(--navy-dark); line-height: 1.18; margin-bottom: 20px; letter-spacing: -.02em; }
.about-desc { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.about-features { list-style: none; margin-bottom: 36px; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.feat-check {
  width: 22px; height: 22px; background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; margin-top: 1px;
}
.feat-title { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; }
.feat-desc { font-size: 13px; color: var(--gray); }

/* ===== TEAM ===== */
.team { padding: 100px 0; background: var(--bg-light); }
.team-content { display: flex; flex-direction: column; gap: 24px; }
.team-block {
  background: white; border-radius: 14px; padding: 36px;
  border: 1px solid var(--border);
}
.team-block-featured {
  border-left: 4px solid var(--teal);
}
[dir="rtl"] .team-block-featured { border-left: none; border-right: 4px solid var(--teal); }
.team-block-title {
  font-size: 18px; font-weight: 700; color: var(--navy-dark);
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.team-block-body { font-size: 14px; color: var(--gray); line-height: 1.8; }
.team-block-body p { margin-bottom: 12px; }
.team-block-body p:last-child { margin-bottom: 0; }
.team-block-body ul { list-style: none; padding: 0; margin: 10px 0 4px; }
.team-block-body ul li {
  display: flex; align-items: flex-start; gap: 9px; margin-bottom: 8px; font-size: 13px; line-height: 1.6;
}
.team-block-body ul li::before {
  content: '—'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.team-blocks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 40%, var(--navy-dark) 100%);
  padding: 90px 0; text-align: center;
}
.cta-banner h2 { font-size: 44px; font-weight: 900; color: white; margin-bottom: 16px; letter-spacing: -.02em; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: white; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info-tag { font-size: 11px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; }
.contact-info h2 { font-size: 36px; font-weight: 800; color: var(--navy-dark); margin-bottom: 16px; letter-spacing: -.02em; }
.contact-info-desc { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 36px; }
.contact-items { list-style: none; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon {
  width: 46px; height: 46px; background: var(--teal-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.contact-item-lbl { font-size: 11px; color: var(--light-gray); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.contact-item-val { font-size: 15px; color: var(--navy); font-weight: 500; line-height: 1.5; }

/* Form */
.contact-form { background: var(--bg-light); border-radius: 18px; padding: 40px; }
.form-title { font-size: 24px; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 15px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; color: var(--navy); background: white;
  outline: none; transition: border-color .2s; font-family: inherit;
}
.form-group textarea { height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 20px; font-size: 13px; color: var(--gray); cursor: pointer;
}
.form-check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--teal); flex-shrink: 0; }
.form-submit {
  width: 100%; padding: 14px; background: var(--teal); color: white;
  border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .2s; font-family: inherit;
}
.form-submit:hover { background: var(--teal-dark); }
.form-success { display: none; text-align: center; padding: 48px 20px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 52px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--teal); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--gray); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg-light); padding: 36px 0; border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; font-size: 14px; font-weight: 600; color: var(--navy); }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 64px 0 0; color: rgba(255,255,255,.65); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.footer-brand-desc { font-size: 14px; line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; color: white; transition: background .2s;
}
.footer-social:hover { background: var(--teal); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: white; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 14px; color: rgba(255,255,255,.55); }
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ===== HERO BENEFITS ===== */
.hero-benefits {
  list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px;
}
.hero-benefits li {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray); line-height: 1.6;
}
.hero-benefits li::before {
  content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ===== POUR QUI ===== */
.pour-qui { padding: 100px 0; background: white; }
.pour-qui-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 36px; }
.pour-qui-card {
  background: var(--bg-light); border-radius: 14px; padding: 28px 30px;
  border: 1px solid var(--border); transition: all .3s;
}
.pour-qui-card:hover { box-shadow: 0 8px 30px rgba(27,158,138,.1); border-color: var(--teal); transform: translateY(-3px); }
.pour-qui-icon {
  width: 46px; height: 46px; background: var(--teal-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 16px;
}
.pour-qui-title { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.pour-qui-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }
.pour-qui-motto {
  text-align: center; font-size: 16px; font-weight: 600; color: var(--navy);
  padding: 22px 36px; background: var(--teal-light); border-radius: 12px;
  border-left: 4px solid var(--teal); line-height: 1.6;
}
[dir="rtl"] .pour-qui-motto { border-left: none; border-right: 4px solid var(--teal); }

/* ===== MÉTHODE ===== */
.methode { padding: 100px 0; background: var(--navy-dark); }
.methode .section-tag { color: var(--teal); }
.methode .section-title { color: white; }
.methode-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 40px; position: relative; }
.methode-grid::before {
  content: ''; position: absolute; top: 48px; left: calc(16.6% + 12px); right: calc(16.6% + 12px);
  height: 2px; background: linear-gradient(to right, var(--teal), rgba(27,158,138,.3));
}
.methode-step {
  text-align: center; padding: 36px 28px; background: rgba(255,255,255,.04);
  border-radius: 16px; margin: 0 4px;
}
.methode-num {
  width: 56px; height: 56px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 22px; font-weight: 900; color: white;
}
.methode-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 14px; }
.methode-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.75; }
.methode-promise {
  text-align: center; font-size: 16px; font-weight: 600; color: var(--teal);
  padding: 24px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px;
}
.methode-promise::before { content: '💡 '; }

/* ===== MODAL SERVICE ===== */
.srv-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(28,43,56,.6); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.srv-modal-overlay.open { display: flex; }
.srv-modal-box {
  background: white; border-radius: 20px; max-width: 700px; width: 100%;
  max-height: 88vh; overflow-y: auto; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity:0; transform:translateY(18px) scale(.97); } to { opacity:1; transform:none; } }
.srv-modal-head {
  padding: 36px 44px 28px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: white; z-index: 1;
  display: flex; align-items: flex-start; gap: 20px;
}
.srv-modal-icon-wrap {
  width: 52px; height: 52px; background: var(--teal-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.srv-modal-icon-wrap svg { width: 26px; height: 26px; }
.srv-modal-head-text { flex: 1; }
.srv-modal-tag {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px;
}
.srv-modal-title { font-size: 22px; font-weight: 800; color: var(--navy-dark); line-height: 1.25; }
.srv-modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  background: var(--bg-light); border: none; border-radius: 50%; cursor: pointer;
  font-size: 20px; line-height: 36px; text-align: center; color: var(--gray);
  transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.srv-modal-close:hover { background: var(--border); color: var(--navy); }
.srv-modal-body { padding: 32px 44px 40px; }
.srv-modal-intro {
  font-size: 15px; color: var(--navy); line-height: 1.75; margin-bottom: 28px;
  padding: 18px 20px; background: var(--bg-light); border-radius: 10px;
  border-left: 3px solid var(--teal);
}
[dir="rtl"] .srv-modal-intro { border-left: none; border-right: 3px solid var(--teal); }
.srv-modal-section { margin-bottom: 28px; }
.srv-modal-section h4 {
  font-size: 13px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.srv-modal-section ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.srv-modal-section ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--navy); line-height: 1.5;
}
.srv-modal-section ul li::before {
  content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: 1px;
}
.srv-modal-extra {
  background: var(--teal-light); border-radius: 10px; padding: 18px 20px;
  font-size: 14px; color: var(--navy); line-height: 1.7; margin-bottom: 28px;
}
.srv-modal-extra strong { color: var(--teal); }
.srv-modal-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--teal); color: white;
  border-radius: 8px; font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; border: none; text-decoration: none; transition: background .2s;
}
.srv-modal-cta:hover { background: var(--teal-dark); }
@media (max-width: 600px) {
  .srv-modal-head { padding: 24px 24px 20px; }
  .srv-modal-body { padding: 24px 24px 32px; }
  .srv-modal-section ul { grid-template-columns: 1fr; }
  .srv-modal-title { font-size: 18px; }
}

/* ===== POURQUOI AMC ===== */
.pourquoi { padding: 100px 0; background: var(--bg-light); }
.pourquoi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.pourquoi-card {
  background: white; border-radius: 14px; padding: 28px 30px;
  border: 1px solid var(--border); display: flex; gap: 20px; align-items: flex-start; transition: all .3s;
}
.pourquoi-card:hover { box-shadow: 0 8px 30px rgba(27,158,138,.1); border-color: var(--teal); }
.pourquoi-icon {
  width: 52px; height: 52px; background: var(--teal-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.pourquoi-title { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.pourquoi-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== TÉMOIGNAGES ===== */
.testimonials { padding: 100px 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-light); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--border); position: relative; transition: all .3s;
}
.testimonial-card:hover { box-shadow: 0 8px 30px rgba(27,158,138,.1); border-color: var(--teal); transform: translateY(-3px); }
.testimonial-opening {
  font-size: 64px; line-height: .8; color: var(--teal); opacity: .25;
  font-family: Georgia, serif; font-weight: 900; margin-bottom: 8px; display: block;
}
.testimonial-text { font-size: 16px; color: var(--navy); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-stars { color: var(--teal); font-size: 16px; letter-spacing: 2px; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--bg-light); }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 860px; margin: 0 auto 40px; }
.faq-item {
  background: white; border-radius: 12px; border: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--navy-dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background .2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-arrow {
  transition: transform .3s; flex-shrink: 0; color: var(--teal); width: 20px; height: 20px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px; color: var(--gray); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-more { text-align: center; font-size: 15px; color: var(--gray); }
.faq-more a { color: var(--teal); font-weight: 600; }

/* ===== RÉFÉRENCES ===== */
.references { padding: 100px 0; background: var(--bg-light); }

/* Filtres secteur */
.refs-filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px;
}
.refs-filter {
  padding: 8px 18px; border: 1.5px solid var(--border); border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--gray); background: white;
  cursor: pointer; transition: all .2s; font-family: inherit; white-space: nowrap;
}
.refs-filter:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.refs-filter.active { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* Marquee */
.refs-marquee-outer {
  overflow: hidden; position: relative; padding: 10px 0;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.refs-track {
  display: flex; gap: 20px; width: max-content;
  animation: refsScroll 60s linear infinite;
}
.refs-track:hover { animation-play-state: paused; }
.refs-logo-card {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px 22px; display: flex; align-items: center; justify-content: center;
  height: 88px; min-width: 160px; flex-shrink: 0;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.refs-logo-card:hover {
  box-shadow: 0 6px 24px rgba(27,158,138,.14);
  border-color: var(--teal); transform: translateY(-3px);
}
.refs-logo-card img {
  max-height: 52px; max-width: 130px; object-fit: contain;
  filter: grayscale(15%); transition: filter .25s;
}
.refs-logo-card:hover img { filter: grayscale(0%); }
@keyframes refsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.refs-note {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--light-gray); font-style: italic; line-height: 1.7;
}
@media (max-width: 768px) {
  .refs-filter { font-size: 11px; padding: 6px 13px; }
  .refs-logo-card { height: 72px; min-width: 130px; }
  .refs-logo-card img { max-height: 40px; max-width: 100px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .methode-grid { grid-template-columns: 1fr; }
  .methode-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 30px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-mosaic { display: none; }
  .team-blocks-grid { grid-template-columns: 1fr; }
  .team-block { padding: 24px; }
  .cta-banner h2 { font-size: 30px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-direction: column; align-items: center; gap: 8px; }
  .pour-qui-grid { grid-template-columns: 1fr; }
  .pourquoi-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .methode-grid { grid-template-columns: 1fr; }
  .methode-grid::before { display: none; }
  .pour-qui-motto { padding: 18px 20px; font-size: 14px; }
}

/* ====================================================
   PAGES SERVICES INDIVIDUELLES
   ==================================================== */

/* ===== SERVICE PAGE HERO ===== */
.srv-page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1a6a62 100%);
  color: white;
}
.breadcrumb {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 24px; list-style: none; padding: 0;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li::after { content: '›'; margin: 0 8px; opacity: .5; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: rgba(255,255,255,.85); }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: white; }
.srv-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: rgba(27,158,138,.3); color: var(--teal-light);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
  border: 1px solid rgba(27,158,138,.4);
}
.srv-page-hero h1 {
  font-size: 46px; font-weight: 900; color: white; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 20px; max-width: 820px;
}
.srv-hero-desc {
  font-size: 18px; color: rgba(255,255,255,.8); line-height: 1.7;
  max-width: 680px; margin-bottom: 36px;
}
.srv-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: rgba(255,255,255,.1); color: white;
  border: 2px solid rgba(255,255,255,.3); border-radius: 8px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }

/* ===== SERVICE PAGE CONTENT ===== */
.srv-page-content { padding: 90px 0; background: white; }
.srv-page-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start;
}
.srv-list-title {
  font-size: 11px; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 20px;
}
.srv-items { list-style: none; margin-bottom: 32px; }
.srv-items li {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border); font-size: 15px; color: var(--navy); line-height: 1.5;
}
.srv-items li:last-child { border-bottom: none; }
.srv-items li::before {
  content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: 2px;
  font-size: 14px;
}
.srv-extra-box {
  background: var(--teal-light); border-radius: 12px; padding: 20px 24px;
  border-left: 4px solid var(--teal); font-size: 14px; color: var(--navy); line-height: 1.75;
}
.srv-extra-box strong { color: var(--teal-dark); }

/* Highlight box (sidebar) */
.srv-highlight-box {
  background: var(--bg-light); border-radius: 16px; padding: 36px;
  border: 1px solid var(--border); position: sticky; top: 100px;
}
.srv-highlight-box h3 {
  font-size: 20px; font-weight: 700; color: var(--navy-dark); margin-bottom: 16px;
}
.srv-highlight-box p {
  font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 24px;
}
.srv-highlight-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px;
}
.srv-stat {
  text-align: center; background: white; border-radius: 10px;
  padding: 16px 10px; border: 1px solid var(--border);
}
.srv-stat-val { font-size: 26px; font-weight: 900; color: var(--teal); line-height: 1; }
.srv-stat-lbl { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; line-height: 1.3; }
.srv-cta-block { text-align: center; padding-top: 8px; }
.srv-cta-block .btn-primary { width: 100%; justify-content: center; margin-bottom: 12px; }
.srv-cta-tel { font-size: 13px; color: var(--gray); }
.srv-cta-tel a { color: var(--teal); font-weight: 600; }

/* ===== RELATED SERVICES ===== */
.srv-related { padding: 90px 0; background: var(--bg-light); }
.srv-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.srv-related-card {
  background: white; border-radius: 14px; padding: 28px 24px;
  border: 1px solid var(--border); transition: all .3s;
  display: block; text-decoration: none;
}
.srv-related-card:hover {
  box-shadow: 0 8px 30px rgba(27,158,138,.12); border-color: var(--teal); transform: translateY(-3px);
}
.srv-related-icon {
  width: 46px; height: 46px; background: var(--teal-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--teal);
  margin-bottom: 16px;
}
.srv-related-title {
  font-size: 16px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px;
}
.srv-related-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.srv-related-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--teal); transition: gap .2s;
}
.srv-related-card:hover .srv-related-link { gap: 9px; }

/* ===== SERVICE FAQ ===== */
.srv-faq { padding: 90px 0; background: white; }

/* ===== RESPONSIVE SERVICE PAGES ===== */
@media (max-width: 1024px) {
  .srv-related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .srv-page-hero { padding: 100px 0 60px; }
  .srv-page-hero h1 { font-size: 30px; }
  .srv-hero-desc { font-size: 15px; }
  .srv-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .srv-highlight-box { position: static; }
  .srv-related-grid { grid-template-columns: 1fr; }
}
