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

:root {
  --green:       #1b5e20;
  --green-mid:   #2e7d32;
  --green-light: #43a047;
  --green-pale:  #e8f5e9;
  --red:         #c62828;
  --yellow:      #f9a825;
  --dark:        #1a1a1a;
  --gray:        #f5f5f5;
  --text:        #333;
  --text-light:  #666;
  --white:       #fff;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn--primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,50,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn--cta {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  font-weight: 700;
}
.btn--cta:hover {
  background: #f57f17;
  border-color: #f57f17;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,168,37,0.4);
}
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon { font-size: 28px; }
.logo__name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.logo__dept {
  background: var(--red);
  color: white;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 14px;
}
.logo__tag {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav a:hover { color: var(--green); }
.nav a:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27,94,32,0.93) 0%, rgba(21,45,23,0.97) 60%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 24px;
  color: var(--white);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #a5d6a7;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__subtitle strong { color: #a5d6a7; }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== VAN SECTION ===== */
.van-section {
  background: var(--green-pale);
  padding: 72px 0;
}
.van-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.van-section__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}
.van-section__text h2 span {
  color: var(--red);
}
.van-section__text p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.van-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.van-badges span {
  background: white;
  border: 1px solid #c8e6c9;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.van-section__img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
@media (max-width: 768px) {
  .van-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .van-section__text { order: 1; }
  .van-section__img { order: 0; }
}

/* ===== URGENCE BAR ===== */
.urgence-bar {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}
.urgence-bar a {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--green {
  background: var(--green-pale);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section--dark .section__title { color: var(--white); }
.section__subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.6); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.service-card__icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green);
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}
.service-card ul li {
  font-size: 13px;
  font-weight: 500;
  color: var(--green-mid);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ===== ARGUMENTS ===== */
.arguments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.argument {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.argument:hover { background: rgba(255,255,255,0.09); }
.argument__icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}
.argument h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #a5d6a7;
}
.argument p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--gray); }

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.reviews-score__stars {
  color: #f9a825;
  font-size: 28px;
  letter-spacing: 2px;
}
.reviews-score__note {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
}
.reviews-score__count {
  font-size: 14px;
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #eee;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-mid);
  color: white;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__header > div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__header strong {
  font-size: 14px;
  color: var(--dark);
}
.review-card__date {
  font-size: 12px;
  color: var(--text-light);
}
.review-card__stars {
  color: #f9a825;
  font-size: 16px;
  letter-spacing: 1px;
  margin-left: auto;
}
.review-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-card__source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-light);
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.review-card--cta {
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  border: 1px solid #a5d6a7;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.review-cta__icon {
  font-size: 48px;
}
.review-card--cta p {
  font-style: normal;
  font-size: 16px;
}

/* ===== ZONE ===== */
.zone-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.map-placeholder {
  background: linear-gradient(135deg, var(--green-pale), #c8e6c9);
  border: 2px dashed #a5d6a7;
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--green);
}
.map-icon { font-size: 56px; }
.map-placeholder strong { font-size: 20px; font-weight: 700; }
.map-placeholder span { font-size: 14px; color: var(--green-mid); }

.zone-cities h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--green);
}
.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.cities-grid span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  background: var(--green-pale);
  border-radius: 8px;
  transition: background var(--transition);
}
.cities-grid span:hover { background: #c8e6c9; }
.zone-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  background: #fff3e0;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--yellow);
}

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}
.contact-info > p {
  color: var(--text-light);
  margin-bottom: 28px;
}
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-item__icon { font-size: 22px; flex-shrink: 0; }
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
.contact-item a, .contact-item span { font-size: 15px; font-weight: 600; color: var(--green); }
.contact-item a:hover { text-decoration: underline; }

/* ===== FORM ===== */
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--gray);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: white;
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__brand strong { color: white; font-size: 16px; }
.footer__brand span { display: block; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.footer__links a {
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.footer__links a:hover { color: #a5d6a7; }
.footer__legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .zone-wrapper,
  .contact-wrapper { grid-template-columns: 1fr; }
  .zone-wrapper { gap: 32px; }
  .map-placeholder { height: 220px; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; inset: 72px 0 0; background: white; flex-direction: column; justify-content: flex-start; padding: 32px 24px; gap: 20px; z-index: 99; }
  .nav.open { display: flex; }
  .nav a { font-size: 18px; font-weight: 600; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .hero__content { padding: 60px 24px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .services-grid,
  .arguments-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .cities-grid { grid-template-columns: 1fr; }
}
