:root {
  --green: #1f5133;
  --green-dark: #143923;
  --green-light: #eaf5ee;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  padding-top: 76px;
}

.site-navbar {
  min-height: 76px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.navbar-brand {
  color: #111827;
  line-height: 1;
  font-size: 1.45rem;
}

.navbar-brand span {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}

.nav-link {
  font-weight: 600;
  color: #111827;
}

.btn-success {
  background: var(--green);
  border-color: var(--green);
}

.btn-success:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 720px;
  background: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.08)), url("/assets/img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.22), rgba(255,255,255,.05) 45%, rgba(255,255,255,.75));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 50px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.88);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.hero h1 {
  max-width: 900px;
  margin: 24px auto 18px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--green);
  display: block;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 500;
}

.compare-card {
  max-width: 1120px;
  margin: 70px auto 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 55px rgba(15,23,42,.18);
  text-align: left;
}

.compare-card h2 {
  text-align: center;
  font-weight: 850;
  margin-bottom: 4px;
}

.compare-card .intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-floating > .form-select {
  height: 68px;
  border-radius: 10px;
  border-color: var(--border);
}

.form-floating label {
  color: #374151;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
  color: #111827;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  color: #16a34a;
}

.section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-title h2 {
  font-weight: 900;
  letter-spacing: -.04em;
}

.benefit-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  transition: .2s ease;
  background: #fff;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15,23,42,.08);
}

.benefit-card i {
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dark);
}

.benefit-card p {
  color: #374151;
  margin-bottom: 0;
}

.guides {
  background: linear-gradient(180deg, #f7faf8, #fff);
}

.guide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 800;
}

.guide-link:hover {
  color: var(--green);
}

.disclaimer {
  background: var(--green-light);
  border-radius: 16px;
  padding: 24px;
  color: #16412a;
  font-size: .95rem;
}

.site-footer {
  background: linear-gradient(135deg, #102719, #1f5133);
  color: #fff;
  padding: 64px 0 28px;
}

.site-footer h3,
.site-footer h4 {
  font-weight: 800;
}

.site-footer h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

@media (max-width: 991px) {
  body {
    padding-top: 68px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 50px;
  }

  .compare-card {
    margin-top: 42px;
  }

  .trust-row {
    justify-content: flex-start;
    gap: 16px;
  }
}
.results-section {
  background: #fff;
}

.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.best-badge {
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .78rem;
  font-weight: 800;
}

.best-badge.secondary {
  background: #111827;
}

.offer-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.offer-logo-wrap {
  width: 82px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px;
}

.offer-logo {
  max-width: 68px;
  max-height: 44px;
  object-fit: contain;
}

.offer-logo-fallback {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.offer-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0;
}

.offer-type {
  color: var(--muted);
  font-size: .92rem;
}

.offer-description {
  color: #374151;
  min-height: 72px;
}

.offer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.offer-meta div {
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px;
}

.offer-meta span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-bottom: 4px;
}

.offer-meta strong {
  color: var(--green-dark);
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.offer-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.campaign-box {
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #14532d;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 18px;
}

.campaign-box strong,
.campaign-box span,
.campaign-box small {
  display: block;
}

.campaign-box small {
  color: #166534;
  margin-top: 4px;
}
.site-navbar {
  min-height: 72px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

/* LOGO */
.brand-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo span {
  color: var(--green);
}

/* NAV LINKS */
.nav-link {
  font-weight: 600;
  color: #111827;
}

/* MOBILE */
@media (max-width: 575px) {
  .brand-logo {
    font-size: 1.3rem;
  }
}
.offer-logo-wrap {
  width: 82px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 10px;
}

.offer-logo {
  max-width: 68px;
  max-height: 44px;
  object-fit: contain;
}

.recent-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 11px 13px;
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.recent-choice i {
  color: #ea580c;
}
.subpage-hero {
  background: linear-gradient(135deg, #f2f8f4, #ffffff);
  padding: 92px 0 64px;
}

.subpage-hero-inner {
  max-width: 850px;
}

.subpage-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
  margin: 22px 0 18px;
}

.subpage-hero p {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #374151;
  max-width: 760px;
}

.content-article {
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-article h2 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 42px 0 16px;
}

.content-article h2:first-child {
  margin-top: 0;
}

.content-article h3 {
  font-weight: 850;
}

.info-box {
  background: var(--green-light);
  border-left: 5px solid var(--green);
  border-radius: 14px;
  padding: 20px;
  margin: 28px 0;
  color: var(--green-dark);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.comparison-card i {
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.comparison-card h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
}

.comparison-card p {
  font-size: .95rem;
  color: #374151;
}

.comparison-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.steps-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.steps-list > div {
  display: flex;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}

.steps-list span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.steps-list h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.steps-list p {
  margin-bottom: 0;
  color: #374151;
}

.custom-table th {
  background: var(--green-light);
  color: var(--green-dark);
}

.cta-panel {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  margin: 40px 0;
}

.cta-panel h2 {
  color: #fff;
  margin-top: 0;
}

.cta-panel p {
  color: rgba(255,255,255,.85);
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.faq-accordion .accordion-item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.faq-accordion .accordion-button {
  font-weight: 800;
}

.sticky-side {
  position: sticky;
  top: 96px;
}

.side-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.side-card h3 {
  font-weight: 900;
  font-size: 1.25rem;
}

.side-card a:not(.btn) {
  display: block;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.side-card a:not(.btn):last-child {
  border-bottom: 0;
}

.side-note {
  display: flex;
  gap: 12px;
  background: #f9fafb;
  border-radius: 18px;
  padding: 18px;
  color: #374151;
}

.side-note i {
  color: var(--green);
  font-size: 1.3rem;
}

.side-note p {
  margin: 0;
  font-size: .92rem;
}

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

  .sticky-side {
    position: static;
  }
}
#resultat {
  scroll-margin-top: 100px;
}