@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  background-color: white;
}

.header-container,
.hero-container,
.how-it-works-container,
.features-container,
.pricing-container,
.contact-container,
.footer-container {
  padding: 0 5%;
}

.header,
.hero,
.how-it-works,
.features,
.pricing,
.contact,
.footer {
  max-width: 1200px;
  margin-inline: auto;
}

.header {
  background-color: white;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Roboto Condensed', sans-serif;
}

.header .logo h1 {
  width: 270px;
  height: 47px;
  background-image: url('img/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
  top: -2px;
  position: relative;
}

.header .menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: clamp(0.625rem, -3.5836rem + 8.7566vw, 3.75rem);
  font-size: 18px;
  font-weight: 500;
  color: #444;
}

.header .menu ul li a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.25s ease;
}

.header .menu ul li a:hover {
  border-bottom: 2px solid #25aadb;
}

.header .tryit .button {
  background-color: #25aadb;
  color: #fff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border-radius: 99px;
  text-wrap: nowrap;
}

.hero-container {
  background: linear-gradient(89.3deg, #470137 43.75%, #ffffff 127.96%);
}
.hero {
  padding-block: 30px;
}
.hero-content {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
  align-items: start;
  min-height: 280px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
}
.hero-content p {
  font-size: 26px;
  font-weight: 200;
  color: #fff;
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 300;
  margin: 0;
  position: relative;
  top: -6px;
  line-height: 1.3;
}
.hero-content .button {
  background-color: #fff;
  color: #444;
  padding: 14px 34px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  border-radius: 99px;
  font-family: 'Roboto Condensed', sans-serif;
  display: inline-block;
}
.hero-image {
  width: 45%;
  background-image: url('img/convert.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 260px;
}
.hero {
  display: flex;
}
.hero .button {
  font-size: 21px;
}
.how-it-works {
  padding-top: 1px;
  padding-bottom: 40px;
}
h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: #444;
  font-family: 'Roboto Condensed', sans-serif;
  margin-block: 40px;
}
.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.how-it-works-step {
  text-align: center;
  position: relative;
  top: -10px;
}

.how-it-works-step h3 {
  font-family: 'Roboto Condensed', sans-serif;
  margin: 0;
  margin-bottom: 6px;
  font-size: 28px;
  margin-top: 16px;
  font-weight: 500;
  color: #470137;
}

.how-it-works-step p {
  font-family: 'Roboto Flex', sans-serif;
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  color: #444;
  padding-inline: 10%;
}

.how-it-works-step .image {
  width: 100%;
  aspect-ratio: 300/181;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.how-it-works-step:nth-child(1) .image {
  background-image: url('img/1.png');
}
.how-it-works-step:nth-child(2) .image {
  background-image: url('img/2.png');
}
.how-it-works-step:nth-child(3) .image {
  background-image: url('img/3.png');
}
.features-container {
  background-color: #25aadb;
}
.features {
  padding-top: 1px;
  padding-bottom: 56px;
}
.features h2 {
  color: #fff;
}
.features .features-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}
.feature {
  font-family: 'Roboto Flex', sans-serif;
  color: #fff;
  display: flex;
  gap: 15px;
  align-items: center;
}
.feature .feature-image {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: white;
  border-radius: 16px;
}

.feature .feature-image {
  background-image: url('img/1.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 48px;
}

.feature:nth-child(1) .feature-image {
  background-image: url('img/1.svg');
}
.feature:nth-child(2) .feature-image {
  background-image: url('img/2.svg');
}
.feature:nth-child(3) .feature-image {
  background-image: url('img/3.svg');
}
.feature:nth-child(4) .feature-image {
  background-image: url('img/4.svg');
}
.feature:nth-child(5) .feature-image {
  background-image: url('img/5.svg');
}
.feature:nth-child(6) .feature-image {
  background-image: url('img/6.svg');
}
.feature:nth-child(7) .feature-image {
  background-image: url('img/7.svg');
}
.feature:nth-child(8) .feature-image {
  background-image: url('img/8.svg');
}
.feature:nth-child(9) .feature-image {
  background-image: url('img/9.svg');
}
.feature:nth-child(10) .feature-image {
  background-image: url('img/10.svg');
}
.feature h3 {
  margin: 0;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 500;
}
.feature p {
  margin: 0;
  font-size: 16px;
}

.pricing {
  padding-top: 1px;
  padding-bottom: 40px;
}

.pricing-content {
  position: relative;
}

.pricing-header .billing-toggle {
  margin: 0;
  position: absolute;
  right: 0;
  top: 10px;
}

.pricing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  min-height: 400px;
}
.pricing-step {
  background-color: #f0f0f0;
  border-radius: 16px;
  padding: 20px;
  font-family: 'Roboto Condensed', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.pro-banner {
  position: absolute;
  top: 20px;
  right: 0;
  /* width: 50%; */
  background-color: #25aadb;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  letter-spacing: 0.5px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.pricing-step h3 {
  font-size: 25px;
  font-weight: 500;
  color: #444;
  margin: 0;
  margin-bottom: 4px;
}

.pricing-step h4 {
  font-size: 50px;
  font-weight: 500;
  color: #444;
  margin: 0;
}
.pricing-step h4 span.price-label {
  font-size: 20px;
  font-weight: 300;
  color: #444;
  margin: 0;
}

.pricing-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 18px;
}
.pricing-step ul li {
  font-size: 16px;
  font-weight: 300;
  color: #444;
  margin-bottom: 4px;
  font-family: 'Roboto Flex', sans-serif;
}
.pricing-step a {
  text-decoration: none;
  color: #444;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Roboto Flex', sans-serif;
  display: inline-block;
  margin-top: 16px;
  text-align: center;
  border: 1px solid #25aadb;
  border-radius: 99px;
  padding: 10px 25px;
  display: block;
  background-color: #fff;
  color: #25aadb;
}
.pricing-step a span {
  font-size: 16px;
  font-weight: 300;
  color: #444;
  display: block;
  margin-top: 4px;
}

.pricing-step a.button-pro {
  background-color: #25aadb;
  color: #fff;
}
.pricing-step a.button-pro span {
  color: #fff;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: #888;
  margin-top: 24px;
  margin-bottom: 0;
  font-family: 'Roboto Flex', sans-serif;
}

/* User Quantity Selector */
.user-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ddd;
}

.user-quantity-label {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  font-family: 'Roboto Flex', sans-serif;
}

.user-quantity-control {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background-color: #fff;
  color: #444;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: 'Roboto Flex', sans-serif;
}

.qty-btn:hover {
  background-color: #f0f0f0;
}

.qty-btn:active {
  background-color: #e0e0e0;
}

.qty-value {
  width: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  font-family: 'Roboto Flex', sans-serif;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 6px 0;
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.billing-label {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  transition: color 0.3s ease;
  font-family: 'Roboto Condensed', sans-serif;
}

.billing-label.active {
  color: #444;
  font-weight: 500;
}

.billing-save {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #25aadb;
  padding: 3px 8px;
  border-radius: 99px;
  margin-left: 4px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #25aadb;
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: #25aadb;
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

.toggle-switch input:not(:checked) + .toggle-slider {
  background-color: #888;
}

.contact-container {
  color: #25aadb;
  background-color: #fff;
}
.contact {
  padding-top: 1px;
  padding-bottom: 40px;
}
.contact h2 {
  color: #444;
  margin-bottom: 22px;
}
.contact p {
  font-size: 22px;
  font-weight: 200;
  color: #444;
  margin: 0;
  font-family: 'Roboto Flex', sans-serif;
  text-align: center;
  line-height: 1.5;
}
.contact p a {
  color: #25aadb;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Roboto Flex', sans-serif;
}
.contact p a:hover {
  text-decoration: underline;
}
.contact .button {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background-color: #25aadb;
}

.footer-container {
  background-color: #444;
  color: #fff;
}
.footer {
  color: #ddd;
  font-size: 14px;
  font-weight: 300;
  font-family: 'Roboto Flex', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

@media (max-width: 768px) {
  .header-container,
  .hero-container,
  .how-it-works-container,
  .features-container,
  .pricing-container,
  .contact-container,
  .footer-container {
    padding: 0 16px;
  }
  .header {
    flex-direction: column;
    align-items: center;
    padding-block: 16px;
  }

  .header .logo h1 {
    margin-bottom: 8px;
  }

  .header .menu ul {
    gap: clamp(1rem, 0.2266rem + 3.4375vw, 1.6875rem);
  }

  .header .tryit {
    display: none;
  }

  .hero {
    padding-block: 32px;
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    width: 100%;
    min-height: 180px;
    padding-inline: 8px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 22px;
  }

  .hero .button {
    font-size: 18px;
    padding: 12px 24px;
  }

  .features .features-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing .pricing-steps {
    grid-template-columns: repeat(1, 1fr);
    max-width: 320px;
    margin-inline: auto;
  }

  .pricing-header .billing-toggle {
    position: relative;
    margin-top: 0;
    top: -26px;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .how-it-works .how-it-works-steps {
    grid-template-columns: repeat(1, 1fr);
    max-width: 360px;
    margin-inline: auto;
  }
  .features .features-steps {
    grid-template-columns: repeat(1, 1fr);
  }
}
