/* ===== ECO SYSTEME - THEME BLANC & VERT MODERNE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  --green-50: #ecfdf8;
  --green-100: #d1faf0;
  --green-200: #a7f3e0;
  --green-300: #6ee7c0;
  --green-400: #34d3a0;
  --green-500: #0d9488;
  --green-600: #0f766e;
  --green-700: #115e59;
  --green-800: #134e4a;
  --green-900: #0c3c38;
  --dark: #0f3d3e;
  --dark-2: #134e4a;
  --text: #1e293b;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f7fafa;
  --bg-section: #ecfdf8;
  --border: #e2e8f0;
  --border-green: rgba(13,148,136,0.15);
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-green: 0 8px 30px rgba(13,148,136,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; color: var(--text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a,
.nav-dropdown > .nav-dropdown-trigger {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
}
.nav-links > a:hover,
.nav-dropdown:hover > .nav-dropdown-trigger {
  color: var(--green-700);
  background: var(--green-50);
}
.nav-links > a.active,
.nav-dropdown.active > .nav-dropdown-trigger {
  color: var(--green-700);
  background: var(--green-50);
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger .arrow {
  font-size: 0.55rem;
  transition: transform 0.3s;
}
.nav-dropdown:hover .arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  color: var(--green-700);
  background: var(--green-50);
}
.nav-dropdown-menu a .dd-icon {
  font-size: 1.1rem;
  width: 28px;
  text-align: center;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--green-50);
  border: 1px solid var(--border-green);
  white-space: nowrap;
  transition: var(--transition);
}
.nav-phone:hover {
  background: var(--green-100);
}
.nav-phone svg {
  width: 14px; height: 14px;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--green-600) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-green);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--green-700) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(22,163,74,0.25) !important;
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--green-600);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(22,163,74,0.25);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  border: 2px solid var(--green-600);
  color: var(--green-700);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HERO (pages internes) ===== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--green-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 80px;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-300);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 .highlight {
  color: var(--green-300);
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.page-hero .hero-checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.page-hero .hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
}
.page-hero .hero-check .check-icon {
  width: 20px; height: 20px;
  background: rgba(134,239,172,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--green-300);
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.page-hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.page-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,78,59,0.2), transparent);
  z-index: 1;
}

/* ===== SECTION STYLES ===== */
section { padding: 80px 0; }
section.bg-soft { background: var(--bg-soft); }
section.bg-green { background: var(--bg-section); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-600);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 3px;
  background: var(--green-500);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: var(--green-50);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-200), var(--green-400), var(--green-200));
  border-radius: 2px;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 2;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.5; }

/* ===== LIST CHECKS ===== */
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--green-50);
  border: 1px solid var(--border-green);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin: 24px 0;
}
.info-box h4 {
  color: var(--green-800);
  font-size: 1rem;
  margin-bottom: 8px;
}
.info-box p {
  color: var(--text-mid);
  font-size: 0.92rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 40px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-600);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 6px;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-2), var(--green-800));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.cta-section h2 .highlight { color: var(--green-300); }
.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ===== MAP ===== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 400px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ARTICLE CARDS ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.article-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--green-50);
}
.article-card-body {
  padding: 24px;
}
.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
}
.article-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-600);
  transition: gap 0.3s;
}
.article-link:hover { gap: 12px; }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
  margin-top: 16px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--green-400); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--green-400); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== DPE SCALE ===== */
.dpe-scale {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
.dpe-bar {
  display: flex;
  align-items: center;
  height: 36px;
  border-radius: 4px 20px 20px 4px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 16px;
  position: relative;
}
.dpe-bar.a { background: #319834; width: 30%; }
.dpe-bar.b { background: #33cc31; width: 40%; }
.dpe-bar.c { background: #cbfc33; width: 50%; color: #333; }
.dpe-bar.d { background: #fbfe06; width: 60%; color: #333; }
.dpe-bar.e { background: #fccc04; width: 70%; color: #333; }
.dpe-bar.f { background: #fc9935; width: 80%; }
.dpe-bar.g { background: #fc1b1c; width: 100%; }
.dpe-bar .dpe-label {
  position: absolute;
  right: -50px;
  font-size: 0.7rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-hero-grid, .two-col { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* NAVBAR MOBILE */
  .nav-inner { height: 64px; }
  .nav-logo img { height: 42px; }
  /* Mobile menu - dropdown from top */
  #navLinks {
    display: none;
  }
  #navLinks.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 999999;
    padding: 8px 16px 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 16px 16px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  #navLinks.open > a,
  #navLinks.open > .nav-dropdown > .nav-dropdown-trigger {
    font-size: 0.9rem !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: #1e293b !important;
    border-radius: 0 !important;
    background: none !important;
  }
  #navLinks.open > a.active,
  #navLinks.open > .nav-dropdown > .nav-dropdown-trigger.active { color: var(--green-600) !important; }
  #navLinks.open .nav-phone {
    padding: 10px 0 !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-radius: 0 !important;
    font-size: 0.9rem !important;
  }
  #navLinks.open .nav-cta {
    margin-top: 10px !important;
    padding: 11px 20px !important;
    font-size: 0.88rem !important;
    border-radius: 10px !important;
    text-align: center;
    justify-content: center;
  }
  #navLinks.open .nav-dropdown { border-bottom: 1px solid #f1f5f9; }
  #navLinks.open .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 6px 16px !important;
    min-width: auto !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: #f8faf9 !important;
    margin: 2px -16px 0 !important;
    padding: 6px 16px 6px 32px !important;
  }
  #navLinks.open .nav-dropdown.mobile-open .nav-dropdown-menu { display: block !important; }
  #navLinks.open .nav-dropdown-menu a { font-size: 0.85rem !important; padding: 8px 0 !important; }
  .nav-close {
    display: none;
    align-self: flex-end;
    width: 26px; height: 26px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    color: #475569;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    flex-shrink: 0;
  }
  #navLinks.open .nav-close { display: flex; }
  .nav-links > a,
  .nav-dropdown > .nav-dropdown-trigger {
    font-size: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    color: #1e293b;
    font-weight: 500;
    width: 100%;
    text-align: left;
  }
  .nav-links > a:hover,
  .nav-dropdown > .nav-dropdown-trigger:hover { background: none; color: var(--green-600); }
  .nav-links > a.active { background: none; color: var(--green-600); font-weight: 700; }
  .nav-toggle { display: flex; }
  .nav-phone {
    margin-top: 16px;
    padding: 12px 0 !important;
    border-radius: 0 !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: var(--green-600) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
  }
  .nav-cta {
    margin-top: 20px !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
  }
  .nav-dropdown { border-bottom: 1px solid #f1f5f9; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 20px;
    min-width: auto;
    display: none;
    background: #f8faf9;
    margin: 4px -24px 0;
    padding: 8px 24px 8px 40px;
  }
  .nav-dropdown-menu a {
    padding: 10px 0;
    font-size: 0.92rem;
    color: #475569;
    border-radius: 0;
  }
  .nav-dropdown-menu a:hover { background: none; color: var(--green-600); }
  .nav-dropdown.mobile-open .nav-dropdown-menu { display: block; }
  .nav-dropdown:hover .nav-dropdown-menu { opacity: 0; visibility: hidden; }
  .nav-dropdown.mobile-open .nav-dropdown-menu { opacity: 1; visibility: visible; }
  .nav-dropdown .arrow { margin-left: auto; }

  /* HERO MOBILE */
  .page-hero { padding: 90px 0 60px; }
  .page-hero h1 { font-size: 1.6rem !important; }
  .page-hero p { font-size: 0.9rem; }
  .page-hero-badge { font-size: 0.7rem; padding: 6px 14px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-image { display: none; }
  .hero-checks { gap: 10px; }
  .hero-check { font-size: 0.8rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .hero-buttons .btn-white { width: 100%; justify-content: center; text-align: center; }

  /* SECTIONS MOBILE */
  section { padding: 50px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.4rem !important; }
  .section-subtitle { font-size: 0.9rem; }
  .section-label { font-size: 0.7rem; }
  .section-header { margin-bottom: 30px; }

  /* GRIDS MOBILE */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 100%; gap: 20px; }
  .step-number { width: 52px; height: 52px; font-size: 1.1rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 100%; }
  .articles-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 1.8rem; }

  /* FOOTER MOBILE */
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* FORMS MOBILE */
  .form-row { grid-template-columns: 1fr; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 12px 14px; font-size: 0.88rem; }

  /* CTA MOBILE */
  .cta-section { padding: 50px 0; }
  .cta-section h2 { font-size: 1.4rem !important; }
  .cta-section p { font-size: 0.9rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-white { width: 100%; max-width: 300px; justify-content: center; }

  /* BUTTONS MOBILE */
  .btn-primary, .btn-secondary, .btn-white { padding: 12px 24px; font-size: 0.9rem; }

  /* MAP MOBILE */
  .map-container { height: 280px; }

  /* CHECK LIST MOBILE */
  .check-list li { font-size: 0.88rem; padding: 8px 0; }
  .info-box { padding: 18px; }
  .info-box h4 { font-size: 0.9rem; }
  .info-box p { font-size: 0.85rem; }
}
