/*====================================================
  ESSAI GRATUIT
=====================================================*/
/* ==================================================
   SECTION SOLUTIONS
================================================== */

html {
  scroll-behavior: smooth;
}
.trial-section {
  position: relative;
  overflow: hidden;
  color: #fff;

  /* Même espace en haut et en bas */
   padding:150px 0;
   padding-bottom: 25px;

  background:
    radial-gradient(circle at 15% 20%, rgba(0, 123, 255, 0.45), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(0, 200, 255, 0.28), transparent 25%),
    linear-gradient(135deg, #06162f 0%, #083b82 48%, #007bff 100%);
}

/* Fond quadrillé animé */
.trial-section .hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

  background-size: 70px 70px;
  animation: bgMove 18s linear infinite;
}

/* Conteneur principal */
.trial-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Centre tout le contenu */
.trial-section .row {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Colonne qui contient titre, texte et boutons */
.trial-section .col-lg-7 {
  width: 100%;
  max-width: 1250px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 0 auto;
}

/* Titre */
.trial-title {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto 24px;
  text-align: center;

  color: #18a0ff;
  font-size: clamp(2.5rem, 4.2vw, 4.7rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -2px;

  white-space: nowrap;
}

.trial-title span {
  color: #fff;
}

/* Paragraphe */
.trial-text {
  width: 100%;
  max-width: 760px;

  margin: 0 auto 32px;

  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}

/* Boutons */
.trial-buttons {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;

  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.btn-trial,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 58px;
  padding: 15px 28px;

  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.btn-trial {
  background: #fff;
  color: #005de5;
}

.btn-whatsapp {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.btn-trial:hover,
.btn-whatsapp:hover {
  transform: translateY(-4px);
}

.btn-trial i,
.btn-whatsapp i {
  margin: 0;
}

/* ==================================================
   TABLETTES
================================================== */

@media (max-width: 1199px) {
  .trial-section {
    padding: 125px 24px 25px;
  }

  .trial-section .row {
    min-height: 330px;
  }

  .trial-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    white-space: normal;
    max-width: 900px;
  }

  .trial-text {
    max-width: 700px;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {
  .trial-section {
    /* Espace important pour éviter que le logo/menu recouvre le contenu */
    padding: 200px 20px 55px;
  }

  .trial-section .row {
    min-height: auto;
  }

  .trial-title {
    max-width: 100%;
    margin-bottom: 20px;

    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.12;
    letter-spacing: -1px;
    white-space: normal;
  }

  .trial-title span {
    display: inline;
  }

  .trial-text {
    max-width: 100%;
    margin-bottom: 28px;

    font-size: 0.95rem;
    line-height: 1.65;
    padding: 0 4px;
  }

  .trial-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-trial,
  .btn-whatsapp {
    width: 100%;
    max-width: 340px;
    min-height: 54px;
    padding: 14px 20px;
  }
}

/* ==================================================
   TRÈS PETITS ÉCRANS
================================================== */

@media (max-width: 400px) {
  .trial-section {
        padding: 200 20px 55px;

  }

  .trial-title {
    font-size: 1.9rem;
  }

  .trial-text {
    font-size: 0.9rem;
  }


}
.trial-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.trial-particles span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.85);
  animation: particleFloat 8s ease-in-out infinite;
}

.trial-particles span:nth-child(1) {
  top: 18%;
  left: 12%;
}

.trial-particles span:nth-child(2) {
  top: 65%;
  left: 8%;
  animation-delay: 1.5s;
}

.trial-particles span:nth-child(3) {
  top: 28%;
  left: 42%;
  animation-delay: 2.4s;
}

.trial-particles span:nth-child(4) {
  top: 75%;
  left: 68%;
  animation-delay: 3.2s;
}

.trial-particles span:nth-child(5) {
  top: 48%;
  right: 10%;
  animation-delay: 4s;
}

.trial-particles span:nth-child(6) {
  top: 12%;
  right: 22%;
  animation-delay: 5s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.35;
  }

  50% {
    transform: translateY(-26px) scale(1.4);
    opacity: 1;
  }
}

/* =========================================
   MENU HORIZONTAL DES SOLUTIONS
========================================= */

.solutions-anchor-nav {
  position: sticky;
  top: 80px;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 50;
}

.solutions-anchor-scroll {
  width: 100%;
  max-width: 1250px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.solution-anchor-link {
  position: relative;
  flex-shrink: 0;
  padding: 24px 0;

  color: #07142e;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.solution-anchor-link:hover,
.solution-anchor-link.active {
  color: #006be6;
}

.solution-anchor-link:hover {
  transform: translateY(-2px);
}

/* Trait bleu sous le lien actif */
.solution-anchor-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;

  width: 0;
  height: 2px;
  border-radius: 20px;

  background: #007bff;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.solution-anchor-link:hover::after,
.solution-anchor-link.active::after {
  width: 100%;
}

/* Pour que l'ancre ne soit pas masquée par le header */
section[id] {
  scroll-margin-top: 130px;
}

/* =========================================
   TABLETTES
========================================= */

@media (max-width: 1100px) {
  .solutions-anchor-scroll {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 38px;

    scrollbar-width: thin;
    scrollbar-color: #929292 #f1f1f1;

    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .solutions-anchor-scroll::-webkit-scrollbar {
    height: 8px;
  }

  .solutions-anchor-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .solutions-anchor-scroll::-webkit-scrollbar-thumb {
    background: #929292;
    border-radius: 20px;
  }
}

/* =========================================
   MOBILES
========================================= */

@media (max-width: 767px) {
      .solutions-anchor-nav {
    top: 60px;
  }
  .solutions-anchor-scroll {
    min-height: 64px;
    padding: 0 20px 8px;
    gap: 42px;

    overflow-x: auto;
    justify-content: flex-start;
  }

  .solution-anchor-link {
    padding: 20px 0;
    font-size: 0.98rem;
  }

  .solution-anchor-link::after {
    bottom: 10px;
  }

  section[id] {
    scroll-margin-top: 105px;
  }
}

/*==================================================
                include section
==================================================*/

.trial-includes-section {
  padding:50px 0 100px;
  background: #ffffff;
  padding-bottom: 70px;
}

.trial-includes-header {
  text-align: center;
  margin-bottom: 30px;
}

.trial-includes-header span {
  display: inline-block;
  color: #005de5;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.trial-includes-header h2 {
  color: #007bff; ;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}

.trial-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.include-card {
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 18px;
  padding: 20px 16px;
  min-height: 160px;
  transition: 0.35s ease;
}

.include-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(7, 20, 46, 0.08);
  border-color: rgba(0, 123, 255, 0.25);
}

.include-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, #0b5ed7, #25a7f0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.include-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.include-card h3 {
  color: #007bff; 
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.include-card p {
  color: #2d3748;
  font-size: 0.80rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .trial-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .trial-includes-section {
    padding: 65px 0;
  }

  .trial-includes-grid {
    grid-template-columns: 1fr;
  }

  .include-card {
    min-height: auto;
    
  }
}
/*==================================================
                ETAPES ESSAI GRATUIT
==================================================*/

.trial-steps-section{

    background:#f5f7fb;
    padding:50px 0 100px;
    padding-bottom: 50px;

}

.steps-header{

    text-align:center;

    margin-bottom:70px;

}

.steps-header span{

    display:inline-block;

    color:#005de5;

    font-size:.85rem;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.steps-header h2{
color: #007bff; ;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;

}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 17%;
  right: 17%;
  height: 3px;
  background: linear-gradient(90deg, #0b5ed7, #2ea8ff);
  z-index: 0;
  border-radius: 50px;
}

.step-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:60px 30px 30px;

    text-align:center;

    box-shadow:0 20px 45px rgba(15,23,42,.08);

    transition:.35s;
    z-index: 2;

}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,93,229,.16);
}

.step-number{

    position:absolute;

    top:-22px;

    left:50%;

    transform:translateX(-50%);

    width:44px;

    height:44px;

    border-radius:50%;

    background:linear-gradient(135deg,#0b5ed7,#2ea8ff);

    color:#fff;

    font-size:1.2rem;

    font-weight:800;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(11,94,215,.35);

}

.step-card h3{
color: #007bff; 
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;

}

.step-card p{
color: #2d3748;
  font-size: 0.80rem;
  line-height: 1.6;
  margin: 0;

}

/* Responsive */

@media(max-width:991px){
     .steps-grid::before {
    display: none;
  }

.steps-grid{

grid-template-columns:1fr;

gap:55px;

}

.step-card{

padding:45px 20px 20px;

}

}

/* =========================================
   SECTION PACKAGES
========================================= */

.packages-section {
  background: #f5f7fb;
}

.packages-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: #2d3748;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.packages-intro a {
  color: #006be6;
  font-weight: 700;
  text-decoration: underline;
}

/* Grille */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
}

/* Carte */
.package-card {
  --package-color: #1769aa;

  position: relative;
  display: flex;
  flex-direction: column;

  min-width: 0;
  padding: 26px 24px 20px;

  background: #fff;
  border: 1px solid #dfe5ee;
  border-top: 4px solid var(--package-color);
  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.package-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.12);
  border-color: color-mix(
    in srgb,
    var(--package-color),
    transparent 55%
  );
}

/* Couleurs */
.package-black {
  --package-color: #080808;
}
.package-gray {
  --package-color: #7a7c7dd7;
}

.package-orange {
  --package-color: #ff512f;
}

.package-green {
  --package-color: #10a94f;
}

.package-blue {
  --package-color: #006be6;;
}
.package-yellow {
  --package-color: #4f5405;;
}
/* Icône */
.package-icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 12px;
  background: var(--package-color);
  color: #fff;
  font-size: 1.35rem;
}

/* Titre de carte */
.package-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 8px;
}

.package-heading h3 {
color: #007bff; 
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.package-badge {
  padding: 4px 8px;

  border-radius: 20px;
  background: color-mix(
    in srgb,
    var(--package-color),
    transparent 88%
  );

  color: var(--package-color);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Description */
.package-summary {
  min-height: 44px;
  margin: 0 0 20px;

  color: #657085;
  font-size: 0.83rem;
  line-height: 1.55;
}

/* Sections internes */
.package-section {
  margin-bottom: 20px;
}

.package-label,
.price-label {
  display: block;

  margin-bottom: 8px;

  color: #8290a6;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.package-section p {
  color: #2d3748;
  font-size: 0.80rem;
  line-height: 1.6;
  margin: 0;
}

/* Liste */
.package-features {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.package-features li {
  position: relative;

  padding-left: 20px;

  color: #364152;
  font-size: 0.8rem;
  line-height: 1.45;
}

.package-features li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: var(--package-color);
  font-weight: 900;
}

/* Bloc kit */
.package-kit {
  margin-top: 2px;
  margin-bottom: 26px;
  padding: 16px;

  background: #f9fbfd;
  border: 1px dashed #bdc8d8;
  border-radius: 11px;
}

.package-kit h4 {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 0 0 8px;

  color: #1c3557;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.package-kit h4 i {
  color: var(--package-color);
}

.package-kit p {
 color: #2d3748;
  font-size: 0.80rem;
  line-height: 1.6;
  margin: 0;
}

/* Pied de la carte */
.package-footer {
  margin-top: auto;
  padding-top: 18px;

  border-top: 1px solid #e8edf4;
}

.package-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;

  margin-bottom: 3px;
}

.package-price strong {
  color: #07142e;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.package-price span {
  color: #69758a;
  font-size: 0.72rem;
}

.package-footer small {
  display: block;

  margin-bottom: 16px;

  color: #69758a;
  font-size: 0.7rem;
  line-height: 1.4;
}

/* Bouton */
.package-btn {
  width: 100%;
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 12px 18px;

  border-radius: 9px;
  background: var(--package-color);

  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.package-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: brightness(0.92);
}

.package-btn i {
  transition: transform 0.3s ease;
}

.package-btn:hover i {
  transform: translateX(5px);
}

/* =========================================
   TABLETTES
========================================= */

@media (max-width: 991px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-summary {
    min-height: auto;
  }
}

/* =========================================
   MOBILES
========================================= */

@media (max-width: 650px) {
  .packages-section {
    padding-inline: 4px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .package-card {
    padding: 24px 20px 18px;
  }

  .package-heading h3 {
    font-size: 1.18rem;
  }

  .package-summary,
  .package-section p,
  .package-features li {
    font-size: 0.82rem;
  }

  .package-kit {
    padding: 14px;
  }

  .package-price strong {
    font-size: 1.4rem;
  }
}


/* =========================================
   SECTION OPTIONS TRANSVERSALES
========================================= */

.options-section {
  background: #ffffff;
}

/* Grille */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Carte */
.option-card {
  position: relative;
  min-width: 0;
  min-height: 225px;

  padding: 28px 26px;

  background: #ffffff;
  border: 1px solid #e1e7ef;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Petit trait bleu en haut */
.option-card::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 26px;

  width: 72px;
  height: 2px;

  border-radius: 20px;
  background: linear-gradient(90deg, #1769aa, #5db9ff);
}

.option-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1);
}

/* Ligne icône + étiquette */
.option-top {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;
}

/* Icône */
.option-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 11px;
  background: #eef4fa;
  color: #1266aa;
  font-size: 1.15rem;
}

/* Étiquette */
.option-label {
  display: inline-flex;
  align-items: center;

  min-height: 24px;
  padding: 5px 11px;

  border-radius: 30px;
  background: #f1f5f9;

  color: #56708f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Titre de carte */
.option-card h3 {
  color: #007bff; 
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 12px;
}

/* Texte */
.option-card p {
 color: #2d3748;
  font-size: 0.80rem;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   TABLETTES
========================================= */

@media (max-width: 991px) {
  .options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-card {
    min-height: 210px;
  }
}

/* =========================================
   MOBILES
========================================= */

@media (max-width: 650px) {
  .options-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .option-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .option-card::before {
    left: 20px;
  }

  .option-card h3 {
    font-size: 1.15rem;
  }

  .option-card p {
    font-size: 0.86rem;
  }

  .option-top {
    margin-bottom: 16px;
  }
}

/* ==================================================
   CTA COMPOSITION DU PACKAGE
================================================== */

.package-cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;

  /* Section volontairement plus compacte */
  padding: 35px 24px;
  padding-bottom: 50px;
  

  background:
    radial-gradient(circle at 15% 20%, rgba(0, 123, 255, 0.45), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(0, 200, 255, 0.28), transparent 25%),
    linear-gradient(135deg, #06162f 0%, #083b82 48%, #007bff 100%);
}

/* Réutilisation du quadrillage animé */
.package-cta-section .hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

  background-size: 70px 70px;
  animation: bgMove 18s linear infinite;
}

.package-cta-section .container {
  position: relative;
  z-index: 2;
}

.package-cta-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

/* Titre */
.package-cta-title {
  width: 100%;
  margin: 0 auto 16px;

  color: #fff;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.2px;
  text-align: center;
}

/* Texte */
.package-cta-text {
  max-width: 760px;
  margin: 0 auto 28px;

  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  text-align: center;
}

/* Boutons */
.package-cta-buttons {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-package-quote,
.btn-package-trial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 50px;
  padding: 13px 24px;

  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

/* Bouton orange */
.btn-package-quote {
  background:  #005de5;;
  color: #07142e;
  border: 1px solid  #005de5;;
}

.btn-package-quote:hover {
  color: #07142e;
  background: #005de5;;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* Bouton transparent */
.btn-package-trial {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
}

.btn-package-trial:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* ==================================================
   TABLETTES
================================================== */

@media (max-width: 991px) {
  .package-cta-section {
    padding: 60px 24px;
  }

  .package-cta-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .package-cta-text {
    max-width: 650px;
  }
}

/* ==================================================
   MOBILES
================================================== */

@media (max-width: 767px) {
  .package-cta-section {
    padding: 52px 20px;
  }

  .package-cta-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .package-cta-text {
    max-width: 100%;
    margin-bottom: 24px;

    font-size: 0.94rem;
    line-height: 1.6;
  }

  .package-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-package-quote,
  .btn-package-trial {
    width: 100%;
    max-width: 340px;
  }
}

/* ==================================================
   TRÈS PETITS ÉCRANS
================================================== */

@media (max-width: 400px) {
  .package-cta-section {
    padding: 45px 16px;
  }

  .package-cta-title {
    font-size: 1.75rem;
  }

  .package-cta-text {
    font-size: 0.9rem;
  }
}

