:root {
  --primary: #4A90E2;
  --secondary: #7FB3D5;
  --background: #ffffff;
  --text: #171717;
  --text-light: #4a4a4a;
  --border: #e5e5e5;
  --card-bg: #f8f9fa;
  --success: #5cb85c;
  --warning: #f0ad4e;
  --shadow: rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Montserrat', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
.btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.devistap_choix_texte {
  color: black
}
.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
  background-color: #3a7bc8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-secondary:hover {
  background-color: #6a9fc5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(127, 179, 213, 0.3);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  background-color: var(--background);
  padding: 1.5rem 0;
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
  border-radius: 24px;
  margin: 2rem auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.hero-form {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow);
}

#v5134ab60f8d {
  width: 100%;
}

.features {
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  padding: 4rem 0;
}

.bento-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow);
}

.bento-large {
  grid-column: span 8;
}

.bento-medium {
  grid-column: span 6;
}

.bento-small {
  grid-column: span 4;
}

.solutions {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.solution-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid var(--border);
}

.solution-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.2);
  border-color: var(--primary);
}

.solution-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-content {
  padding: 2rem;
}

.comparator {
  padding: 4rem 0;
}

.comparator-table {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow);
  margin-top: 2rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

th {
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  border-radius: 12px 12px 0 0;
}

td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}

tr:hover {
  background-color: var(--card-bg);
}

.faq {
  padding: 4rem 0;
  background: var(--card-bg);
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px var(--shadow);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.testimonials {
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  border-radius: 24px;
  margin: 2rem auto;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-light {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.btn-light:hover {
  background: var(--card-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-section a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .bento-large,
  .bento-medium,
  .bento-small {
    grid-column: span 12;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .features,
  .solutions,
  .comparator,
  .faq,
  .testimonials {
    padding: 3rem 0;
  }

  .cta {
    padding: 3rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}