/* ── Hero ─────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #0b1f0e 55%, #111827 100%);
  position: relative;
}

/* ── Hero ant decoration ─────────────────────────── */
/* Separate layer so overflow:hidden never clips the autocomplete dropdown */
.hero-ant-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-ant {
  position: absolute;
  width: 120px;
  /* head originally points up; rotate -45deg tilts it upper-right
     so the ant walks diagonally from the bottom-left toward "Besoin d'aide?" */
  transform: rotate(-45deg);
  transform-origin: center center;
  opacity: 0.18;
  /* anchor at bottom-left corner, partially outside so it looks like it is entering */
  bottom: -30px;
  left: -20px;
}
@media (max-width: 767px) {
  .hero-ant { width: 90px; bottom: -20px; left: -14px; }
}

/* ── Hero illustration (desktop) ─────────────────── */
.hero-illus-wrap {
  align-items: center;
  justify-content: center;
  flex: 0 0 40%;
  max-width: 40%;
}
.hero-illus-img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(74, 222, 128, 0.12));
}



.hero-illustration img {
  width: 480px;
  max-width: min(100%, 200px);
  height: auto;
  border-radius: 1rem;
}

/* Hero search form — mobile/tablet: centered; desktop: left-aligned with headline */
.hero-search-form {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-text {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .hero-search-form {
    margin-left: 0;
    margin-right: 0;
    max-width: 600px;
  }
}

/* ── Category tabs ────────────────────────────────── */
.categories-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  padding-bottom: 0.75rem;
}
.category-btn.active {
  border-bottom-color: #16a34a;
}
.category-btn.active span {
  color: #15803d;
}
.category-btn:hover {
  border-bottom-color: #86efac;
}

/* ── Subcategory pills ────────────────────────────── */
.sub-pill {
  display: inline-block;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-size: 0.75rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.sub-pill:hover {
  border-color: #16a34a;
  background: #f0fdf4;
  color: #15803d;
}
.sub-pill-hidden {
  display: none;
}
.sub-pill-more {
  display: inline-block;
  border: none;
  background: none;
  color: #16a34a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.5rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ── Featured card ────────────────────────────────── */
.featured-card {
  min-height: 280px;
}

/* ── Project cards ────────────────────────────────── */
.project-card {
  display: block;
  text-decoration: none;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.project-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.project-img {
  height: 160px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.project-card:hover .project-img img {
  transform: scale(1.05);
}

/* ── Review cards ─────────────────────────────────── */
.review-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* ── Testimonials mobile carousel ─────────────────── */
.testimonials-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.75rem;
  margin-bottom: -0.75rem;
}
.testimonials-scroll::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  scroll-snap-align: start;
  min-width: calc(100vw - 4rem);
  max-width: calc(100vw - 4rem);
  flex-shrink: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 768px) {
  .testimonials-scroll {
    display: grid;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    flex-shrink: unset;
  }
}

/* ── Trust section ────────────────────────────────── */
.trust-item {
  padding: 1.5rem;
}
.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── How it works ─────────────────────────────────── */
.how-it-works-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.75rem 1rem;
  margin: -0.75rem -1rem;
}
.how-it-works-scroll::-webkit-scrollbar {
  display: none;
}
.how-it-works-card {
  scroll-snap-align: start;
  min-width: calc(100vw - 2rem);
  max-width: calc(100vw - 2rem);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .how-it-works-scroll {
    display: grid;
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }
  .how-it-works-card {
    min-width: unset;
    max-width: unset;
    flex-shrink: unset;
  }
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: #16a34a;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ── Service pills (section 11) ───────────────────── */
.service-pill {
  display: inline-block;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.service-pill:hover {
  border-color: #16a34a;
  background: #f0fdf4;
  color: #15803d;
}

/* ── Trust cards — clickable variant ─────────────────── */
.trust-item--link {
  display: block;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.trust-item--link:hover {
  border-color: #16a34a;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.10);
  transform: translateY(-2px);
}

/* ── Problem section cards ───────────────────────────── */
.problem-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.problem-card:hover {
  border-color: #86efac;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.08);
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.problem-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.375rem;
}
.problem-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Problem cards — scroll container ───────────── */
.problems-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
  /* hide scrollbar — visual noise on mobile */
  scrollbar-width: none;
}
.problems-scroll::-webkit-scrollbar {
  display: none;
}
/* Each card ~85% wide so the next card peeks clearly */
.problems-scroll > .problem-card {
  flex-shrink: 0;
  width: 85%;
  scroll-snap-align: start;
}
/* sm (640px+): 2-column grid, no scroll */
@media (min-width: 640px) {
  .problems-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .problems-scroll > .problem-card {
    width: auto;
  }
}

/* ── Scroll hint fade wrapper ────────────────────── */
.problems-scroll-wrap {
  position: relative;
}
.problems-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.5rem; /* align with scroll container, not hint text */
  width: 3.5rem;
  background: linear-gradient(to left, rgba(255,255,255,0.92), transparent);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 640px) {
  .problems-scroll-wrap::after { display: none; }
}
/* lg (1024px+): 4-column grid */
@media (min-width: 1024px) {
  .problems-scroll {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Problem cards — image variant ───────────────── */
.problem-card--img {
  padding: 0;
  overflow: hidden;
}
.problem-card-img-wrap {
  height: 180px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .problem-card-img-wrap {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .problem-card-img-wrap {
    height: 150px;
  }
}
.problem-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 640px) {
  .problem-card-img {
    object-fit: contain;
  }
}
.problem-card-body {
  padding: 1.125rem 1.25rem 1.5rem;
}

/* ── About section — scroll container ───────────── */
.about-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.about-scroll::-webkit-scrollbar {
  display: none;
}
.about-scroll > .about-card {
  flex-shrink: 0;
  width: 85%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .about-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .about-scroll > .about-card {
    width: auto;
  }
}

.about-scroll-wrap {
  position: relative;
}
.about-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.5rem;
  width: 3.5rem;
  background: linear-gradient(to left, rgba(249,250,251,0.92), transparent);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .about-scroll-wrap::after { display: none; }
}

/* ── Scroll hint text ────────────────────────────── */
.scroll-hint {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.625rem;
  letter-spacing: 0.03em;
}

/* ── About section cards ─────────────────────────────── */
.about-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.about-card-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}
.about-card-icon-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.about-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.about-card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ── About card — amber variant ──────────────────── */
.about-card--amber {
  background: #ffffff;
  border-color: #e5e7eb;
}

/* ── How It Works — section ──────────────────────────── */
.hiw-section {
  background: linear-gradient(160deg, #f0fdf4 0%, #fefce8 60%, #f0fdf4 100%);
  padding: 5rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.hiw-section--dark {
  background: #0f172a;
  border-color: #1e293b;
}

/* ── How It Works — 2-col layout ─────────────────────── */
.hiw-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hiw-layout {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
}

/* ── How It Works — step list ────────────────────────── */
.hiw-step-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  flex: 1;
  max-width: 480px;
}
.hiw-step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.hiw-step-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  min-width: 3.5rem;
  flex-shrink: 0;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.hiw-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.hiw-step-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.65;
}

/* ── How It Works — phone mockup ─────────────────────── */
.hiw-phone-wrap {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.hiw-phone {
  width: 220px;
  height: 430px;
  background: #1e293b;
  border-radius: 38px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65), 0 0 0 2px #334155;
  position: relative;
  overflow: hidden;
}
.hiw-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 22px;
  background: #1e293b;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.hiw-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #f0fdf4;
}
.hiw-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hiw-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.hiw-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #16a34a, #4ade80);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.hiw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.12);
  border-color: #bbf7d0;
}
.hiw-card:hover::before {
  opacity: 1;
}

.hiw-step-badge {
  font-size: 3.5rem;
  font-weight: 800;
  color: #dcfce7;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.hiw-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.hiw-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.hiw-card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  flex: 1;
}

.hiw-card-footer {
  margin-top: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, #f0fdf4, #bbf7d0);
  border-radius: 999px;
}

/* ── Why Choose — one-at-a-time scroll on mobile ─────── */
.why-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.75rem;
  margin-bottom: -0.75rem;
}
.why-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .why-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.why-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  min-width: calc(100vw - 2rem);
  max-width: calc(100vw - 2rem);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
@media (min-width: 768px) {
  .why-card { min-width: unset; max-width: unset; flex-shrink: unset; }
}
.why-card:hover {
  border-color: #86efac;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.08);
}
.why-card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.why-card-img-wrap {
  height: 10rem;
  overflow: hidden;
}
.why-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.why-card:hover .why-card-img {
  transform: scale(1.05);
}
.why-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.why-card-body {
  padding: 1.125rem 1.25rem 1.5rem;
}
.why-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.375rem;
}
.why-card-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Why Choose — featured dark card ─────────────────── */
.why-featured-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #1e293b;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 1.5rem;
}
.why-featured-card:hover {
  background: #172032;
}
@media (max-width: 767px) {
  .why-featured-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    align-items: flex-start;
  }
}
.why-featured-icon {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}
.why-featured-body {
  flex: 1;
}
.why-featured-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.why-featured-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.why-featured-link {
  display: inline-block;
  color: #4ade80;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ── FAQ accordion ───────────────────────────────────── */
.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.875rem;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: #86efac;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}
.faq-question:hover { background: #f9fafb; }
.faq-chevron {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.2s;
}
.faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}

/* ── Why Choose — Carousel ────────────────────────────── */
.why-carousel-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
@media (max-width: 480px) {
  .why-carousel-wrap { padding: 0 2.5rem; }
}

.why-carousel-track {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .why-carousel-track { min-height: 280px; }
}

.why-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.why-slide--active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .why-slide { transition: opacity 0.15s; transform: none !important; }
}

.why-slide-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 2px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}

.why-slide-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.why-slide-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.625rem;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .why-slide-title { font-size: 1.25rem; }
}

.why-slide-desc {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.65;
  max-width: 440px;
}
@media (max-width: 480px) {
  .why-slide-desc { font-size: 0.875rem; }
}

/* Nav buttons */
.why-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
  z-index: 2;
  flex-shrink: 0;
}
.why-nav-btn:hover {
  border-color: #16a34a;
  color: #16a34a;
  box-shadow: 0 2px 8px rgba(22,163,74,0.15);
}
.why-nav-btn:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}
.why-nav-btn--prev { left: 0; }
.why-nav-btn--next { right: 0; }

/* Dots */
.why-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.why-dot.active,
.why-dot[aria-selected="true"] {
  background: #16a34a;
  transform: scale(1.35);
}
.why-dot:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}

/* Progress bar */
.why-progress-track {
  max-width: 200px;
  margin: 0.875rem auto 0;
  height: 3px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}
.why-progress-fill {
  height: 100%;
  background: #16a34a;
  border-radius: 9999px;
  transition: width 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .why-progress-fill { transition: none; }
}
