@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");

:root {
  --purple-primary: #7b2a8a;
  --purple-gradient: linear-gradient(
    90deg,
    #03001e 0%,
    #7303c0 57.69%,
    #ec38bc 81.25%,
    #fdeff9 100%
  );
  --green-footer: #c4d930;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.right-section {
  background: white;
  position: relative;
}

.logo {
  height: 2.5rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 3.75rem;
}

.headline {
  font-family: "Montserrat";
  font-weight: 700;
}

.app-badges {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.app-badge {
  height: 2.5rem;
}

.text-gredient {
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* fallback */
  font-weight: 700; /* optional, match parent */
}

.form-input {
  border: none;
  border-bottom: 0.125rem solid #e9ecef;
  border-radius: 0;
  padding: 1rem 0;
  background: transparent;
  font-size: 1rem;
}

.form-input:focus {
  border-bottom-color: var(--purple-primary);
  box-shadow: none;
  background: transparent;
}

.button-group {
  display: flex;
  align-items: center;
  background-color: var(--purple-primary);
  border-radius: 0.75rem;
  padding: 0.188rem;
}

.button-group .btn {
  flex: 1;
  margin: 0;
}

.btn-outline-purple {
  background-color: var(--purple-primary);
  color: white;
  padding: 0.75rem 1.875rem;
  border-radius: 0.75rem;
  font-weight: 500;
}

.btn-outline-purple:hover {
  color: white;
  padding: 0.75rem 1.875rem;
  font-weight: 500;
}

.btn-purple {
  border: none;
  color: white;
  padding: 0.75rem 1.875rem;
  border-radius: 0.75rem;
  font-weight: 500;
}

.btn-purple:hover {
  border: none;
  color: white;
  padding: 0.75rem 1.875rem;
  font-weight: 500;
}

.active-toggle {
  background-color: white !important;
  color: var(--purple-primary) !important;
  border-color: var(--purple-primary) !important;
}

.quantity-group {
  display: none;
  height: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.75rem;
  font-size: 1.125rem;
}

.quantity-group.show {
  display: flex;
}

.quantity-group button {
  border: 0;
  padding: 0.2rem;
  background: white;
  font-size: 1.75rem;
  font-weight: 600;
}

.quantity-input {
  width: 3.125rem;
  padding: 0.3125rem;
  background: #ffffff;
  box-shadow: 0rem 0rem 0.79rem rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 0.337rem;
  text-align: center;
  font-weight: 600;
  color: var(--purple-primary);
}

.connect-link {
  background: #ffffff;
  box-shadow: 0rem 0.599rem 1.028rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 1.45rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.connect-link:hover {
  background: var(--purple-primary);
  color: white;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.25rem 2.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 56.25rem;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 1rem;
  padding:0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.12);
}

.feature-icon {
  color: var(--purple-primary);
  font-size: 1.75rem;
  margin-right: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
}

.feature-gif {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  display: block;
}

.feature-text h5 {
  margin: 0;
  color: #171717;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0;
}

.team-image {
  position: relative;
  bottom: 0;
  right: 0;
  width: 100%;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem 0 0 0;
}

.footer {
  background: var(--green-footer);
  color: #000000;
  font-weight: 600;
  padding: 0.3125rem 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

.modal-content {
  border-radius: 0.9375rem;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-body {
  padding-top: 0;
}

/* Mobile First Responsive Design */
@media (max-width: 576px) {
  .container-fluid {
    padding: 0 1rem !important;
  }

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

  .logo {
    height: 2.1875rem;
  }

  .app-badge {
    height: 2.1875rem;
  }

  .headline {
    font-size: 1.8rem !important;
    text-align: center;
    margin-bottom: 2rem !important;
  }

  .form-input {
    font-size: 1rem;
    padding: 0.75rem 0;
  }

  .button-group {
    flex-direction: row;
    background: var(--purple-primary);
    padding: 0;
    gap: 0.625rem;
  }

  .btn-outline-purple,
  .btn-purple {
    width: 50%;
    background: var(--purple-primary);
    border: 1px solid var(--purple-primary);
  }

  .quantity-group {
    justify-content: center;
    margin-top: 0.9375rem;
  }

  .connect-link {
    width: 100%;
    text-align: center;
    padding: 0.9375rem 1.25rem;
    font-size: 1rem;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
    margin-bottom: 2rem;
  }

  .feature-item {
    padding: 0.5rem;
  }

  .feature-text h5 {
    font-size: 1rem;
  }

  .team-image {
    margin-top: 2rem;
    margin-bottom: 3.75rem;
  }

  .footer {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .container-fluid {
    padding: 0 1.5rem !important;
  }

  .headline {
    font-size: 2.2rem !important;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .button-group {
    flex-direction: row;
  }

  .quantity-group {
    margin-top: 0;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .container-fluid {
    padding: 0 2rem !important;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .team-image {
    margin-top: 2rem;
  }
}

@media (max-width: 991px) {
  .left-section,
  .right-section {
    padding: 1rem 0;
  }

  .row {
    margin: 0;
  }

  .col-lg-6 {
    padding: 0;
  }
}
