/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #0a0c12;
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: #5d36fd; 
  color: #ffffff;            
}

/* For Gecko browsers (Firefox) */
::-moz-selection {
  background-color: #5d36fd;
  color: #ffffff;
}


/*.preload {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #5a3de6;
  z-index: 100;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: all 0.3s;
}

.preload > * {
   transition: all 0.25s;
}

.preload.loaded > * {
  opacity: 0;
}

.preload.loaded {
  transition-delay: 0.25s;
  transform: translateY(100%);
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 7px solid #ffffff6b;
  border-block-start-color:  #fff;
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.preload .preload-text {
  background-image: linear-gradient(90deg, transparent 0% 16.66%, #fff 33.33% 50%,  transparent 66.66% 75%);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px #fff;
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
      0% {
        background-position: 100%;
      }
      100% {
        background-position: 0%;
      }
    }
*/

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  backdrop-filter: blur(10px);
  background: #090b1195;
  height: 65px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 99;
}

.menu-icon {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.rest {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1.2px;
  z-index: 5;
}

nav a {
  color: #bfc6e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

nav a.cta-nav {
  background: #6c47ff;
  color: #fff;
  padding: 7px 15px;
  border-radius: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav a.cta-nav:hover {
  background: #472db7;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


nav a:hover {
  color: #fff;
}

.lang-switch #lang-btn img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

#lang-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
}

.lang-switch {
  position: relative;
  display: inline-block;
  background-color: transparent;
  transform: translateY(10%);
}

.lang-menu {
  position: absolute;
  background: #1E1543;
  border: 1px solid #cccccc2d;
  right: 0;
  top: 100%;
  transform: translateX(40%);
}

.lang-menu button {
  color: #fff;
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  height: 50%;
  padding: 9px 15px;
  font-size: 1rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.lang-menu button.active {
  opacity: 1;
}

.lang-menu button:hover {
  text-shadow: 0 0 2px #fff;
}

.hidden {
  display: none;
}

.hero {
  background: radial-gradient(ellipse at center, rgba(72, 45, 140, 0.244) 0%, rgba(42, 26, 94, 0.2) 50%, rgba(10, 12, 18, 0.43) 80%, #0a0c12 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 60px 0;
  margin-top: 65px;
  height: calc(100vh - 65px);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 25%;
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 40px;
}

@media (max-width: 1100px) {
  .hero-content {
    gap: 90px;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 99;
}

.hero-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 900px;
  background: radial-gradient(ellipse at center,
      rgba(72, 45, 140, 0.2) 0%,
      rgba(108, 71, 255, 0.12) 25%,
      rgba(148, 112, 255, 0.105) 50%,
      rgba(10, 12, 18, 0.04) 75%,
      transparent 100%);
  border-radius: 40%;
  z-index: -1;
}

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

/* iPhone Mockup Styles */
.iphone-mockup {
  position: relative;
  width: 300px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.iphone-mockup::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center,
      rgba(72, 45, 140, 0.2) 0%,
      rgba(108, 71, 255, 0.12) 25%,
      rgba(148, 112, 255, 0.042) 50%,
      rgba(10, 12, 18, 0.04) 75%,
      transparent 100%);
  border-radius: 30%;
  z-index: -1;
}

.iphone-frame {
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  max-width: 100%;
}

.app-screen {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: auto;
  z-index: 1;
  border-radius: 25px;
  max-width: 85%;
}

.badge {
  background: #23243a;
  color: #bfc6e0;
  font-size: 1.2rem;
  padding: 8px 16px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-acces {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 3px solid #B156F9;
  border-radius: 12px;
  margin-bottom: 5px;
  background-color: #a87de913;
}

.hero-acces p {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background-image: linear-gradient(
    to right,
    #a87de9, /* Lighter shade at the start */
    #b54aff, /* Vibrant purple in the middle */
    #c26eff, /* Slightly lighter shade */
    #d08bff   /* Lightest shade at the end */
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero h1 {
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  line-height: normal;
}

.motivating-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #9470ff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.subtitle {
  font-size: 2rem;
  color: #bfc6e0;
  margin-bottom: 35px;
  text-align: left;
  line-height: 2.5rem;
  letter-spacing: 1px;
}

.highlight {
  color: #9470ff;
  font-size: 2rem;
  letter-spacing: 1px;
}

.cta-main {
  background: #6c47ff;
  color: #fff;
  padding: 13px 36px;
  border-radius: 24px;
  font-size: 1.1rem;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 16px 0 #6c47ff44;
  transition: all 0.3s ease;
}

.cta-main:hover {
  background: #4d31cb;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.415);
}

.partners-section {
  background: #08090f;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.free-access {
  background: #07080d;
  padding: 60px 0;
  text-align: center;
}

.free-access .container {
  max-width: 1300px;
}

.free-access-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.8px;
  color: #fff;
}

/*.free-access-subtitle {
  font-size: 1.3rem;
  color: #9470ff;
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 0.3px;
}*/

.offer-details {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}

.offer-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.feature-icon {
  flex-shrink: 0;
  transform: translateY(8%)
}

.icon-circle {
  width: 60px;
  height: 60px;
  /*background: linear-gradient(135deg, #6c47ff, #9470ff);*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.3px;
}

.feature-text p {
  font-size: 1rem;
  color: #bfc6e0;
  line-height: 1.6;
  letter-spacing: 0.2px;
  width: 90%;
}

.offer-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
}

.offer-image img {
  width: 100%;
  /*max-width: 400px;*/
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(1.25);
  transition: all 0.3s ease;
}

.offer-image img:hover {
  transform: scale(1.28);
}

.limited-offer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-section {
  text-align: center;
  padding: 40px 20px;
  background: rgba(108, 71, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(108, 71, 255, 0.1);
}

.early-access-text {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.get-access-btn {
  background: linear-gradient(135deg, #6c47ff, #9470ff);
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 25px rgba(108, 71, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.get-access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(108, 71, 255, 0.4);
  background: linear-gradient(135deg, #5a3de6, #8660ff);
}

.partners-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #bfc6e0;
  margin-bottom: 30px;
  letter-spacing: 0.3px;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  align-items: center;
  animation: slide 25s linear infinite;
  width: calc(220px * 18);
  /* 6 logos * 3 (tripled) * width */
}

.partner-logo {
  flex: 0 0 220px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
  /* background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);*/
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.partner-logo img {
  width: 100%;
  height: auto;
}

.logo-text {
  color: #bfc6e0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-220px * 6 - 360px));
    /* Move by width of 6 logos + margins */
  }
}

.features {
  background: #06090E;
  padding: 60px 0 40px 0;
  text-align: center;
  z-index: 1;
  position: relative;
}

.features h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.8px;
}

.section-desc {
  color: #bfc6e0;
  font-size: 1.3rem;
  margin-bottom: 55px;
  letter-spacing: 0.2px;
}

.feature-cards {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature-card {
  background: #05070B;
  border-radius: 5px;
  padding: 25px 22px;
  width: 350px;
  box-shadow: 0 2px 16px 0 #23243a22;
  border: 1px solid #ffffff36;
  text-align: center;
}

.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.icon-ai {
  background: #23243a;
  color: #a78bfa;
}

.icon-income {
  background: #23243a;
  color: #60a5fa;
}

.icon-gamified {
  background: #23243a;
  color: #f472b6;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.feature-card p {
  color: #bfc6e0;
  font-size: 1.1rem;
}

.partner-logos {
  text-align: center;
  padding: 30px 20px;
}

.partner-logos h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #bfc6e0;
}

.logos-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.logo-placeholder {
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.placeholder-text {
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #6c47ff, #9470ff);
  border-radius: 50%;
}

.author-name {
  color: #bfc6e0;
  font-size: 0.85rem;
  font-weight: 500;
}

.testimonials-section {
  background: #05070B;
  padding: 60px 0 60px 0;
  text-align: center;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.8px;
}

.testimonials-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}

.testimonials-slider {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
  margin-right: -15px;
  margin-left: 15px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 30px);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-content p {
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
}

.testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6c47ff, #9470ff);
  border-radius: 50%;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.author-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-title {
  color: #bfc6e0;
  font-size: 0.85rem;
  font-weight: 400;
}

.testimonial-nav {
  background: rgba(108, 71, 255, 0.1);
  border: 1px solid rgba(108, 71, 255, 0.3);
  color: #6c47ff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.testimonial-nav:hover {
  background: rgba(108, 71, 255, 0.2);
  border-color: rgba(108, 71, 255, 0.5);
  color: #9470ff;
}

.testimonial-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
  justify-content: center;
}

.star {
  color: #9470ff;
  font-size: 1.4  rem;
  text-shadow: 0 0 3px rgba(148, 112, 255, 0.3);
}

.steps {
  background: #040508;
  padding: 60px 0 60px 0;
  text-align: center;
}

.steps h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.8px;
}

.step-des {
  font-size: 1.5rem;
}

.steps-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.step {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 500px;
  text-align: left;
}

.step-number {
  background: #23243a;
  color: #fff;
  font-weight: 700;
  font-size: 1.7rem;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-self: center;
  justify-self: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;

}

.step:nth-child(1) .step-number {
  background: radial-gradient(circle at center, #4a00e0, #7b00ff);
  ;
}

.step:nth-child(2) .step-number {
  background: radial-gradient(circle at center, #f949a1, #9306ff);
  ;
}

.step:nth-child(3) .step-number {
  background: radial-gradient(circle at center, #049e61, #0382b4);
  ;
}

.step h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.step p {
  color: #bfc6e0;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

.some-info {
  padding: 60px 0 60px 0;
}

.some-info h2 {
  font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.8px;
    text-align: center;
}

.info-des {
    color: #bfc6e0;
    font-size: 1.3rem;
    margin-bottom: 55px;
    letter-spacing: 0.2px;
    text-align: center;
}

.info-content {
  display: flex;
  max-width: 1200px;
}

.info-content .blocks-con {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.info-content .info-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 20px 0px 20px 0px ;
}

.info-content .info-text {
  flex: 1;
  padding: 10px;
}

.info-content .info-img {
  display: flex;
  align-items: center;
  justify-content: right;
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.info-content .info-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.03);
  transition: all 0.3s ease;
}

.left-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
}

.left-des {
  line-height: 35px;
  color: #f1f1f1;
  margin-bottom: 1.5rem;
  font-size: 19px;
  letter-spacing: 0.3px;
}

.info-content .info-img img:hover {
  transform: scale(1.06);
}

.waitlist {
  background: #010203;
  padding: 60px 0 60px 0;
  text-align: center;
}

.waitlist h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.waitlist .section-desc {
  margin-bottom: 45px;
}

.form-con {
  border: 1px solid #ffffff22;
  width: 68%;
  border-radius: 10px;
  padding: 35px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.waitlist-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 90%;
  margin-bottom: 10px;
}

.waitlist-form input[type="email"] {
  padding: 14px 18px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  width: 70%;
  background: #181a23;
  color: #fff;
}

.waitlist-form input[type="email"]:-webkit-autofill,
.waitlist-form input[type="email"]:-webkit-autofill:hover,
.waitlist-form input[type="email"]:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  border: none;
  outline: 1px solid #181a23;
  -webkit-box-shadow: 0 0 0px 1000px #181a23 inset;
}

/**/


.waitlist-form button {
  width: 140px;
  letter-spacing: 0.4px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5px;
  background: #6c47ff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.waitlist-form button:hover {
  background: #4d31cb;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.415);
}

.form-note {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-top: 15px;
  letter-spacing: 0.1px;
  width: 84%;
}

footer {
  background: #07080d;
  color: #bfc6e0;
  text-align: center;
  padding: 20px 0 20px 0;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  color: black;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  z-index: 9999;
  display: flex;
  align-items: start;
  gap: 1rem;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.hidden {
  display: none;
}

.toast-close {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: #555;
  margin-top: 0.25rem;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}




.heart {
  color: #ff1f93;
  font-size: 1.2em;
}

/* Enhanced Responsive styles */
@media (max-width: 1250px) {

  .partner-logo {
    flex: 0 0 180px;
    height: 50px;
    margin: 0px 30px;
    border-radius: 8px;
}

  .feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .testimonials-slider{
    max-width: 900px;
  }

  .feature-card {
    width: 90%;
  }

  /* Testimonials responsive for tablets */
  .testimonials-title,
  .some-info h2,
  .free-access-title {
    font-size: 2.5rem;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 30px);
  }

  .testimonials-container {
    gap: 10px;
  }

  .security-info,
  .partner-logos,
  .testimonials {
    max-width: 500px;
    margin: 0 auto;
  }

  .form-con {
    width: 90%;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .motivating-headline {
    font-size: 2rem;
  }

  .hero-acces p {
    font-size: 1.2rem;
  }

  .badge {
    font-size: 1rem;
  }

  .subtitle {
    font-size: 1.7rem;
  }

  /* iPhone mockup responsive behavior for tablets */
  .hero-content {
    gap: 50px;
  }

  .iphone-mockup {
    width: 250px;
  }

  /* Ensure minimum touch targets */
  nav a.cta-nav {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
  }

  .cta-main {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .info-content .blocks-con {
    gap: 60px;
}

  /* Free access section responsive */
  .offer-content {
    gap: 40px;
  }

  /*.offer-image img {
    max-width: 350px;
  }*/
}

@media (max-width: 1040px) {
  .testimonials-slider {
    max-width: 800px;
}
.info-content .blocks-con {
  gap: 40px;
}

.left-title {
  font-size: 2rem;
}

.left-des {
  line-height: 33px;
  margin-bottom: 1.5rem;
  font-size: 18px;
  letter-spacing: 0.2px;
}
}

@media (max-width: 940px) {
  .testimonials-slider {
    max-width: 700px;
}
.info-content .blocks-con {
  gap: 40px;
}
.left-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.left-des {
  line-height: 30px;
  margin-bottom: 1.2rem;
  font-size: 17px;
  letter-spacing: 0.2px;
  padding-left: 10px;
  padding-right: 10px;
}
}

@media (max-width: 850px) {
  .partner-logo {
    flex: 0 0 120px;
    height: 40px;
    margin: 0px 25px;
    border-radius: 8px;
}

  .testimonials-slider {
    max-width: 600px;
    width: 100%;
}

.testimonial-card {
  flex: 0 0 calc(100% - 30px);
}

.info-content .info-block {
  flex-direction: column-reverse;
  gap: 15px;
  padding: 0;
  border: 1px solid #ffffff36;
  border-radius: 10px;
}

.info-content .info-block:nth-child(2){
  flex-direction: column;
}

.info-content .info-text {
  flex: 1;
  padding: 15px;
  text-align: center;
}

.left-des {
  line-height: 30px;
  margin-bottom: 1rem;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.info-des {
  color: #bfc6e0;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Free access section mobile */
.offer-content {
  flex-direction: column;
  gap: 40px;
}

.offer-features {
  gap: 25px;
}

.feature-item {
  gap: 15px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
}

.feature-text h3 {
  font-size: 1.2rem;
}

.offer-content {
  align-items: center;
}

.feature-item {
  width: 95%;
}

.feature-text p {
  font-size: 0.9rem;
  width: 100%;
}

/*.offer-image img {
  max-width: 300px;
}*/

.limited-offer-badge {
  font-size: 0.8rem;
  padding: 6px 12px;
}
}

@media (max-width: 750px) {

  /* Hero layout changes to stacked for mobile */
  .hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }


  .hero-text {
    align-items: center;
    text-align: center;
  }

  .subtitle {
    text-align: center;
  }

  .iphone-mockup {
    width: 200px;
  }


  .security-info,
  .partner-logos {
    padding: 25px 15px;
  }

  .security-info h3 {
    font-size: 1.2rem;
  }

  .partner-logos h4 {
    font-size: 1.1rem;
  }

  .testimonial {
    padding: 15px;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }

  /* Testimonials mobile styles */
  .testimonials-title {
    font-size: 2rem;
  }

  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-container {
    gap: 5px;
    margin-top: 30px;
    width: 100%;
  }

  .testimonials-slider {
    max-width: calc(100vw - 120px);
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 30px);
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .testimonial-content p {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .testimonial-author {
    justify-content: center;
  }

  .author-name {
    font-size: 1rem;
    font-weight: 600;
  }

  .testimonial-stars {
    justify-content: center;
    margin-bottom: 15px;
  }

  .star {
    font-size: 1.1rem;
  }

  .testimonial-nav {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .hero {
    height: auto;
    /*margin-top: 30px;*/
  }

}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .motivating-headline {
    font-size: 1.5rem;
  }

  .badge {
    font-size: 0.9rem;
  }

  .hero-acces {
    margin-bottom: 15px;
  }

  .hero-acces p {
    font-size: 1rem;
  }

  .features h2,
  .steps h2,
  .waitlist h2, .some-info h2,
  .free-access-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .badge {
    margin-bottom: 20px;
  }

  .subtitle {
    font-size: 1.3rem;
  }

  .highlight {
    font-size: 1.5rem;
  }

  .container {
    width: 98%;
  }

  .steps-list {
    gap: 30px;
  }

  .step {
    gap: 15px;
  }

  .form-con {
    width: 100%;
  }

  .step h4 {
    font-size: 1.2rem;
  }

  .step p {
    font-size: 1rem;
  }

  .step-number {
    margin-right: 0px;
    /* Ensure step numbers meet touch target requirements */
    min-width: 55px;
    min-height: 55px;
  }

  .info-content .blocks-con {
    padding-left: 10px;
    padding-right: 10px;
  }

  .info-content .info-text {
    padding: 0;
  }

  .waitlist-form {
    flex-direction: column;
    gap: 15px;
  }

  .waitlist-form input[type="email"] {
    border-radius: 8px;
    width: 100%;
    min-height: 44px;
    padding: 12px 18px;
  }

  .waitlist-form button {
    border-radius: 8px;
    width: 100%;
    min-height: 44px;
    padding: 12px 18px;
  }

  .get-access-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .early-access-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}
}

@media (max-width: 580px) {

  .left-title {
    font-size: 1.2rem;
  }
  
  .left-des {
    line-height: 25px;
    margin-bottom: 1rem;
    font-size: 14px;
  }

  /* Testimonials improvements for small mobile */
  .testimonials-title {
    font-size: 1.6rem;
  }

  .testimonials-slider {
    max-width: calc(100vw - 80px);
  }

  .testimonial-card {
    padding: 15px 12px;
    min-height: 160px;
    flex: 0 0 calc(100% - 30px);
  }

  .testimonial-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .testimonial-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  /* iPhone mockup further reduced for small mobile */
  .iphone-mockup {
    width: 200px;
  }

  /* Maintain proper touch targets even at smaller sizes */
  nav a.cta-nav {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-left: 0px;
  }

  nav {
    gap: 20px;
    padding: 20px 0.5rem;
    min-height: 120px;
  }

  .links {
    gap: 20px;
  }

  .rest {
    gap: 20px;
  }

  nav a {
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
  }

  .motivating-headline {
    font-size: 1.3rem;
  }

  .features h2,
  .steps h2,
  .waitlist h2, .some-info h2,
  .free-access-title {
    font-size: 1.55rem;
  }

  .container {
    width: 90%;
  }

  .section-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .form-con {
    padding: 30px 20px;
  }


  .feature-card h3 {
    font-size: 1.2rem;
    letter-spacing: 0.3px;
  }

  .feature-card p {
    font-size: 1rem;
  }

  .steps-list {
    margin-top: 10px;
  }

  .step-number {
    min-width: 55px;
    min-height: 55px;
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .step h4 {
    font-size: 1.1rem;
  }

  .waitlist .section-desc {
    margin-bottom: 25px;
  }

  .waitlist-form {
    width: 100%;
    gap: 15px;
  }

  .form-note {
    width: 100%;
  }

  .testimonials-container {
    padding: 0;
  }

  .waitlist {
    padding-bottom: 20px;
  }
}

@media (max-width: 450px) {

  /* Testimonials improvements for very small devices */
  .testimonials-title {
    font-size: 1.4rem;
  }

  .testimonials-slider {
    max-width: calc(100vw - 50px);
  }

  .testimonial-card {
    padding: 12px 10px;
    min-height: 140px;
    flex: 0 0 calc(100% - 30px);
  }

  .testimonial-content p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .author-name {
    font-size: 0.85rem;
  }

  .author-title {
    font-size: 0.75rem;
  }

  .testimonial-nav {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .star {
    font-size: 0.9rem;
  }

  .motivating-headline {
    font-size: 1.2rem;
  }

  .features h2,
  .steps h2,
  .waitlist h2, .some-info h2,
  .free-access-title {
    font-size: 1.4rem;
  }

  nav {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
    min-height: 140px;
  }

  /* Maintain minimum touch targets even at smallest sizes */
  nav a.cta-nav {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0px;
  }

  nav a {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
  }

  .links,
  .rest {
    gap: 25px;
  }
}

@media (max-width: 404px) {

  /* Final testimonials improvements for smallest devices */
  .testimonials-title {
    font-size: 1.2rem;
  }

  .testimonials-slider {
    max-width: calc(100vw - 40px);
  }

  .testimonial-card {
    padding: 10px 12px;
    min-height: 120px;
  }

  .testimonial-content p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .author-name {
    font-size: 0.8rem;
  }

  .testimonial-nav {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .star {
    font-size: 0.8rem;
  }

  .motivating-headline {
    font-size: 1.1rem;
  }

  .features h2,
  .steps h2,
  .waitlist h2, .some-info h2,
  .free-access-title {
    font-size: 1.3rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  /* Maintain minimum touch targets even at smallest breakpoint */
  nav a {
    font-size: 0.8rem;
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
  }

  nav a.cta-nav {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
  }

  .hero-content {
    transform: translateY(-5%);
  }

    .get-access-btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
}

@media (max-width: 740px) {
  .hero-content {
    transform: translateY(-5%);
  }
}

@media (max-width: 940px) {
  nav {
    position: fixed;
    top: -220%;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100px;
    background-color: #000;
    transition: all .3s ease 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 1rem;
    flex-direction: column;
    gap: 20px;
  }
  
  nav.active {
    top: 100%;
  }
  
  /* Enhanced mobile menu spacing and accessibility */
  .links {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .rest {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  /* Ensure all nav links have proper touch targets */
  nav a {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
  }
  
  nav a.cta-nav {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 20px;
  }
  
  .menu-icon {
    z-index: 5;
    display: block;
    position: relative;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .menu-icon span {
    top: 50%;
    transform: scale(1) translateY(-50%);
    width: 30px;
    left: 50%;
    margin-left: -15px;
  }
  
  .menu-icon span,
  .menu-icon:before,
  .menu-icon:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 30px;
    transition: all .2s ease 0s;
    background-color: #ffffff;
    left: 50%;
    margin-left: -15px;
  }
  
  .menu-icon::after {
    top: 50%;
    margin-top: -10px;
  }
  
  .menu-icon::before {
    top: 50%;
    margin-top: 7px;
  }
  
  .menu-icon.active:before {
    top: 50%;
    transform: rotate(45deg);
    margin-top: -1.5px;
  }
  
  .menu-icon.active:after {
    top: 50%;
    transform: rotate(-45deg);
    margin-top: -1.5px;
  }
  
  .menu-icon.active span {
    transform: scale(0) translateY(-50%);
  }
  
  /* Enhanced language switcher for mobile */
  .lang-switch #lang-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
  }
  
  .lang-menu button {
    min-height: 44px;
    padding: 12px 20px;
  }
}

@media (max-width: 700px) {
  nav {
    top: -500%
  }
}
