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

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

:root {
  --primary: #1E3A8A;
  --primary-dark: #172a6b;
  --secondary: #F97316;
  --secondary-dark: #d95d0a;
  --dark: #0f172a;
  --gray-dark: #1F2937;
  --gray: #64748b;
  --gray-light: #E5E7EB;
  --bg-light: #F8FAFC;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(30, 58, 138, 0.12);
  --shadow-lg: 0 20px 50px rgba(30, 58, 138, 0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-dark);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; color: var(--dark); }

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

a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

.section { padding: 90px 0; position: relative; }

.section-light { background: var(--bg-light); }

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

.section-dark h2, .section-dark h3 { color: var(--white); }

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

.section-title .eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }

.section-title p { color: var(--gray); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(30, 58, 138, 0.97);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header.scrolled { padding: 10px 0; background: rgba(30, 58, 138, 0.99); }

.header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; font-family: 'Montserrat', sans-serif; font-size: 1.2rem; }

.logo img { height: 48px; width: auto; border-radius: 8px; background: var(--white); padding: 4px; }

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

.nav a { color: var(--white); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; position: relative; }

.nav a:not(.btn-cta-nav):hover { color: var(--secondary); }

.nav a:not(.btn-cta-nav)::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--secondary); transition: width 0.3s;
}

.nav a:not(.btn-cta-nav):hover::after { width: 100%; }

.nav .btn-cta-nav {
  background: var(--secondary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  line-height: 1.2;
}

.nav .btn-cta-nav:hover { background: var(--secondary-dark); transform: translateY(-2px); }

.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: var(--white);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.75) 100%), url('https://webflash.pro/storage/generated/318/hero_1776602457_69e4cd591f7af.webp') center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 300px; height: 300px;
  background: var(--secondary);
  opacity: 0.15;
  transform: rotate(45deg) translate(50%, 50%);
  z-index: 0;
}

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

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content h1 .highlight { color: var(--secondary); }

.hero-subtitle { font-size: 1.15rem; margin-bottom: 30px; opacity: 0.95; max-width: 560px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-badge i { color: var(--secondary); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn-primary { background: var(--secondary); color: var(--white); box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4); }

.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5); }

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

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

.devis-hero-card {
  background: var(--white);
  color: var(--gray-dark);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border-top: 5px solid var(--secondary);
}

.devis-hero-card h2 { font-size: 1.5rem; margin-bottom: 6px; color: var(--dark); }

.devis-hero-card .subtitle { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }

.devis-hero-card .form-group { margin-bottom: 14px; }

.devis-hero-card label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-dark); }

.devis-hero-card input, .devis-hero-card textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border 0.3s;
  background: #fafbfc;
}

.devis-hero-card input:focus, .devis-hero-card textarea:focus { outline: none; border-color: var(--primary); background: var(--white); }

.devis-hero-card textarea { resize: vertical; min-height: 80px; }

.devis-hero-card button {
  width: 100%;
  background: var(--secondary);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
}

.devis-hero-card button:hover { background: var(--secondary-dark); transform: translateY(-2px); }

.form-status { margin-top: 10px; font-size: 0.9rem; }

.stats {
  background: var(--primary);
  padding: 50px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: ''; position: absolute; top: 0; left: -50px;
  width: 200px; height: 200px;
  background: var(--secondary); opacity: 0.15;
  transform: rotate(45deg);
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative; z-index: 2;
}

.stat-item { text-align: center; padding: 10px; }

.stat-item i { font-size: 2rem; color: var(--secondary); margin-bottom: 12px; }

.stat-number { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }

.stat-label { font-size: 0.9rem; opacity: 0.9; }

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s;
  border: 1px solid var(--gray-light);
  flex: 1 1 320px;
  max-width: 370px;
  display: flex; flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
  border-color: var(--primary);
}

.service-img {
  position: relative;
  height: 210px;

}

.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

.service-card:hover .service-img img { transform: scale(1.05); }

.service-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(30, 58, 138, 0.6));
}

.service-icon {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 52px; height: 52px;
  background: var(--secondary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
  z-index: 2;
}

.service-body { padding: 36px 24px 24px; flex: 1; display: flex; flex-direction: column; }

.service-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }

.service-body p { color: var(--gray); font-size: 0.95rem; flex: 1; }

.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  margin-top: 18px; transition: gap 0.3s;
}

.service-link:hover { gap: 14px; color: var(--secondary); }

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.pourquoi-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
}

.pourquoi-card:hover { transform: translateY(-6px); border-bottom-color: var(--secondary); }

.pourquoi-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  font-size: 1.8rem;
}

.pourquoi-card h3 { font-size: 1.15rem; margin-bottom: 12px; }

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

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

.about-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img { width: 100%; height: 480px; object-fit: cover; }

.about-img::after {
  content: ''; position: absolute; top: -15px; right: -15px;
  width: 120px; height: 120px;
  background: var(--secondary);
  border-radius: 16px;
  z-index: -1;
}

.about-content .eyebrow {
  display: inline-block; color: var(--secondary); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}

.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 20px; }

.about-content p { color: var(--gray); margin-bottom: 16px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }

.about-feature { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.95rem; }

.about-feature i { color: var(--secondary); font-size: 1.1rem; }

.zones {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.zones::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
}

.zones-content { position: relative; z-index: 2; text-align: center; }

.zones-content i.zone-main-icon { font-size: 2.5rem; color: var(--secondary); margin-bottom: 16px; }

.zones-content h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }

.zones-content > p { max-width: 700px; margin: 0 auto 36px; opacity: 0.95; font-size: 1.05rem; }

.zones-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }

.zone-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}

.zone-tag:hover { background: var(--secondary); border-color: var(--secondary); transform: translateY(-2px); }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active { box-shadow: var(--shadow); border-color: var(--primary); }

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

.faq-question i { color: var(--secondary); transition: transform 0.3s; flex-shrink: 0; }

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--gray);
}

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

.horaires-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.horaires-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 24px;
  text-align: center;
}

.horaires-card-header i { font-size: 1.8rem; color: var(--secondary); margin-bottom: 8px; }

.horaires-card-header h3 { color: var(--white); font-size: 1.3rem; }

.horaires-list { padding: 10px 0; }

.horaires-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.3s;
}

.horaires-row:last-child { border-bottom: none; }

.horaires-row:hover { background: var(--bg-light); }

.horaires-row .day { font-weight: 600; color: var(--dark); }

.horaires-row .hours { color: var(--primary); font-weight: 600; }

.horaires-row.closed .hours { color: #ef4444; font-style: italic; }

.contact-section { background: var(--dark); color: var(--white); padding: 90px 0; }

.contact-section .section-title h2 { color: var(--white); }

.contact-section .section-title p { color: rgba(255,255,255,0.75); }

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

.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }

.contact-item {
  display: flex; gap: 16px;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--secondary);
}

.contact-item .icon {
  width: 48px; height: 48px;
  background: var(--secondary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 1.2rem; flex-shrink: 0;
}

.contact-item .label { font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }

.contact-item .value { font-weight: 600; font-size: 1.05rem; }

.contact-item .value a { color: var(--white); transition: color 0.3s; }

.contact-item .value a:hover { color: var(--secondary); }

.contact-form {
  background: rgba(255,255,255,0.06);
  padding: 32px;
  border-radius: 16px;
}

.contact-form h3 { color: var(--white); margin-bottom: 20px; font-size: 1.3rem; }

.contact-form .form-group { margin-bottom: 16px; }

.contact-form label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 500; }

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--secondary); background: rgba(255,255,255,0.12);
}

.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }

.contact-form button {
  background: var(--secondary); color: var(--white);
  padding: 14px 28px; border: none; border-radius: 8px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all 0.3s; width: 100%;
}

.contact-form button:hover { background: var(--secondary-dark); transform: translateY(-2px); }

.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }

.map-wrap iframe { display: block; }

.footer {
  background: #050812;
  color: var(--white);
  padding: 60px 0 0;
}

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

.footer-col .footer-logo { display: flex; align-items: center; gap: 12px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px; color: var(--white); }

.footer-col .footer-logo img { height: 40px; width: auto; background: var(--white); padding: 4px; border-radius: 6px; }

.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 16px; }

.footer-col .footer-title {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  width: fit-content;
}

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

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

.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 8px; }

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

.footer-col ul a i { font-size: 0.75rem; color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a { color: rgba(255,255,255,0.8); transition: color 0.3s; }

.footer-bottom a:hover { color: var(--secondary); }

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

.float-ctas {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  display: none; flex-direction: column; gap: 12px;
}

.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.float-btn:hover { transform: scale(1.1); }

.float-btn.phone { background: var(--secondary); }

.float-btn.whatsapp { background: #25D366; }

.modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 20px;
}

.modal.active { display: flex; }

.modal-content {
  background: var(--white);
  max-width: 640px; width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 36px;
  position: relative;
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--gray-light); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem;
}

.modal-content .modal-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; margin-bottom: 20px; color: var(--dark); }

.modal-content p { margin-bottom: 10px; color: var(--gray-dark); font-size: 0.95rem; }

.modal-content strong { color: var(--dark); }

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { margin-bottom: 40px; }
  .nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); flex-direction: column; gap: 0; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
  .nav ul.active { display: flex; }
  .nav ul li { width: 100%; }
  .nav ul li a { display: block; padding: 12px 0; width: 100%; }
  .nav .btn-cta-nav { width: 100%; text-align: center; margin-top: 10px; }
  .menu-toggle { display: block; }
  .hero { padding-top: 120px; padding-bottom: 60px; min-height: auto; }
  .hero-content h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .devis-hero-card { padding: 24px; }
  .float-ctas { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .service-card { flex: 1 1 100%; }
  .btn { padding: 14px 24px; font-size: 0.95rem; }
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; color: var(--primary); font-size: 1.1rem; cursor: pointer;
}

.logo img { height: 44px; width: auto; }

.nav a {
  color: var(--gray-dark); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s ease; cursor: pointer;
}

.nav a:hover { color: var(--primary); }

.btn-cta-nav {
  background: var(--secondary); color: var(--white) !important;
  padding: 10px 22px; border-radius: 8px; font-weight: 600;
  transition: all 0.2s ease;
}

.btn-cta-nav:hover { background: var(--secondary-dark); transform: translateY(-2px); }

.menu-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; color: var(--primary); cursor: pointer;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%), url('/storage/generated/318/service_3_1776602537_69e4cda9a6f9d.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-breadcrumb {
  display: flex; gap: 10px; font-size: 0.9rem;
  margin-bottom: 20px; opacity: 0.9;
}

.hero-breadcrumb a { color: var(--white); text-decoration: underline; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px; max-width: 900px;
}

.hero p { font-size: 1.2rem; max-width: 750px; margin-bottom: 35px; opacity: 0.95; }

.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 10px;
  font-weight: 600; font-size: 1rem;
  transition: all 0.2s ease; cursor: pointer; border: none;
}

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

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover { background: var(--bg-light); transform: translateY(-3px); }

section { padding: 80px 0; }

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--primary); margin-bottom: 15px;
}

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

.presentation { background: var(--white); }

.presentation-content { max-width: 900px; margin: 0 auto; }

.presentation-content p { color: var(--gray-dark); margin-bottom: 22px; font-size: 1.05rem; }

.presentation-content p:first-of-type::first-letter {
  font-size: 3.5rem; font-weight: 800; color: var(--primary);
  float: left; line-height: 1; padding: 4px 12px 0 0;
}

.prestations { background: var(--bg-light); }

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.prestation-card {
  background: var(--white); padding: 35px 28px; border-radius: 14px;
  box-shadow: var(--shadow); transition: all 0.3s ease;
  border-top: 4px solid var(--secondary);
}

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

.prestation-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; margin-bottom: 20px;
}

.prestation-card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 12px; font-weight: 700; }

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

.methodology { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; position: relative;
}

.step { text-align: center; padding: 30px 20px; position: relative; }

.step-number {
  width: 70px; height: 70px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 800; box-shadow: var(--shadow);
}

.step h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; font-weight: 700; }

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

.why-us { background: var(--bg-light); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.advantage-card {
  background: var(--white); padding: 32px 25px; border-radius: 14px;
  text-align: center; box-shadow: var(--shadow); transition: all 0.3s ease;
}

.advantage-card:hover { transform: translateY(-5px); }

.advantage-icon {
  width: 75px; height: 75px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 18px;
}

.advantage-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 10px; font-weight: 700; }

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

.faq { background: var(--white); }

.faq-list { max-width: 850px; margin: 0 auto; }

.faq-item {
  background: var(--bg-light); border-radius: 12px;
  margin-bottom: 15px; overflow: hidden; transition: all 0.2s ease;
}

.faq-item:hover { box-shadow: var(--shadow); }

.faq-question {
  padding: 22px 28px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; color: var(--primary); font-size: 1.05rem; user-select: none;
}

.faq-question i { transition: transform 0.3s ease; }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 28px; color: var(--gray-dark);
}

.faq-item.active .faq-answer { max-height: 300px; padding: 0 28px 22px; }

.zones { background: var(--bg-light); }

.zones-content { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.zones-text p { color: var(--gray-dark); margin-bottom: 18px; font-size: 1.05rem; }

.zones-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin-top: 20px;
}

.zone-tag {
  background: var(--white); padding: 10px 15px; border-radius: 8px;
  color: var(--primary); font-weight: 500; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow);
}

.zone-tag i { color: var(--secondary); }

.other-services { background: var(--white); }

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

.service-link {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); padding: 28px; border-radius: 14px;
  transition: all 0.3s ease;
  display: flex; align-items: center; gap: 15px; cursor: pointer;
}

.service-link:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-link i:first-child { font-size: 1.8rem; color: var(--secondary); }

.service-link-content { flex: 1; }

.service-link h3 { font-size: 1.05rem; margin-bottom: 4px; font-weight: 700; }

.service-link span { font-size: 0.85rem; opacity: 0.85; }

.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}

.cta-final::before {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 50%; filter: blur(80px);
}

.cta-final .container { position: relative; z-index: 1; }

.cta-final h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 18px; }

.cta-final p {
  font-size: 1.15rem; margin-bottom: 35px; opacity: 0.95;
  max-width: 650px; margin-left: auto; margin-right: auto;
}

.cta-final .hero-cta { justify-content: center; }

.footer { background: var(--dark); color: var(--white); padding: 70px 0 25px; }

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

.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; font-weight: 800; font-size: 1.1rem;
}

.footer-logo img { height: 44px; width: auto; }

.footer-col p { color: #cbd5e1; font-size: 0.95rem; }

.footer-title {
  display: block; font-weight: 700; margin-bottom: 18px;
  color: var(--white); font-size: 1.05rem;
}

.footer-col ul a {
  color: #cbd5e1; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s ease; cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 15px;
  color: #94a3b8; font-size: 0.9rem;
}

.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.footer-links a { color: #cbd5e1; transition: color 0.2s ease; cursor: pointer; }

.footer-links a:hover { color: var(--secondary); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 768px) {
  .nav ul {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 25px; box-shadow: var(--shadow);
    transform: translateY(-150%); transition: transform 0.3s ease; gap: 15px;
  }
  .nav ul.active { transform: translateY(0); }
  .menu-toggle { display: block; }
  section { padding: 60px 0; }
  .zones-content { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 0 60px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .zones-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%), url('/storage/generated/318/service_1_1776602486_69e4cd76a350f.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%), url('/storage/generated/318/service_2_1776602511_69e4cd8f0b4fa.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%), url('/storage/generated/318/service_5_1776602585_69e4cdd9a8b58.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  background-image: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%), url('/storage/generated/318/service_4_1776602561_69e4cdc1d6654.webp');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero {
  position: relative;
  padding: 180px 0 100px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%), url('https://webflash.pro/storage/generated/318/hero_1776602457_69e4cd591f7af.webp') center/cover no-repeat;
  z-index: 0;
}

.page-hero::after {
  content: ''; position: absolute; bottom: -100px; right: -50px;
  width: 300px; height: 300px;
  background: var(--secondary);
  opacity: 0.15;
  transform: rotate(45deg);
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}

.page-hero h1 .highlight { color: var(--secondary); }

.page-hero p { font-size: 1.15rem; opacity: 0.95; max-width: 640px; margin: 0 auto; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  margin-top: 26px;
}

.breadcrumb a { color: var(--white); transition: color 0.3s; }

.breadcrumb a:hover { color: var(--secondary); }

.breadcrumb i { font-size: 0.7rem; color: var(--secondary); }

.breadcrumb span { opacity: 0.85; }

.sitemap-group {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  margin-bottom: 32px;
  transition: all 0.3s;
  border-left: 5px solid var(--secondary);
}

.sitemap-group:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.sitemap-group-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--gray-light);
}

.sitemap-group-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.25);
}

.sitemap-group-header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.sitemap-group-header p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 2px;
}

.sitemap-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sitemap-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-light);
  color: var(--dark);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-light);
  transition: all 0.3s;
}

.sitemap-chip i { color: var(--secondary); font-size: 0.8rem; transition: transform 0.3s; }

.sitemap-chip:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(30, 58, 138, 0.25);
}

.sitemap-chip:hover i { color: var(--white); transform: translateX(3px); }

.sitemap-sub {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 16px;
  border: 1px dashed var(--gray-light);
}

.sitemap-sub-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 14px;
}

.sitemap-sub-title i { color: var(--secondary); }

.sitemap-chip.home {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  font-weight: 700;
}

.sitemap-chip.home i { color: var(--white); }

.sitemap-chip.home:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: 50%;
}

.final-cta h3 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; position: relative; z-index: 2; }

.final-cta p { opacity: 0.95; margin-bottom: 24px; position: relative; z-index: 2; }

.final-cta .btn { position: relative; z-index: 2; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { margin-bottom: 40px; }
  .nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); flex-direction: column; gap: 0; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
  .nav ul.active { display: flex; }
  .nav ul li { width: 100%; }
  .nav ul li a { display: block; padding: 12px 0; width: 100%; }
  .nav .btn-cta-nav { width: 100%; text-align: center; margin-top: 10px; }
  .menu-toggle { display: block; }
  .page-hero { padding: 130px 0 70px; }
  .sitemap-group { padding: 28px 22px; }
  .sitemap-group-header { flex-direction: row; align-items: flex-start; }
  .sitemap-group-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .sitemap-group-header h2 { font-size: 1.15rem; }
  .sitemap-chip { padding: 9px 14px; font-size: 0.85rem; }
  .sitemap-sub { padding: 18px; }
  .final-cta { padding: 36px 24px; }
  .float-ctas { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding-left: 16px; padding-right: 16px; }
}