/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.5;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* HERO */
  .hero {
    background: #e1e8f5;
    text-align: center;
    padding: 4rem 1rem;
  }
  .logo-hero {
    display: block;
    width: 360px; /* logo 2× larger */
    margin: 0 auto 1rem;
  }
  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #0033cc;
    font-weight: 600;
  }
  .hero p {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 700px;
    color: #555;
  }
  .btn {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s;
    cursor: pointer;
  }
  .btn:hover {
    background: #22a63c;
  }
  
  /* SECTION TITLES */
  .section {
    padding: 3rem 0;
  }
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #0033cc;
    position: relative;
  }
  .section h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #28a745;
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }
  
  /* ABOUT */
  .about p {
    font-size: 1.05rem;
    max-width: 840px;
    margin: 1rem auto 0;
    color: #555;
  }
  .about ul {
    list-style: disc inside;
    margin: 1rem auto;
    max-width: 840px;
    color: #444;
  }
  
  /* FEATURES */
  .features .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
  }
  .feature:hover {
    transform: translateY(-4px);
  }
  .feature h3 {
    margin-bottom: 0.5rem;
    color: #0033cc;
    font-size: 1.1rem;
    font-weight: 600;
  }
  .feature p {
    font-size: 0.95rem;
    color: #444;
  }
  
  /* PRICING */
  .pricing .tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
    justify-items: stretch;
  }
  .tier {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .tier h3 {
    margin-bottom: 0.5rem;
    color: #0033cc;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .tier .price {
    font-size: 1.75rem;
    margin: 0.5rem 0;
    color: #28a745;
    font-weight: 700;
  }
  .tier .meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
  }
  .tier ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
    flex-grow: 1;
  }
  .tier ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    font-size: 0.9rem;
    color: #444;
  }
  .tier ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
  }
  .btn-outline {
    display: inline-block;
    background: transparent;
    color: #0033cc;
    border: 2px solid #0033cc;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
  }
  .btn-outline:hover {
    background: #0033cc;
    color: #fff;
  }
  .tier-agency::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #28a745, #22a63c);
  }
  
  /* FREEMIUM FORM */
  .freemium p {
    text-align: center;
    margin-bottom: 1rem;
    color: #555;
  }
  .freemium .form {
    display: grid;
    gap: 0.75rem;
    max-width: 420px;
    margin: 0 auto;
  }
  .freemium .form input {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  .freemium .form button {
    width: 100%;
  }
  
  /* RESPONSE */
  .response {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: #0033cc;
  }
  
  /* SITE FOOTER */
  .site-footer {
    background: #fff;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
  }
  .site-footer .legal-links {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .site-footer .legal-links a {
    color: #0033cc;
    text-decoration: none;
  }
  .site-footer .legal-links a:hover {
    text-decoration: underline;
  }

/* Overlay plein écran */
/* Barre de titre dans le modal */
.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  /* Header coloré */
  .modal-content h2 {
    background: #0033cc;
    color: #fff;
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  /* Fermeture : petite croix dans un cercle */
  .modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    transition: background 0.2s;
  }
  .modal-close:hover {
    background: #ff4d4f;
    color: #fff;
  }
  
  /* Corps du formulaire */
  .modal-content .form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  .modal-content .form input,
  .modal-content .form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
  }
  .modal-content .form input:focus,
  .modal-content .form textarea:focus {
    border-color: #0033cc;
    outline: none;
  }
  
  /* Bouton d’envoi */
  .modal-content .form button {
    padding: 0.85rem;
    background: #28a745;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 0.5rem;
  }
  .modal-content .form button:hover {
    background: #22a63c;
    transform: translateY(-1px);
  }
  .modal[aria-hidden="false"] {
    display: flex;             /* on affiche le modal */
  }
  
  /* Message de réponse */
  #quoteResponse {
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #0033cc;
  }
  
  /* Assure-toi que le modal s’affiche en flex */
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* ==== Tease PRO: overlay "Prochainement disponible" ==== */
.tier.soon {
    position: relative;
    opacity: 0.6;         /* un peu grisé */
    pointer-events: none; /* désactive tous les clics à l’intérieur */
  }
  
  /* Badge central */
  .tier.soon::after {
    content: "Prochainement disponible";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  /* Style du bouton désactivé */
  .btn.disabled {
    display: inline-block;
    background: #ccc;
    color: #666;
    cursor: default;
  }
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-width: 600px) {
    .hero h1 {
      font-size: 1.5rem;
    }
    .section {
      padding: 2rem 0;
    }
    .logo-hero {
      width: 280px;
    }
  }
  