/* ---- Structure de base ---- */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
    }
  
header {
    background: #0d1117;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem; /* au lieu de 3rem */
    }
  
    header h1 {
    font-size: 2rem;
    }
  
  header p {
    font-size: 1rem;
  }
  
  /* ---- Contenu principal ---- */
  
  main {
    max-width: 1200px;
    margin: auto;
    padding: 0rem 1rem 2rem 1rem;
  }
  

  section {
    margin: 1.5rem 0 2rem 0;
    text-align: left;
  }



  h2 {
    color: #007acc;
    margin-bottom: 0.8rem;
  }
  
  h3 {
    margin-bottom: 0.5rem;
    color: #007acc;
  }
  
  ul {
    padding-left: 1.2rem;
  }
  
  ul li {
    margin-bottom: 0.5rem;
  }
  
  /* ---- Carrousel ---- */
  .carousel {
    text-align: center;
  }
  
  .carousel img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
  }
  
  /* ---- Formulaire de contact ---- */
  footer form {
    max-width: 500px;
    margin: 1rem auto 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  
  input, textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
  }
  
  button {
    background: #007acc;
    color: white;
    padding: 0.8rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #005f99;
  }
  
  /* ---- Mentions légales ---- */
  /* footer {
    background: #f0f0f0;
    text-align: center;
    padding: 3rem 1rem 2rem 1rem;
    font-size: 0.95rem;
    color: #333;
  } */
  footer {
    padding: 0.8rem 1rem;
    text-align: center;
    font-size: 0.85rem;
  }

  footer a {
    color: #007acc;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  /* ---- Responsive ---- */
  @media (max-width: 600px) {
    header h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.3rem;
    }
  
    .carousel img {
      max-height: 250px;
    }
  
    footer form {
      padding: 0 1rem;
    }
  }
  
  section { margin-bottom: 2rem; }
  .carousel img {
    max-height: 320px;
    object-fit: contain;
    width: auto;
    margin: auto;
    display: none;
  }
  .carousel img.active {
    display: block;
  }


  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    flex-wrap: wrap;
    max-width: 960px;
    margin: auto;
  }
  
  .brand {
    flex: 1;
  }
  
  .header-contact {
    margin-top: 1rem;
  }
  
  .btn-contact {
    background: #007acc;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
  }
  
  .btn-contact:hover {
    background: #005f99;
  }
  
  @media (max-width: 600px) {
    .header-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .header-contact {
      align-self: flex-end;
    }
  }
  

  .site-header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .site-header .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  
  .logo a {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    color: #111;
  }
  
  .main-nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
  }
  
  .main-nav a:hover {
    color: #007acc;
  }
  
  .main-nav .cta {
    background: #ff2d55;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-left: 2rem;
    font-weight: bold;
  }
  
  .main-nav .cta:hover {
    background: #e60043;
  }
  

  .hero {
    background: #fff;
    padding: 3rem 1rem 1rem 1rem; /* avant : 3rem en bas */
  }
  
  .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
  }
  
  .hero-text {
    flex: 1 1 400px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
    margin: 1rem 0;
    color: #111;
  }
  
  .hero-text .highlight {
    color: #007acc;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
  }
  
  .hero-image {
    flex: 1 1 300px;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-image img {
    width: 100%;
    height: auto;
    clip-path: ellipse(65% 60% at 50% 50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .hero-image img:hover {
    transform: scale(1.02);
  }


  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .btn-whatsapp:hover {
    background-color: #1ebe5d;
  }
  
  .btn-whatsapp img {
    height: 1.4rem;
    margin-right: 0.5rem;
  }








  .badge {
    background: #e8f2ff;
    color: #007acc;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn-cta {
    background: #ff2d55;
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
  }
  
  .btn-cta:hover {
    background: #e60043;
  }
  
  .hero-image {
    flex: 1 1 400px;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 12px;
  }
  


/* TECH LOGOS ---------------------------------------------------*/
.tech-logos {
    background: #f9f9f9;
    padding: 0rem 1rem;
  }
  
  .tech-logos-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    text-align: left;
  }
  
  .tech-logos-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .tech-logos-wrapper p {
    margin: 0.5rem 0 2rem 0;
    color: #666;
    max-width: 600px;
  }
  
  .logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
  }
  
  .logo-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-container img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.2s ease;
  }
  
  .logo-container img:hover {
    transform: scale(1.05);
  }
  
/* calendly ---------------------------------------------------*/
  .cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .btn-calendly {
    display: inline-flex;
    align-items: center;
    background-color: #006bff;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .btn-calendly:hover {
    background-color: #0052cc;
  }