/* ################################################################################################################
###########  GENERAL DESKTOP  #####################################################################################
################################################################################################################### */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #718096;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--color);
  color: var(--color);
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.cta-button:hover {
  background: transparent;
  transform: translateX(1px);
  box-shadow: 0px 0px 20px 0px var(--color);
}

.cta-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin: 0;
}

/* ################################################################################################################
###########  GENERAL MOBILE  ######################################################################################
################################################################################################################### */

@media (max-width: 768px) {
  seXXction {
    margin-top: 0px !important; /* remove gap in between sections in mobile */
  }

  .conXXtainer {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

/* ################################################################################################################
###########  HERO DESKTOP  ########################################################################################
################################################################################################################### */

.hero {
  max-width: 1600px;
  padding: 0.5rem 1.75rem 0.2rem 1.75rem; 
  margin: auto; 

  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/*
.hero-content {
  padding: 0rem;
}
  */

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 0 3px var(--color), 0 0 8px var(--color), 0 0 40px var(--color);
}

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

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.feature-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #FFD700;
}

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

/* ################################################################################################################
###########  HERO MOBILE  #########################################################################################
################################################################################################################### */

@media (max-width: 768px) {
  .hero {
    display: inline-block;
    overflow-y: hidden;
    padding: 1.75rem;
  }

  .hero-content {
    /*display: inline-block;*/
    top: 120px;
    text-align: left;
  }

  .hero-title {
    font-size: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-subtitle {
    padding-bottom: 2rem;
    text-align: left;
  }

  .hero-text {
    width: calc(100vw - 4rem);
    padding-bottom: 0rem;
  }

  .hero-features {
    display: none;
  }

  .hero-visual {
    /*display: none;*/
    padding-bottom: 20rem;
  }

  .feature-item {
    justify-content: center;
  }

  .hero-cta {
    display: none;
    text-align: center;
    margin-top: 10rem;
    scale: 2;
  }

  .cta-note {
    display: none;
  }
}

/* ################################################################################################################
###########  READ MORE / USAGE DESKTOP  ###########################################################################
################################################################################################################### */

.usage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #00ACCF 0%, #d4d4d4 100%);
  position: relative;
  overflow: hidden;
}

.usage::before, .usage::after {
  content: '';
  position: absolute; 
  top: 0; right: 0; bottom: 0; left: 0;
  margin: 0; padding: 0;
  pointer-events: none;
}

.usage-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 0rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.usage-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.usage-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-shadow: 0 0 5px #FFF, 0 0 15px #FFF, 0 0 60px #FFF;
  text-align: left;
}

.usage-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.usage-text {
  color: white;
}

.usage-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-top: 3rem;
}

/* ################################################################################################################
###########  READ MORE / USAGE MOBILE  ############################################################################
################################################################################################################### */

@media (max-width: 768px) {
  .usage-visual {
    margin-top: -5rem;
    scale: 1.15;
  }

  .usage-features {
    display: '';
    float: left;
    margin-bottom: 3rem;
    padding-top: 3rem;
  }  
}

/* ################################################################################################################
###########  TESTIMONIALS DESKTOP  ################################################################################
################################################################################################################### */

.what-others-say {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #aba6c0 0%, #efeef5 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: #f8f9ff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(126, 87, 194, 0.1);
  border-color: #7E57C2;
}

.testimonial-content {
  margin-bottom: 2rem;
}

.stars {
  color: #FFD700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: #4A5568;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

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

.author-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.author-info h4 {
  color: #2D3748;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.author-info p {
  color: #718096;
  font-size: 0.875rem;
  margin: 0;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #7E57C2;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.step-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(126, 87, 194, 0.15);
}

.step-icon {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7E57C2 0%, #A855F7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(126, 87, 194, 0.3);
}

.step-letter {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
}

.step-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #7E57C2;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 1rem;
}

.step-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.step-features {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: linear-gradient(135deg, #7E57C2 0%, #A855F7 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ################################################################################################################
###########  TESTIMONIALS MOBILE  #################################################################################
################################################################################################################### */

@media (max-width: 768px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .step-card {
    padding: 2rem;
  }

  .step-features {
    flex-direction: column;
    align-items: center;
  }
}
