@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {

  --font-h1: 3.75rem;   /* 60px */
  --font-h2: 2.125rem;  /* 34px */
  --font-h3: 1.375rem;  /* 22px */
  --font-p-lg: 1.25rem; /* 20px */
  --font-p: 1rem;       /* 16px */

  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;


  --color-green: #9BDE4C;
  --color-dark: #25262C;
  --color-light: #E5E7EB;

  --gradient-green: linear-gradient(180deg, #9BDE4C 0%, #547829 100%);


  --shadow-custom: 
    0 9.55px 14.33px rgba(0, 0, 0, 0.1),
    0 3.82px 5.73px rgba(0, 0, 0, 0.1);

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

html {
  font-size: 16px; 
  scroll-behavior: smooth;
   overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-p);
  font-weight: var(--fw-regular);
  color: var(--color-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

nav {
  position: fixed;
}

.nav-container {
  margin: 0 auto;
  padding: 0px 80px;
}

.container {
  margin: 0 auto;
  padding: 40px 80px;
}

h1, h2, h3 {
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

h1 {
  font-size: var(--font-h1);
  color: var(--color-dark);
}

h2 {
  font-size: var(--font-h2);
}

h3 {
  font-size: var(--font-h3);
}

p {
  font-size: var(--font-p);
  font-weight: var(--fw-regular);
  color: #4B5563;
}

p.large {
  font-size: var(--font-p-lg);
  color: #4B5563;
  font-weight: var(--fw-regular);
  
}


button {
  font-family: 'Inter', sans-serif;
  font-size: var(--font-p);
  font-weight: var(--fw-semibold);
  padding: 20px 32px ;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}


.button-primary {
  background-color: var(--color-dark);
  color: var(--color-light);
}

.button-primary a {
  color: var(--color-light);
  text-decoration: none;
}

.button-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.button-primary:active {
  transform: translateY(0);
}


.button-secondary {
  background-color: var(--color-green);
  color: var(--color-dark);
}

.button-secondary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.button-secondary:active {
  transform: translateY(0);
}


/* Navbar */


.navbar {
  box-shadow: var(--shadow-custom);
  width: 100%;
  z-index: 99;
  background-color: #FFFFFF;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-links {
  display: flex;
  gap: 30px;

}

.navbar-link {
  list-style-type: none;
  text-decoration: none;
  color: var(--color-dark);
  position: relative;

}

.navbar-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  transition: .25s ease-out;
}

.navbar-link:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

/* Navbar Ends */

/* Hero */

.hero {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3rem;
  padding-block: 140px ;
  width: 50%;
}

.hero-content__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-content h1 span {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}

.hero-content__rating {
  display: flex;
  gap: 1rem;
}

.stars .fa-solid {
  color: #FACC15 ;
}

.hero-content__rating p {
  color: #4B5563;
}

.hero img {
  position: absolute;
  right: 5%;
  bottom: 0;
}

.circle {
  background: var(--gradient-green);
  color: transparent;
  height: 600px;
  width: 600px;
  border-radius: 50%;
  position: absolute;
  right: -15%;
  top: 10%;
  z-index: -1;

}


/* Resposivness */



/* Hero Ends */

/* Features Section */

.features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  padding-block: 70px ;
}

.features-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;  
}

.features-cards {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.card {
  padding: 2rem;
  box-shadow: var(--shadow-custom);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 380px;
  min-height: 300px;
  transition: .3s ease;

}

.card:hover {
  transform: translateY(-10px);
}

.card-icon {
  background-color: var(--color-green);
  padding: 1rem;
  border-radius: 16px ;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-ai {
  background-color: #3B82F6;
  padding: 1rem;
  border-radius: 16px ;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-track {
  background-color: #A855F7;
  padding: 1rem;
  border-radius: 16px ;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* How Section */

.how {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  background-color: #F9FAFB;
}

.how-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem;

}

.how-step:nth-child(odd) {
  flex-direction: row-reverse;
}



.how-step {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding-block:4rem ;
  flex-wrap: wrap;
}

.how-step__text {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}

.step-number-circle {
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9BDE4C;
  color: var(--color-light);
  border-radius: 50%;
}

/* Testimonials */

.testimonials {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: 6rem;
  gap: 6rem;
}

.testimonials-text{
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;

}

.testimonials-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-card {
  padding: 2rem;
  box-shadow: var(--shadow-custom);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 370px;
}

.testimonial-user {
  display: flex;
  gap: 1rem;
}

.testimonial-user__credits{
  display: flex;
  flex-direction: column;
}

/* Trial Section */

.trial {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background: var(--gradient-green);
  padding: 80px;
  text-align: center;
}

.trial h2 {
  font-size: 3rem;
  color: var(--color-light);
}

.trial p {
  color: var(--color-light);
}


/* Footer */

footer {
  background-color: var(--color-dark);
  padding: 3rem;
}



.footer-container {
  display: flex;

 
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #374151;
  padding-bottom: 3rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
}

.footer-info h3 {
  color: var(--color-light);
}

.footer-info p {
  color: #9CA3AF;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  
}

.footer-socials a {
  color: var(--color-light);

}

.footer-socials a li {
  list-style-type: none;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.footer-column p {
  color: var(--color-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
}


.footer-links a li {
  list-style-type: none;
}

.footer-links a li .fa-solid {
  margin-right: 1rem;
}

.credit {
  text-align: center;
}



@media (max-width: 1120px) {

  .circle {
    display: none;
  }

  .hero img {
    display: none;
  }

  .hero{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .footer-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}


.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1001;
  transition: all 0.3s ease;
}




/* Full-page mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(37, 38, 44, 0.98) 0%, rgba(37, 38, 44, 0.95) 100%);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  transform: translateY(50px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.close-menu {
  position: absolute;
  top: 12px;
  right: 90px;
  background: none;
  border: none;
  color: var(--color-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1002;
}

.close-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
  padding: 0;
}

.mobile-menu-links li {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
}

.mobile-menu-link {
  color: var(--color-light);
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}


/* Slide in animation */
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


body.menu-open {
  overflow: hidden;
}

/* Responsive styles */
@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .mobile-menu-link {
    font-size: 2rem;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .container {
    padding: 20px;
  }
}