/**************************/
/* MODERN HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 250, 252, 0.98)
  );
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 7rem;
}

.main-nav-link.nav-cta:focus {
  color: #fff !important;
}

/* Style du badge d'innovation */
.innovation-badge {
  position: absolute;
  top: 10px;
  right: 90px;
  background-color: #ff5722; /* Couleur de fond */
  color: white; /* Couleur du texte */
  padding: 5px 10px; /* Espacement interne */
  border-radius: 5px; /* Coins arrondis */
  font-size: 12px; /* Taille de la police */
  font-weight: bold; /* Gras */
}

/* Positionnement relatif pour le conteneur de fonctionnalité */
.feature {
  position: relative;
}

.store {
  width: 70%;
  height: auto;
}

.benefit {
  width: 50%;
}

.about {
  font-size: 1.6rem;
  text-align: justify;
  line-height: 2.8rem;
}

.list-about {
  margin-left: 3rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #3e75bc;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #fff;
  background-color: #3e75bc;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #3e75bc;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* MODERN HERO SECTION */
/**************************/

.section-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 6rem 0 8rem 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

.section-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="5" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="15" r="0.4" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="8" r="0.2" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="12" r="0.6" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-box {
  animation: slideInLeft 1s ease-out;
}

.hero-img-box {
  animation: slideInRight 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-hero .heading-primary {
  color: white;
  font-size: 4.8rem;
  line-height: 1.1;
  margin-bottom: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-description {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  max-width: 90%;
}

.hero-cta-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cta-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
  animation: pulse 2s infinite;
}

.cta-icon {
  font-size: 2rem;
  animation: bounce 1s infinite;
}

.cta-text-new {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 400;
  font-style: italic;
}

.store-btn-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.store-btn-hero {
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2.5rem;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  text-decoration: none;
  min-width: 200px;
}

.store-btn-hero:hover {
  background: white;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.store-btn-hero img {
  height: 3.5rem;
  width: auto;
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 400;
  line-height: 1;
}

.btn-store {
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.2rem;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.store-btn-hero:hover .btn-shine {
  left: 100%;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  object-fit: cover;
  transform: translateX(0);
}

.hero-img:hover {
  transform: translateX(0) scale(1.02) rotate(1deg);
}

.hero-img-box {
  animation: slideInRight 1s ease-out;
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.hero {
  overflow: hidden;
}

.delivered-ccm {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 8rem;
}

.delivered-imgs {
  display: flex;
}

.delivered-imgs img {
  height: 7.8rem;
  width: 7.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.delivered-imgs img:last-child {
  margin: 0;
}

.delivered-text {
  font-size: 1.6rem;
  font-weight: 600;
}

.delivered-text span {
  color: #cf711f;
  font-weight: 700;
}

/**************************/
/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
}

.heading-featured-in {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: #888;
}

.logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
}

/**************************/
/* service IT WORKS SECTION */
/**************************/

.section-service {
  padding: 6.6rem 0;
}

.step-number {
  font-size: 7.2rem;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.6rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.step-img-box::before,
.step-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-img-box::before {
  width: 60%;
  /* height: 60%; */

  /* 60% of parent's width */
  padding-bottom: 60%;

  background-color: #3e75bc83;
  z-index: -2;
}

.step-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  background-color: #15315989;
  z-index: -1;
}

.step-img {
  width: 45%;
  /* z-index: 10; */
}

/* Définition de l'animation */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(
      20px
    ); /* Optionnel : ajoute un décalage vers le haut */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Optionnel : annule le décalage vers le haut */
  }
}

/* Appliquer l'animation uniquement lorsque la classe est active */
.fade-in {
  opacity: 0; /* Définit l'opacité à 0 pour l'effet de fondu initial */
}

.fade-in-active {
  animation: fade-in 1.5s ease-in-out forwards; /* Utilisation de l'animation "fade-in" avec une durée de 1 seconde et une accélération/décélération */
}

/* Modern Store Buttons */
.store-btn-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.store-btn {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.store {
  width: 16rem;
  height: auto;
  transition: all 0.3s ease;
}

.cta-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  margin-top: 2rem;
}

/* CTA Button improvements */
.cta-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.animate-slide-up {
  opacity: 0; /* Commencez avec l'élément caché */
  transform: translateY(50px); /* Déplacez l'élément vers le bas */
  transition: opacity 1s ease, transform 1s ease; /* Transition d'opacité et de transformation */
}

.animate-slide-up.active {
  opacity: 1; /* Rendez l'élément visible */
  transform: translateY(0); /* Déplacez l'élément vers le haut */
}

/* Animation de zoom */
@keyframes zoom-in {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-zoom-in {
  animation: zoom-in 1.5s ease-out forwards;
  opacity: 0; /* Commencez avec l'image cachée */
}

/**************************/
/* ccm SECTION */
/**************************/

.section-ccm {
  padding: 1.6rem 0;
  margin: 10rem;
}

.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}

.meal-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.tag--vegetarian {
  background-color: #51cf66;
}
.tag--vegan {
  background-color: #94d82d;
}
.tag--paleo {
  background-color: #ffd43b;
}

.meal-title {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #e67e22;
}

#ccm {
  text-align: center;
}

.meal-img {
  width: 80%;
  border-radius: 10px;
}

.all-recipes {
  text-align: center;
  font-size: 1.6rem;
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-testimonials h2 {
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  color: #667eea;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 5rem;
}

.testimonial {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.stars {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.testimonial blockquote {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info cite {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  font-style: normal;
}

.author-location {
  font-size: 1.2rem;
  color: #718096;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.trust-icon {
  font-size: 1.8rem;
}

.trust-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4a5568;
}

.partner-logos {
  margin-top: 4rem;
  text-align: center;
}

.partners-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 2.5rem;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  height: 3.5rem;
  max-width: 10rem;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/**************************/
/* ccm SECTION */
/**************************/

.propos-plan {
  border-radius: 11px;

  width: 75%;
}

.propos-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}

.propos-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.propos-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.feature-icon {
  color: #e67e22;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 1.8rem;
  color: #333;
  line-height: 3rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.6rem;
  line-height: 1.8;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #3e75bc, #153159);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #ffffff;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      #f3f3e161,
      rgba(243, 243, 225, 0.16)
    ),
    url("../img/1ereImage.png");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* MODERN FOOTER */
/**************************/

.footer {
  padding: 8rem 0 6rem;
  border-top: 1px solid rgba(226, 232, 240, 0.3);
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="20" fill="url(%23waves)"/></svg>');
  opacity: 0.5;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: rgba(102, 126, 234, 0.8);
  transform: translateY(-3px);
}

.social-icon {
  height: 2rem;
  width: 2rem;
  color: white;
}

.security-info {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.copyright {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: white;
  position: relative;
  z-index: 2;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin-top: 1rem;
  border-radius: 2px;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-link:hover,
.footer-link:active {
  color: #667eea;
  transform: translateX(5px);
}

.image-row {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

.image-row img {
  width: 23%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.image-row img:hover {
  transform: scale(1.05);
}

.second {
  margin-top: 10rem;
}

/**************************/
/* BACK2SCHOOL SECTIONS */
/**************************/

/* Promo Banner in Hero */
.promo-banner {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.promo-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.promo-banner p {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.promo-code {
  background: rgba(255, 255, 255, 0.2);
  padding: 1rem 2rem;
  border-radius: 25px;
  display: inline-block;
  margin: 1rem 0;
}

.promo-code span {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.promo-validity {
  font-size: 1rem;
  opacity: 0.9;
}

.cta-text {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: #333;
}

/* Modern Section Promo Back2School25 */
.section-promo {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
}

.section-promo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 50%
    );
}

.promo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.section-promo .promo-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
  color: white;
  padding: 4rem 3rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

.section-promo .promo-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-promo .promo-banner * {
  position: relative;
  z-index: 3;
}

.section-promo .promo-banner h2 {
  color: white;
  margin-bottom: 2.5rem;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-promo .promo-banner > p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  font-weight: 500;
}

.promo-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.25);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.benefit-item:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.35);
}

.benefit-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.section-promo .promo-code {
  background: rgba(255, 255, 255, 0.4);
  padding: 2.5rem 4rem;
  border-radius: 30px;
  display: inline-block;
  margin: 3rem 0 2rem;
  font-size: 2.2rem;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.section-promo .promo-code:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.5);
}

.section-promo .promo-code strong {
  font-size: 2.8rem;
  letter-spacing: 4px;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-promo .promo-validity {
  font-size: 1.5rem;
  opacity: 0.95;
  margin-top: 2rem;
  font-weight: 600;
}

/* Promo Details Section */
.promo-details {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem 3rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promo-details h3 {
  font-size: 1.8rem;
  color: #2d3748;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.service-item:hover {
  background: rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.service-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-item span:last-child {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
}

/* Promo Stats */
.promo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15),
    rgba(118, 75, 162, 0.15)
  );
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.3rem;
  color: #4a5568;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Promo Partners */
.promo-partners {
  margin-top: 3rem;
  text-align: center;
}

.promo-partners h4 {
  font-size: 1.8rem;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.partner-logos-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-partner-logo {
  height: 6rem;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.promo-partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.partner-name {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.4rem;
}

/* Modern Steps Section */
.section-steps {
  padding: 12rem 0;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    #f1f5f9 25%,
    #e2e8f0 50%,
    #cbd5e1 75%,
    #f8fafc 100%
  );
  position: relative;
  overflow: hidden;
}

.section-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(102, 126, 234, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(118, 75, 162, 0.06) 0%,
      transparent 60%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="steps-pattern" width="15" height="15" patternUnits="userSpaceOnUse"><circle cx="7.5" cy="7.5" r="1" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23steps-pattern)"/></svg>');
  animation: backgroundFloat 8s ease-in-out infinite alternate;
}

@keyframes backgroundFloat {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.9;
  }
}

.section-steps h2 {
  color: #1e293b;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 3px;
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%,
  100% {
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
}

.step-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 6rem 3rem 4rem 3rem;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.08);
  margin-top: 5rem;
  min-height: 32rem;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  text-align: left;
  height: 100%;
}

.step-image {
  flex-shrink: 0;
  position: relative;
  width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-image::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.1) 0%, 
    rgba(118, 75, 162, 0.08) 50%,
    rgba(102, 126, 234, 0.05) 100%);
  border-radius: 30px;
  z-index: -1;
  transition: all 0.4s ease;
}

.step-item:hover .step-image::before {
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.15) 0%, 
    rgba(118, 75, 162, 0.12) 50%,
    rgba(102, 126, 234, 0.08) 100%);
  transform: scale(1.02);
}

.step-image img {
  width: 16rem;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.step-item:hover .step-image img {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.2),
    0 15px 30px rgba(102, 126, 234, 0.15);
}

.step-text {
  flex: 1;
  padding-left: 2rem;
}

.step-item::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    45deg,
    #610d14,
    #8b1538,
    #dc2626,
    #610d14
  );
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.step-item:hover::after {
  opacity: 1;
}

.step-item:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 
    0 30px 60px rgba(102, 126, 234, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
}

.step-item:nth-child(1) {
  animation: slideUp 1s ease-out 0.2s both;
}

.step-item:nth-child(2) {
  animation: slideUp 1s ease-out 0.5s both;
}

.step-item:nth-child(3) {
  animation: slideUp 1s ease-out 0.8s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.step-text h3 {
  font-size: 2.4rem;
  color: #1e293b;
  margin-bottom: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 3;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.step-text p {
  font-size: 1.7rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 3;
  transition: color 0.3s ease;
}

.step-item:hover .step-text h3 {
  color: white;
}

.step-item:hover .step-text p {
  color: white;
}

/* Step Numbers - Using a separate element */
.step-number {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: numberBounce 2s ease-in-out infinite;
}

@keyframes numberBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.step-item:hover .step-number {
  transform: translateX(-50%) scale(1.15) rotate(360deg);
  box-shadow: 0 20px 45px rgba(97, 13, 20, 0.4);
  background: linear-gradient(135deg, #610d14, #dc2626);
  animation: none;
}

.step-item:nth-child(1) .step-number {
  animation-delay: 0.2s;
}

.step-item:nth-child(2) .step-number {
  animation-delay: 0.6s;
}

.step-item:nth-child(3) .step-number {
  animation-delay: 1s;
}

/* Modern Testimonials Section */
.section-testimonials {
  padding: 10rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  position: relative;
}

.section-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 107, 107, 0.1) 0%,
      transparent 50%
    );
}

.section-testimonials h2 {
  color: #2d3748;
  font-size: 3.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 4rem 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 40rem;
  flex: 0 0 auto;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(118, 75, 162, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial:hover::before {
  opacity: 1;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.testimonial:nth-child(1) {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.testimonial:nth-child(2) {
  animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  margin-bottom: 2.5rem;
  object-fit: cover;
  border: 4px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.testimonial:hover .testimonial-img {
  transform: scale(1.1);
  border-color: rgba(102, 126, 234, 0.5);
}

.testimonial blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #2d3748;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

.testimonial blockquote::before {
  content: '"';
  font-size: 3.2rem;
  color: rgba(102, 126, 234, 0.3);
  position: absolute;
  top: -1rem;
  left: -2rem;
}

.testimonial blockquote::after {
  content: '"';
  font-size: 3.2rem;
  color: rgba(102, 126, 234, 0.3);
  position: absolute;
  bottom: -2rem;
  right: -1rem;
}

.testimonial cite {
  font-size: 1.6rem;
  color: #4a5568;
  font-weight: 700;
  position: relative;
  z-index: 3;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 6rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.trust-logo {
  height: 5rem;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.trust-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Modern CTA Intermediate Section */
.section-cta-intermediate {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.section-cta-intermediate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="5" r="0.3" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="15" r="0.4" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="8" r="0.2" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="12" r="0.6" fill="rgba(255,255,255,0.12)"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

@keyframes backgroundShift {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.cta-content {
  text-align: left;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 1.2rem 2.4rem;
  border-radius: 40px;
  margin-bottom: 4rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.badge-text {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-title {
  color: white;
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 3rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 5rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

.store-btn-cta {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.6rem 2.4rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 20rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.store-btn-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.store-btn-cta::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

.store-btn-cta:hover::before {
  left: 100%;
}

.store-btn-cta:hover::after {
  opacity: 1;
}

.store-btn-cta:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.store-btn-cta .btn-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.store-btn-cta .btn-logo {
  width: 3.6rem;
  height: 3.6rem;
  opacity: 1;
  filter: none;
  color: white;
  flex-shrink: 0;
}

.store-btn-cta .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn-cta .btn-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.store-btn-cta .btn-store {
  color: white;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: all 0.3s ease;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 18rem;
}

.feature-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2.4rem;
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.feature-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.feature-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}

.cta-visual {
  position: relative;
  height: 80rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.visual-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05),
    transparent
  );
}

.floating-element {
  position: absolute;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.4;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-element.elem-1 {
  top: 8%;
  left: 3%;
  animation-delay: 0s;
}

.floating-element.elem-2 {
  top: 70%;
  right: 5%;
  animation-delay: 2s;
}

.floating-element.elem-3 {
  bottom: 10%;
  left: 8%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.hero-image-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-hero-image {
  width: 100%;
  max-width: 90rem;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 3px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease;
  filter: brightness(1.1) contrast(1.05) saturate(1.1);
  animation: heroFloat 6s ease-in-out infinite;
}

.main-hero-image:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7),
    0 0 0 4px rgba(255, 255, 255, 0.3);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: 400;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
}

.feature-icon {
  font-size: 1.8rem;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.store-buttons-enhanced {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.store-btn-enhanced {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 1.2rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 200px;
}

.store-btn-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: white;
}

.store-btn-enhanced img {
  width: 2.8rem;
  height: 2.8rem;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-subtitle {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  line-height: 1;
}

.store-title {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.2rem;
}

.cta-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: rotate(0deg) scale(1.05);
}

.phone-screen {
  width: 25rem;
  height: auto;
  border-radius: 20px;
  display: block;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
}

.float-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.float-2 {
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.float-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Modern Urgency Section */
.section-urgency {
  padding: 10rem 0;
  background: linear-gradient(
    135deg,
    #610d14 0%,
    #8b1538 30%,
    #b91c1c 50%,
    #dc2626 70%,
    #610d14 100%
  );
  position: relative;
  overflow: hidden;
}

.section-urgency::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 30% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(220, 38, 38, 0.3) 0%,
      transparent 60%
    );
  animation: backgroundPulse 3s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
  0% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.02) rotate(0.5deg);
  }
}

.urgency-banner {
  background: rgba(255, 255, 255, 0.15);
  padding: 6rem 4rem;
  border-radius: 40px;
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 1px rgba(255, 0, 0, 0.3);
  animation: urgentPulse 1.5s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 0 1px rgba(255, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 0 0 3px rgba(255, 0, 0, 0.6);
  }
}

.urgency-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 200, 200, 0.2),
    transparent
  );
  animation: rotate 3s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.urgency-banner h2 {
  color: white;
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  z-index: 3;
  animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3),
      0 0 20px rgba(255, 255, 255, 0.2);
  }
  100% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3),
      0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
  }
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 5rem 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 3.5rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  min-width: 12rem;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 0, 0, 0.2);
  animation: countdownPulse 1s ease-in-out infinite alternate;
}

@keyframes countdownPulse {
  0% {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 0, 0, 0.4);
  }
}

.countdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.countdown-item::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-size: 400% 400%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.countdown-item:hover::before {
  opacity: 1;
}

.countdown-item:hover::after {
  opacity: 1;
}

.countdown-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.countdown-item span {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  animation: numberGlow 1.5s ease-in-out infinite alternate;
}

@keyframes numberGlow {
  0% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4),
      0 0 15px rgba(255, 255, 255, 0.3);
  }
  100% {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.4),
      0 0 25px rgba(255, 255, 255, 0.5), 0 0 35px rgba(255, 255, 255, 0.2);
  }
}

.countdown-item label {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.urgency-banner > p {
  font-size: 1.8rem;
  opacity: 0.95;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

/* Security info in footer */
.security-info {
  font-size: 1.6rem;
  font-weight: 600;
  color: #3e75bc;
  margin-bottom: 1rem;
}

/* CTA Button improvements */
.cta-button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
