:root {
  --primary-yellow: #facc15;
  --primary-cyan: #22d3ee;
  --background-dark: #000000;
  --card-dark: #161616;
  --gradient-yellow-cyan: linear-gradient(135deg, #eab308 0%, #22d3ee 100%);
  --gradient-text: linear-gradient(to right, #fbbf24, #22d3ee);
}


body {
  font-family: "Poppins", sans-serif;
  background: #000;
}


/* BUTTON */
.primary-btn {
  background: linear-gradient(90deg, #f2e600, #00ffd5);
  border: none;
  border-radius: 50px;
  padding: 5px 5px 5px 10px;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .3s ease;
  text-decoration: none;
}

.primary-btn i {
  background: #000;
  color: #00ffd5;
  border-radius: 50%;
  padding: 8px;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 255, 213, .4);
}


.text-primary {
  font-size: 2.5rem;
  font-weight: 800;
  /* background: linear-gradient(90deg, #F7E215, #5cffc7, #3bd6ff); */
  background: linear-gradient(90deg, #f2e600 40%, #00ffd5 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutiondown {
  font-weight: 600;
}

.sousolution {
  font-size: 21px;
  padding: 20px 5px 23px;
}











/* HERO BACKGROUND */
.carteo-hero {
  min-height: 100vh;
  overflow: hidden;
  /* background:
    radial-gradient(circle at left, rgba(0, 255, 200, 0.15), transparent 40%),
    radial-gradient(circle at right, rgba(0, 150, 255, 0.2), transparent 40%),
    #020b0f; */
  background-image: url("../images/background.jpg");
  background-position: center;
  background-size: 100% 99.99%;
}

/* BRAND */
.brand {
  font-size: 48px;
  font-weight: 800;
}

/* TITLE */
.hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(90deg, #f2e600, #00ffd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 18px;
  color: #cbd5e1;
}

/* FEATURES */
.hero-features {
  list-style: none;
  padding: 0;
}

.hero-features li {
  margin-bottom: 10px;
  font-size: 16px;
}

.hero-features i {
  color: #b8ff3b;
  margin-right: 8px;
}

/* CTA BUTTON */
/* .btn-carteo {
  background: #eaff00;
  color: #000;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-carteo:hover {
  background: #cde600;
  transform: translateY(-2px);
} */

/* PHONE IMAGE */
.hero-phone {
  /* max-width: 420px;
  filter: drop-shadow(0 0 40px rgba(0, 255, 200, 0.25)); */
  width: 100%;
}

/* FLOATING BADGES */
/* .badge-float {
  position: absolute;
  background: linear-gradient(90deg, #eaff00, #9eff00);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(180, 255, 0, 0.4);
}

.top-left {
  top: 10%;
  left: -10%;
}

.top-right {
  top: 30%;
  right: -10%;
}

.bottom-left {
  bottom: 25%;
  left: -12%;
}

.bottom-right {
  bottom: 10%;
  right: -12%;
} */























/* =========================
   FONCTIONNALITES SECTION
========================= */

.fonctionnalites {
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

.fonctionnalites-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #d4ff00, #00ffe0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Keep cards in ONE ROW */
.fonctionnalites-row {
  overflow-x: auto;
  scrollbar-width: none;
}

.fonctionnalites-row::-webkit-scrollbar {
  display: none;
}

/* Card design */
.fonctionnalites-card {
  background: #151515;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  min-width: 230px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fonctionnalites-card i {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #d4ff00, #00ffe0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fonctionnalites-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #dcdcdc;
}

.fonctionnalites-card strong {
  display: block;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 6px;
}

/* Hover effect */
.fonctionnalites-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 255, 224, 0.15);
}












/* Pricing*/
.pricing-section {
  background-color: #000;
  color: #fff;
  padding-top: 60px;
}

.pricing-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffe600, #33d9b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-border {
  background: linear-gradient(to right, #F7E215, #33C1D7);
  padding: 1px;
  border-radius: 20px;
  height: 100%;
}

.pricing-card {
  background: #191919;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-title {
  font-size: 28px;
  font-weight: 600;
  max-width: 250px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 15px;
}

.card-title:after {
  content: '';
  height: 5px;
  width: 100px;
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translate(50%, 0);
  background: linear-gradient(90deg, #33d9b2, #ffe600);
}

.card-subtitle {
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
  color: #fff;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.features-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.features-list li i {
  color: #2ce8c2;
  margin-right: 10px;
}

.offer-details {
  margin-top: 30px;
  text-align: center;
}

.special-offer {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  background: linear-gradient(90deg, #ffe600, #33d9b2);
  padding: 10px;
}

.special-offer span {
  font-size: 18px;
}

.special-offer span.price {
  font-size: 35px;
  color: #000;
}

.price {
  font-size: 26px;
  color: #33d9b2;
  margin-top: 15px;
  font-weight: 600;
}

.ideal-for {
  font-size: 16px;
  margin-top: 10px;
}

.btn-primary {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #33d9b2;
  border: none;
  border-radius: 50px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #28a69d;
}

.premium {
  /* background: #1c1c1c;
  border: 2px solid #33d9b2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); */
}

.premium .card-title,
.premium .special-offer {
  color: #33d9b2;
}







/* Comparison  */
.comparison-section {
  background: #000;
  color: #fff;
}

.comparison-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #F7E215, #33C1D7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features h4,
.plan h4 {
  font-weight: 600;
}

.features ul li {
  padding: 12px 0;
  font-size: 17px;
  color: #ddd;
}

.plan ul li {
  padding: 12px 0;
  font-size: 17px;
}

.plan {
  border-radius: 16px;
  padding: 20px;
}

/* .plan.highlight {
    border: 1px solid rgba(44, 232, 194, 0.4);
    box-shadow: 0 0 40px rgba(44, 232, 194, 0.15);
  } */

.yes {

  border-radius: 50%;
  background: -moz-linear-gradient(top, #F7E215 0%, #33C1D7 100%);
  background: -webkit-linear-gradient(top, #F7E215 0%, #33C1D7 100%);
  background: linear-gradient(to right, #F7E215 0%, #33C1D7 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.no {
  color: #cc1f23;
  background: rgba(255, 77, 77, 0.15);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .features {
    text-align: center;
  }
}


.solution-carteo {
  background: #000;
  color: #fff;
}





/* Share */
.share {
  background: #000;
  color: #fff;
}

/* Title */
.share__title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffe600, #5cffc7, #3bd6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Lists */
.share__list {
  padding-left: 0;
}

.share__list li {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

/* Icons */
.share__icon {
  color: #000;
  font-size: 14px;
  background: linear-gradient(to right, #F7E215 0%, #33C1D7 100%);
  padding: 6px;
  border-radius: 50%;
}

/* Card */
.share__card {
  background: linear-gradient(145deg, #0e0e0e, #151515);
  border-radius: 20px;
  padding: 30px;
  width: 320px;
  height: 200px;
  position: relative;
  box-shadow: 0 0 50px rgba(124, 255, 155, 0.25);
}

.share__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share__name {
  font-weight: 700;
  font-size: 1.1rem;
}

.share__role {
  color: #aaa;
  font-size: 0.9rem;
}

/* QR */
.share__qr {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: repeating-linear-gradient(45deg,
      #fff,
      #fff 4px,
      #000 4px,
      #000 8px);
}

/* NFC icon */
.share__nfc {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.3rem;
  opacity: 0.8;
}

/* Button */
.share__btn {
  background: linear-gradient(90deg, #ffe600, #5cffc7);
  border: none;
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(124, 255, 155, 0.6);
}

.share__btn i {
  background: #000;
  color: #5cffc7;
  padding: 8px;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 991px) {
  .share__card {
    margin-top: 40px;
  }
}








/* Review */
.review {
  background: #000;
}

.review-Content {
  max-width: 1200px;
  margin: 0 auto;
}

.review-Content .row {
  --bs-gutter-x: 25px;
  --bs-gutter-y: 25px;
}

.review-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(90deg, #F7E215, #33C1D7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.review-border {
  background: linear-gradient(to right, #F7E215, #33C1D7);
  padding: 1px;
  border-radius: 20px;
  height: 100%;
}

.review-card {
  border-radius: 20px;
  padding: 20px;
  background: #000;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}

.review-card .stars {
  color: #ffb400;
}

.review-card .quote-icon {
  font-size: 30px;
  position: absolute;
  top: -15px;
  left: 10px;
  color: #ffb400;
}

.review-card .review-text {
  font-size: 1.1rem;
  line-height: 1.5;
}

.review-card .review-author {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}

.review-card .review-author i {
  color: #ffb400;
}








/* SECTION BACKGROUND */
.order-section {
  padding: 120px 0;
  background: linear-gradient(90deg, #F7E215, #5be41f, #33C1D7);
}

/* CARD */
.order-card {
  background: #000;
  border-radius: 28px;
  padding: 60px 50px;
  max-width: 900px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
}

/* TITLE */
.order-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(90deg, #F7E215, #33C1D7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* INPUTS */
.custom-input {
  background: linear-gradient(180deg, #1b1b1b, #111);
  border: none;
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
}

.custom-input::placeholder {
  color: #777;
}

.custom-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #d9ff00;
  background: #111;
  color: #fff;
}

/* OFFERS */
.offer-option {
  color: #ccc;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-option input {
  display: none;
}

.offer-option .checkmark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 2px solid #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offer-option input:checked+.checkmark {
  background: linear-gradient(135deg, #d9ff00, #00ffd5);
  border-color: transparent;
}

.offer-option input:checked+.checkmark::after {
  content: "✓";
  color: #000;
  font-weight: bold;
}

.offer-option.active {
  color: #d9ff00;
}




.about-section {
  background-color: #0f1012;
  min-height: 100vh;
  padding: 80px 0;
}

.card-about-img img {
  width: 100%;
}

.description-about {
  text-align: center;
  font-size: 18px;
  margin: 0 auto;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***/
.limits-section {
  background-color: #000000;
  min-height: 100vh;
  padding: 80px 0;
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gradient-border {
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--yellow));
}

.gradient-border.left {
  background: linear-gradient(135deg, var(--cyan), var(--cyan), var(--yellow));
}

.gradient-border.center {
  background: linear-gradient(135deg, var(--cyan), var(--yellow), var(--cyan));
}

.gradient-border.right {
  background: linear-gradient(135deg, var(--yellow), var(--yellow), var(--cyan));
}

.card-inner img {
  width: 100%;
}



.card-text {
  margin-top: 24px;
  text-align: center;
}

.card-text p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.section-title {
  font-size: clamp(1.8rem, 2.1vw, 1rem);
  font-weight: 700;
  text-align: center;
  font-family: var(--heading-font);
  margin: 20px 0;
  padding: 15px 30px;
  /* Dégradé avec vos couleurs */
  background: linear-gradient(135deg, #33C1D7 0%, #F7E215 100%);
  /* Appliquer le dégradé au texte */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* Ombre pour améliorer la lisibilité */
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .card-inner img {
    height: 240px;
  }

  .limits-section {
    padding: 40px 0;
  }
}

@media (min-width: 992px) {
  .card-inner img {
    height: 300px;
  }
}

.limitdown-text {
  color: #fff;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  padding: 25px 0 40px;
  display: flex;
  font-size: 25px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 17px;
}




/*********/

.step-card {
  background-color: #161616;
  border-radius: 25px;
  font-weight: 800;
  padding: 30px 13px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-card p {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
}


.step-number {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #fbbf24, #22d3ee);
}

.card-liststep {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}

.step-arrow {
  font-size: 40px;
  margin-top: 9px;
}

.step-arrow {
  background: linear-gradient(to right, #fbbf24, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contentbottomstep h3 {
  font-size: 31px;
  font-weight: 700;
}

.contentbottomstep span {
  font-size: 18px;
  font-weight: 400;
}

.contentbottomstep {
  text-align: center;
  display: flex;
  padding-top: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.contentbottomstep>span,
h3 {
  color: #fff;
}



@media (min-width: 768px) {
  .card-liststep {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 62px;
  }

  .iconstepper {
    position: absolute;
    top: 43%;
    right: -44px;
  }

  
}

@media (max-width: 768px){
  .step-arrow{
    transform: rotate(90deg);
  }
}