/* ============================================
   ARVOLUOTTO — accueil.css
   Styles propres à la page d'accueil uniquement.
   ============================================ */

/* ---------- HERO ---------- */
.hero {
  padding: 96px 0 100px;
  background: radial-gradient(circle at 15% 20%, #0F3320 0%, var(--vert-nuit) 55%, #081C11 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--rayon-pill);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.hero h1 .accent { color: #6FE3A4; }
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero .btn-cta { background: #FFFFFF; color: var(--vert-fonce); }
.hero .btn-cta:hover { background: var(--or); color: var(--vert-nuit); }
.btn-secondary {
  font-family: var(--police-titres);
  font-weight: 600;
  font-size: 15px;
  color: var(--vert-fonce);
  padding: 12px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover { color: var(--vert-pur); }
.hero .btn-secondary { color: #FFFFFF; }
.hero .btn-secondary:hover { color: var(--or); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0, 166, 81, 0.35) 0%, rgba(0, 166, 81, 0) 70%);
  filter: blur(10px);
}
.hero-visual svg { position: relative; width: 100%; max-width: 380px; height: auto; }

/* Animation du sceau ARVOLUOTTO dans le hero : les deux bras glissent et se rejoignent */
.hero-arm-left {
  transform: translateX(-60px);
  opacity: 0;
  animation: armIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}
.hero-arm-right {
  transform: translateX(60px);
  opacity: 0;
  animation: armIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}
.hero-seal {
  transform: scale(0);
  opacity: 0;
  transform-origin: center;
  animation: sealIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards,
             sealPulse 2.6s ease-in-out 1.4s infinite;
}
.hero-ring {
  opacity: 0;
  transform-origin: center;
  animation: ringPulse 2.6s ease-out 1.4s infinite;
}
@keyframes armIn { to { transform: translateX(0); opacity: 1; } }
@keyframes sealIn { to { transform: scale(1); opacity: 1; } }
@keyframes sealPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes ringPulse {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* ---------- TRUST BAR ---------- */
.trust-bar { background: var(--vert-pur); }
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 24px;
  text-align: center;
}
.trust-stat .num {
  display: block;
  font-family: var(--police-titres);
  font-weight: 700;
  font-size: 28px;
  color: #FFFFFF;
}
.trust-stat .label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.trust-footnote { text-align: center; font-size: 12px; color: rgba(255,255,255,0.65); padding: 10px 24px 0; background: var(--vert-pur); margin: 0; }

/* ---------- Sections spécifiques à l'accueil ---------- */

/* ---------- STEPS (Miten se toimii) : voir style.css (global) ---------- */

/* ---------- BENEFITS (Miksi valita meidät) ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit-card { text-align: center; padding: 8px; }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(0, 166, 81, 0.1);
  color: var(--vert-fonce);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: #5A6B5E; line-height: 1.6; margin: 0; }

/* ---------- PARTENAIRES ---------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.partner-badge {
  height: 84px;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  display: flex; align-items: center; justify-content: center;
  color: #9AA79D;
  font-family: var(--police-titres);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  filter: grayscale(1);
  opacity: 0.85;
  box-shadow: 0 6px 20px rgba(6, 30, 17, 0.18);
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
  background: #FFFFFF;
}
.partner-badge:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); color: var(--vert-fonce); }

/* ---------- TÉMOIGNAGES (style Trustpilot) ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: -16px 0 44px;
}
.stars-row { display: inline-flex; gap: 4px; }
.star-sq {
  width: 24px; height: 24px;
  background: var(--vert-pur);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.star-sq svg { width: 14px; height: 14px; fill: #FFFFFF; }
.reviews-summary-text { font-size: 15px; color: #384038; }
.reviews-summary-text strong { font-family: var(--police-titres); }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 26px;
}
.testimonial-card .stars-row { margin-bottom: 16px; }
.testimonial-card .star-sq { width: 20px; height: 20px; }
.testimonial-card .star-sq svg { width: 12px; height: 12px; }
.testimonial-title { font-family: var(--police-titres); font-weight: 700; font-size: 15px; margin: 0 0 8px; color: var(--texte); }
.testimonial-card p.quote { font-size: 14px; line-height: 1.65; color: #4B594E; margin: 0 0 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--vert-fonce); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--police-titres); font-weight: 700; font-size: 13px;
  flex-shrink: 0;
}
.testimonial-author-info { display: flex; flex-direction: column; }
.testimonial-author .name-row { display: flex; align-items: center; gap: 5px; }
.testimonial-author .name { font-size: 14px; font-weight: 600; color: var(--texte); }
.testimonial-author .verified { color: var(--vert-pur); display: flex; align-items: center; }
.testimonial-author .verified svg { width: 14px; height: 14px; }
.testimonial-author .date { font-size: 12px; color: #9AA79D; }

/* ---------- FAQ TEASER : voir style.css (global) ---------- */

/* ---------- Reveal au scroll : voir style.css (global) ---------- */

/* ---------- À PROPOS (zigzag texte/image) ---------- */
.about-intro { margin-bottom: 56px; }
.about-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 72px;
}
.about-row:last-child { margin-bottom: 0; }
.about-row.reverse { flex-direction: row-reverse; }
.about-copy { flex: 1; }
.about-copy .about-label {
  display: block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--vert-pur); margin-bottom: 10px;
}
.about-copy h3 { font-size: clamp(22px, 2.6vw, 28px); color: var(--texte); margin-bottom: 16px; }
.about-copy p { font-size: 16px; line-height: 1.7; color: #4B594E; margin: 0 0 22px; }
.about-points { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #384038; }
.about-points .point-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 166, 81, 0.12);
  color: var(--vert-fonce);
  display: flex; align-items: center; justify-content: center;
}
.about-points .point-icon svg { width: 16px; height: 16px; }
.about-visual { flex: 1; display: flex; align-items: center; justify-content: center; }
.about-visual svg { width: 100%; max-width: 340px; height: auto; }

/* ---------- CHIFFRES CLÉS ---------- */
.stats-band { }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-block { text-align: center; }
.stat-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--or);
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-block .stat-num {
  display: block;
  font-family: var(--police-titres);
  font-weight: 800;
  font-size: 34px;
  color: #FFFFFF;
}
.stat-block .stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.stats-footnote { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); margin: 40px 0 0; }

/* ---------- NOS SERVICES ---------- */
.services-intro { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  padding: 30px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--ombre); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:nth-child(1) .service-icon { background: var(--vert-pur); }
.service-card:nth-child(2) .service-icon { background: var(--vert-fonce); }
.service-card:nth-child(3) .service-icon { background: var(--or); }
.service-card:nth-child(4) .service-icon { background: var(--vert-nuit); }
.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #5A6B5E; line-height: 1.6; margin: 0 0 16px; }
.service-link { font-size: 14px; font-weight: 600; color: var(--vert-fonce); display: inline-flex; align-items: center; gap: 4px; }
.service-link:hover { color: var(--vert-pur); }
.services-more { text-align: center; margin-top: 44px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .about-row, .about-row.reverse { flex-direction: column; gap: 32px; }
  .about-visual { order: -1; max-width: 260px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
