body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

/* =========================
   HEADER
   ========================= */
header {
  background-color: #004d3c;
  color: white;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 40px;
  margin-right: 8px;
}

header h1 {
  font-size: 18px;
  margin: 0;
}

.text-green {
  color: #00a76f;
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a {
  font-size: 14px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

/* =========================
   HERO
   ========================= */
.hero {
  background-image: url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 90px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 420px;
}

.hero-prelaunch .hero-text {
  max-width: 650px;
  padding: 28px 30px;
  margin-left: 20px;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: left;
}

.prelaunch-badge {
  display: inline-block;
  background: #e7f6f0;
  color: #007a5a;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h2 {
  font-size: 34px;
  line-height: 1.25;
  color: #004d3c;
  text-align: center;
  margin: 0 0 16px 0;
}

.hero p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: center;
}

.hero-subtitle {
  text-align: center;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-link {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.secondary-link {
  color: #004d3c;
  font-weight: 600;
  text-decoration: none;
}

.secondary-link:hover {
  text-decoration: underline;
}

.hero-note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}

/* =========================
   INFOS VALIDATION
   ========================= */
.validation-info {
  padding: 35px 20px 15px;
  background: #ffffff;
}

.validation-box {
  max-width: 980px;
  margin: 0 auto;
  background: #f8f9fa;
  border: 1px solid #e6ecea;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.validation-box h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 12px;
}

.validation-box p {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.6;
}

.validation-box ul {
  margin: 0;
  padding-left: 18px;
}

.validation-box li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* =========================
   PROCESS
   ========================= */
.process-section {
  padding: 55px 20px 30px;
  background: #ffffff;
  text-align: center;
}

.process-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.process-section h3 {
  font-size: 32px;
  color: #004d3c;
  margin-bottom: 8px;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.process-box {
  background: #f8f9fa;
  border: 1px solid #e6ecea;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.process-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #007a5a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px auto;
  font-size: 16px;
}

.process-box h4 {
  color: #004d3c;
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 10px;
}

.process-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* =========================
   SERVICES
   ========================= */
.services {
  padding: 60px 20px 50px;
  background-color: #f8f9fa;
  text-align: center;
}

.services h3 {
  font-size: 32px;
  color: #004d3c;
  margin-bottom: 50px;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.service-box img {
  height: 82px;
  margin-bottom: 18px;
}

.service-box h4 {
  color: #004d3c;
  font-size: 17px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.section-spacer {
  height: 20px;
  background: #f8f9fa;
}

/* =========================
   TRUST
   ========================= */
.trust-section {
  padding: 20px 20px 55px;
  background: #f8f9fa;
  text-align: center;
}

.trust-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-section h3 {
  font-size: 32px;
  color: #004d3c;
  margin-bottom: 8px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.trust-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  text-align: center;
}

.trust-box h4 {
  color: #004d3c;
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 10px;
}

.trust-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* =========================
   TARIFS
   ========================= */
.tarifs {
  background-color: #f8f9fa;
  padding-top: 50px;
  padding-bottom: 80px;
  text-align: center;
}

.tarifs h3 {
  font-size: 32px;
  color: #004d3c;
  margin-bottom: 8px;
}

.sous-titre {
  color: #666;
  margin-top: 5px;
  font-size: 16px;
  text-align: center;
}

.tarif-boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.tarif-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  width: 230px;
  padding: 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.tarif-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.tarif-header {
  background-color: #007a5a;
  font-weight: 700;
  color: white;
  padding: 10px 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin: -20px -20px 20px -20px;
}

.prix {
  font-size: 22px;
  color: #007a5a;
  margin-bottom: 16px;
}

.prix span {
  font-weight: normal;
  font-size: 14px;
  color: #333;
}

.tarif-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #333;
  font-size: 14px;
  text-align: left;
}

.tarif-box ul li {
  margin: 8px 0;
  white-space: normal;
  line-height: 1.45;
}

.tarif-box ul li::before {
  content: '✔️';
  margin-right: 8px;
  color: #007a5a;
}

.tarif-note {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}

.tarifs-cta {
  margin-top: 70px;
  text-align: center;
}

.tarifs-cta .cta-btn {
  width: auto;
  display: inline-block;
  padding: 14px 26px;
}

.tarifs-cta .mini-text {
  max-width: 520px;
  margin: auto;
}

/* =========================
   PREINSCRIPTION
   ========================= */
.preinscription-section {
  padding: 70px 20px;
  background: #ffffff;
}

.preinscription-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.preinscription-left {
  text-align: left;
}

.preinscription-left h3 {
  text-align: left;
  font-size: 32px;
  color: #004d3c;
  margin-top: 0;
  margin-bottom: 12px;
}

.left-text {
  text-align: left;
  margin-bottom: 22px;
}

.benefits-box {
  background: #f8f9fa;
  border: 1px solid #e4ece8;
  border-radius: 14px;
  padding: 22px;
}

.benefits-box h4 {
  margin-top: 0;
  color: #004d3c;
  margin-bottom: 12px;
}

.benefits-box ul {
  margin: 0;
  padding-left: 18px;
}

.benefits-box li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.left-mini-text {
  text-align: left;
  margin-top: 18px;
}

.preinscription-form-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #e6ecea;
}

.preinscription-form-box h4 {
  margin-top: 0;
  color: #004d3c;
  font-size: 24px;
  margin-bottom: 18px;
}

.lead-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #d9e2df;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
  background: #fff;
}

.lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: #00a76f;
  box-shadow: 0 0 0 3px rgba(0,167,111,0.10);
}

.cta-btn {
  background: linear-gradient(135deg, #007a5a, #00a76f);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  width: 100%;
  margin-top: 8px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.mini-text {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
  line-height: 1.5;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background-color: #004d3c;
  color: white;
  padding: 10px 12px;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .preinscription-wrapper {
    grid-template-columns: 1fr;
  }

  .preinscription-left h3,
  .left-text {
    text-align: center;
  }

  .left-mini-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 55px 20px;
    min-height: auto;
    justify-content: center;
    align-items: center;
  }

  .hero-prelaunch .hero-text {
    margin-left: 0;
    max-width: 92%;
    padding: 22px 20px;
    text-align: center;
  }

  .hero h2,
  .hero-subtitle {
    text-align: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .services-row,
  .tarif-boxes,
  .process-row,
  .trust-row {
    gap: 24px;
  }

  .tarif-box {
    width: 100%;
    max-width: 320px;
  }

  .preinscription-section {
    padding: 50px 20px;
  }
}
.social-proof{
margin-top:14px;
font-size:14px;
color:#555;
background:#f3f7f6;
display:inline-block;
padding:8px 14px;
border-radius:20px;
border:1px solid #e4ece8;
}