/* =========================================
RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================
GLOBAL
========================================= */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: auto;
}

/* =========================================
BUTTONS
========================================= */

.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid #d1d5db;
  color: #111827;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

.full-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* =========================================
HEADER
========================================= */

.header {
  width: 100%;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-bottom: 1px solid #e5e7eb;
}

.nav-wrapper {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #374151;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2563eb;
}

/* =========================================
HERO
========================================= */

.hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
  margin-top: -110px;
}

.hero-overlay {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(37,99,235,0.08);
  border-radius: 50%;
  top: -250px;
  right: -200px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-content p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 35px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.trust-item {
  color: #374151;
  font-weight: 500;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: white;
  padding: 20px;
  border-radius: 18px;
  min-width: 150px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stat-box h3 {
  font-size: 28px;
  color: #2563eb;
}

.stat-box span {
  color: #6b7280;
  font-size: 14px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.hero-card {
  position: absolute;
  bottom: 30px;
  left: -40px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  width: 320px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  max-width: 90%;
}

.hero-card h4 {
  margin: 12px 0;
  font-size: 20px;
}

/* =========================================
BRANDS
========================================= */

.brands {
  padding: 60px 0;
}

.brands-wrapper {
  text-align: center;
}

.brands-wrapper span {
  color: #6b7280;
}

.brand-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.brand-item {
  background: #f3f4f6;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 700;
}

/* =========================================
SECTION TITLES
========================================= */

.section-title {
  margin-bottom: 60px;
}

.section-title.center {
  text-align: center;
}

.section-title span {
  color: #2563eb;
  font-weight: 600;
}

.section-title h2 {
  margin-top: 16px;
  font-size: 42px;
  line-height: 1.2;
}

/* =========================================
FEATURES
========================================= */

.features {
  padding: 100px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 14px;
}

/* =========================================
COMPARE SECTION
========================================= */

.compare-section {
  padding: 100px 0;
  background: #f9fafb;
}

.compare-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.small-tag {
  color: #2563eb;
  font-weight: 600;
}

.compare-left h2 {
  font-size: 42px;
  margin: 20px 0;
}

.compare-left p {
  color: #6b7280;
  margin-bottom: 30px;
}

.compare-list li {
  margin-bottom: 14px;
  font-weight: 500;
}

.compare-box {
  background: white;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  font-size: 16px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #2563eb;
}

/* =========================================
TABLE
========================================= */

.pricing {
  padding: 100px 0;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

thead {
  background: #2563eb;
  color: white;
}

th,
td {
  padding: 22px;
  text-align: center;
}

tbody tr {
  border-bottom: 1px solid #f3f4f6;
}

.table-btn {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}

/* =========================================
SEO CONTENT
========================================= */

.seo-content {
  padding: 100px 0;
  background: #f9fafb;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.seo-grid img {
  border-radius: 24px;
}

.seo-grid h2 {
  font-size: 40px;
  margin: 20px 0;
}

.seo-grid p {
  margin-bottom: 20px;
  color: #4b5563;
}

/* =========================================
GUIDES
========================================= */

.guides {
  padding: 100px 0;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.guide-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.guide-card:hover {
  transform: translateY(-6px);
}

.guide-card h3 {
  margin-bottom: 18px;
}

.guide-card p {
  color: #6b7280;
  margin-bottom: 18px;
}

.guide-card a {
  color: #2563eb;
  font-weight: 600;
}

/* =========================================
REVIEWS
========================================= */

.reviews {
  padding: 100px 0;
  background: #f9fafb;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.review-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.review-card p {
  margin-bottom: 20px;
  color: #374151;
}

/* =========================================
CTA
========================================= */

.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 80px 40px;
  border-radius: 32px;
  text-align: center;
}

.cta-box h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.cta-box p {
  margin-bottom: 30px;
  opacity: 0.9;
}

/* =========================================
FOOTER
========================================= */

.footer {
  background: #111827;
  color: white;
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.footer h4 {
  margin-bottom: 20px;
}

.footer p,
.footer a {
  color: #9ca3af;
}

.footer li {
  margin-bottom: 12px;
}

.footer-logo {
  margin-bottom: 20px;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1100px) {

  .hero-grid,
  .compare-wrapper,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .guides-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .hero-content h1 {
    font-size: 48px;
  }

}

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .section-title h2,
  .compare-left h2,
  .seo-grid h2,
  .cta-box h2 {
    font-size: 32px;
  }

  .feature-grid,
  .guides-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
  }

  .hero-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
  }

  .compare-box {
    padding: 28px;
  }

  th,
  td {
    padding: 16px;
    font-size: 14px;
  }
  
   .cta-box {
    padding: 50px 20px;
    border-radius: 24px;
  }
  
  .cta-section {
  overflow: hidden;
}

}

/*.nav-cta {
  background: #2563eb;
  color: #ffffff !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.nav-cta:hover {
  background: #1d4ed8;
}*/

.nav-cta {
  background: #1a73e8;
  color: #ffffff !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background: #1557b0;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(26, 115, 232, 0.35);
}

.nav-cta-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.nav-cta-wrapper:hover .tooltip {
  opacity: 1;
}

@media (max-width: 768px) {

  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  /* on réduit les liens secondaires */
  .nav-links li:not(:first-child) {
    display: none;
  }

  /* CTA mobile ultra visible */
  .nav-cta {
    background: #1a73e8;
    color: white !important;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
  }

  /* logo compact */
  .logo {
    font-size: 16px;
  }
  

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-image {
    order: -1;
  }

  .stats,
  .hero-trust {
    display: none;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 15px;
    opacity: 0.85;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons a {
  width: auto;
  text-align: center;
  align-self: stretch;
  }


}

.article-cta .btn-primary {
  padding: 12px 18px;
  font-size: 15px;
  border-radius: 10px;
}

.article-main-image {
  max-width: 850px;
  width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: 16px;
}

#results-section {
  scroll-margin-top: 100px;
}

.mini-disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/*BLOC SECURITE DANS HOME*/
.security-section {
  padding: 100px 0;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}


/* =========================
   LISTES ARTICLES (BLOG SEO)
========================= */


    .feature-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }

    .feature-list li {
      position: relative;
      padding-left: 36px;
      margin-bottom: 14px;
      line-height: 1.7;
      font-size: 1.02rem;
    }

    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 2px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #0ea5e9;
      color: white;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    /* =========================================
    HIGHLIGHT BOX
    ========================================= */

  /* =========================================
    LISTES PREMIUM
    ========================================= */

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }

    .feature-list li {
      position: relative;
      padding-left: 36px;
      margin-bottom: 14px;
      line-height: 1.7;
      font-size: 1.02rem;
    }

    .feature-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 2px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #0ea5e9;
      color: white;
      font-size: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    /* =========================================
    HIGHLIGHT BOX
    ========================================= */

    .highlight-box {
      background: #f8fafc;
      border-left: 5px solid #0ea5e9;
      padding: 26px;
      border-radius: 16px;
      margin: 2.5rem 0;
    }

    .highlight-box h3 {
      margin-top: 0;
      margin-bottom: 1rem;
    }

    /* =========================================
    CTA
    ========================================= */

    .article-cta {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: white;
      padding: 36px;
      border-radius: 20px;
      margin: 3rem 0;
      text-align: center;
    }

    .article-cta h3 {
      color: white;
      margin-bottom: 1rem;
    }

    .article-cta p {
      color: rgba(255,255,255,0.9);
    }

    .article-cta .btn-primary {
      margin-top: 14px;
      display: inline-block;
    }

    /* =========================================
    TABLE
    ========================================= */

    .article-table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
      overflow: hidden;
      border-radius: 14px;
    }

    .article-table th {
      background: #0f172a;
      color: white;
      padding: 16px;
      text-align: center;
    }

    .article-table td {
      padding: 16px;
      border-bottom: 1px solid #e5e7eb;
    }

    .article-table tr:nth-child(even) {
      background: #f8fafc;
    }
	
	
 /* =========================================
antivol-homologue-assurance-velo
========================================= */

.related-links {
  margin-top: 80px;
}

.article-faq {
  margin-bottom: 80px;
}