:root {
  --primary-font: "Gentium Basic", serif;
  --secondary-font: "Roboto", sans-serif;
  --text-dark: #0c1119;
  --text-gray: #6b6b6b;
  --text-light: #ffffff;
  --bg-dark: #12161f;
  --bg-light: #f5f4f5;
  --bg-pink: #f6efe9;
  --gradient-btn: linear-gradient(90deg, #16065f 0%, #571250 50%, #f16e2c 100%);
  --border-color: #e5e5e5;
}

body {
  font-family: var(--primary-font);
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

.text-gradient {
  background: var(--gradient-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: var(--gradient-btn);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-gradient:hover {
  opacity: 0.9;
  color: white;
}

.btn-gradient-icon {
  font-size: 0.8rem;
}

.section-padding {
  padding: 80px 0;
}

.sub-heading {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 20%;
  color: #c89c6b;
  margin-bottom: 24px;
  font-weight: 400;
  font-family: var(--secondary-font);
}

/* Navbar */
.navbar {
  padding: 20px 0;
}

.navbar-brand img {
  height: 35px;
}

.nav-link {
  color: var(--text-dark) !important;
  font-size: 18px;
  font-weight: 400;
  margin: 0 10px;
}
/* Hero Section */
.hero-section {
  padding: 60px 0 100px;
}

.hero-heading {
  font-size: 115px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 30px;
  font-family: var(--primary-font);
}

.hero-heading span {
  display: block;
}

.hero-heading .impact {
  color: #d79f7a;
  background: linear-gradient(90deg, #d79f7a, #a66a46);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.hero-text {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 500px;
  color: var(--text-dark);
  line-height: 160%;
  font-family: var(--secondary-font);
}

.app-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.app-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.app-link i {
  font-size: 1.2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

/* Problem Section */
.problem-section {
  padding: 10px 0px 70px 0px;
  text-align: center;
}

.problem-section h2 {
  margin-bottom: 70px;
  font-size: 55px;
  font-weight: 400;
  font-family: var(--primary-font);
}

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

.problem-card h5 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  color: var(--text-dark);
  font-family: var(--secondary-font);
}

/* Solution Section (Dark) */
.solution-section {
  background-color: var(--text-dark);
  color: var(--text-light);
  text-align: center;
  padding: 100px 0;
}

.solution-section h2 {
  color: var(--text-light);
  font-size: 55px;
  font-weight: 400;
  margin-bottom: 70px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--primary-font);
  line-height: 100%;
}

.solution-section .sub-heading {
  color: #c89c6b;
}

.solution-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #454d5e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7b0c3;
}

.solution-card h5 {
  color: var(--text-light);
  font-family: var(--primary-font);
  font-size: 1.1rem;
  font-weight: 600;
}

.solution-card p {
  color: #8c96a9;
  font-size: 0.9rem;
}

/* VIP Section */
.vip-section {
  padding: 100px 0;
}

.vip-heading {
  font-size: 55px;
  line-height: 60px;
  font-weight: 400;
  margin-bottom: 25px;
  max-width: 500px;
  font-family: var(--primary-font);
}
.vip-text {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 400;
  color: var(--text-dark);
  max-width: 500px;
  font-family: var(--secondary-font);
}

.vip-list {
  list-style: none;
  padding: 0;
}

.vip-list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
  max-width: 350px;
}

.vip-list-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fcf4ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d79f7a;
  flex-shrink: 0;
}

.vip-list-item h5 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.vip-list-item p {
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  color: var(--text-dark);
  font-family: var(--secondary-font);
}
.vip-wrap {
  max-width: 500px;
}
.vip-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Waitlist Section */
.waitlist-wrapper {
  background-color: #efe7e2;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

.waitlist-wrapper h2 {
  font-size: 35px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 400;
  font-family: var(--primary-font);
  line-height: 100%;
}
.waitlist-wrapper p {
  font-size: 22px;
  max-width: 450px;
  font-weight: 400;
  color: var(--text-dark);
  font-family: var(--secondary-font);
  line-height: 160%;
  margin-bottom: 0;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}

.waitlist-form input {
  width: 580px;
  border: 1px solid #dbdbdb;
  background: #fcfaf7;
  padding: 20px 24px;
  border-radius: 20px;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 160%;
  font-family: var(--secondary-font);
}

.waitlist-form input::placeholder {
  color: #6c6e72;
}

.waitlist-form .btn-gradient {
  padding: 20px 26px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 20px;
  text-transform: uppercase;
  color: var(--text-light);
}
.waitlist-image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  max-width: 40%;
}

/* How it works */
.how-it-works {
  text-align: center;
  padding: 0 0 20px;
}

.how-it-works h2 {
  font-size: 55px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 72px;
  font-family: var(--primary-font);
}

.step-card {
  text-align: left;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #d4c1b3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4c1b3;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.step-card h5 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  font-family: var(--secondary-font);
}

/* Trusted By */
.trusted-by {
  text-align: center;
  padding: 0px 0px 50px 0px;
}

.trusted-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.trusted-heading::before,
.trusted-heading::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid #c89c6b;
}

.trusted-heading span {
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 160%;
  color: #c89c6b;
  font-family: var(--secondary-font);
}

.trusted-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trusted-logos img {
  width: auto;
  filter: none;
  opacity: 1;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 100px 0 50px;
}

.footer h2 {
  color: var(--text-light);
  font-size: 35px;
  max-width: 900px;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--primary-font);
}
.footer h2 .highlight {
  color: #c89c6b;
  font-weight: 400;
  font-size: 55px;
  font-family: var(--primary-font);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #282d36;
  font-size: 16px;
  color: #86888c;
  font-family: var(--secondary-font);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links a {
  color: #86888c;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #8c96a9;
  font-size: 1.1rem;
}

/* Custom App Dropdown */
.app-dropdown .dropdown-toggle {
  background: var(--gradient-btn);
  color: white;
  border: none;
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  min-width: 230px;
  font-size: 18px;
  font-family: var(--primary-font);
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}
.footer-dropdown .dropdown-toggle {
  background: transparent;
  color: white;
  border: 1px solid #fff;
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  min-width: 230px;
  font-size: 18px;
  font-family: var(--primary-font);
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}

.footer-dropdown .dropdown-toggle::after {
  display: none; /* hide default caret */
}

.app-dropdown .dropdown-toggle::after {
  display: none; /* hide default caret */
}
.footer-dropdown .dropdown-toggle[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.app-dropdown .dropdown-toggle[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.footer-dropdown .dropdown-toggle .icon-up {
  display: none;
}

.app-dropdown .dropdown-toggle .icon-up {
  display: none;
}

.footer-dropdown .dropdown-toggle[aria-expanded="true"] .icon-down {
  display: none;
}

.app-dropdown .dropdown-toggle[aria-expanded="true"] .icon-down {
  display: none;
}

.footer-dropdown .dropdown-toggle[aria-expanded="true"] .icon-up {
  display: inline;
}

.app-dropdown .dropdown-toggle[aria-expanded="true"] .icon-up {
  display: inline;
}

.app-dropdown .dropdown-menu {
  border: none;
  padding: 0;
  margin-top: 0 !important;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 100%;
  overflow: hidden;
}
.footer-dropdown .dropdown-menu {
  border: none;
  padding: 0;
  margin-top: 0 !important;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  min-width: 100%;
  overflow: hidden;
}

.app-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 15px;
  transition: background-color 0.2s ease;
}
.footer-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 15px;
  transition: background-color 0.2s ease;
}

.app-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}
.footer-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}

.app-dropdown .dropdown-item i.fa-google-play {
  font-size: 2rem;
  color: var(--text-dark);
}
.footer-dropdown .dropdown-item i.fa-google-play {
  font-size: 2rem;
  color: var(--text-dark);
}

.app-dropdown .dropdown-item i.fa-apple {
  font-size: 2.3rem;
  color: var(--text-dark);
}
.footer-dropdown .dropdown-item i.fa-apple {
  font-size: 2.3rem;
  color: var(--text-dark);
}

.app-dropdown .store-text {
  display: flex;
  flex-direction: column;
}

.footer-dropdown .store-text {
  display: flex;
  flex-direction: column;
}

.app-dropdown .store-text .small {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0px;
}

.footer-dropdown .store-text .small {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0px;
}
.app-dropdown .store-text .bold {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  font-family: var(--primary-font);
}

.footer-dropdown .store-text .bold {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  font-family: var(--primary-font);
}

.app-dropdown .dropdown-divider {
  margin: 0;
  border-color: #e9ecef;
}
.footer-dropdown .dropdown-divider {
  margin: 0;
  border-color: #e9ecef;
}

.hero-sub-heading {
  color: #c89c6b;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 20%;
  font-family: var(--secondary-font);
}

.container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}

/* partner with us  */
.partner-section {
  padding: 0px 0px 80px 0px;
}

.subs-heading {
  color: #c89c6b;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
  font-family: var(--secondary-font);
}

.main-title {
  font-size: 55px;
  font-weight: 400;
  color: #0c1119;
  line-height: 100%;
  margin-bottom: 24px;
  font-family: var(--primary-font);
}
.description {
  font-size: 22px;
  font-weight: 400;
  color: #0c1119;
  line-height: 160%;
  font-family: var(--secondary-font);
}

.form-card {
  background-color: #efe7e2;
  padding: 40px;
  border-radius: 30px;
}

.form-label {
  font-size: 16px;
  font-weight: 400;
  color: #0c1119;
  margin-bottom: 10px;
  font-family: var(--secondary-font);
}

.form-control {
  border: 1px solid #dbdbdb;
  background: #fcfaf7;
  padding: 20px 24px;
  border-radius: 20px;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 160%;
  font-family: var(--secondary-font);
}

.form-control::placeholder {
  color: #6c6e72;
}

textarea.form-control {
  min-height: 120px;
}

.btn-submit {
  background: var(--gradient-btn);
  border: none;
  color: #ffffff;
  padding: 20px 26px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 1rem;
}

.btn-submit:hover {
  opacity: 0.9;
  color: white;
}
input.form-control:focus {
  outline: none;
  box-shadow: none;
}
textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}

/* phone-image */
.phones-showcase {
  padding: 0px;
  overflow: hidden;
}

.showcase-wrapper {
  position: relative;
  text-align: center;
}

.bg-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.phones-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-width: 850px;
  z-index: 2;
}
@media (min-width: 1200px) {
  .waitlist-form input {
    width: 580px;
  }
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nav-link {
    font-size: 15px !important;
    margin: 0 5px !important;
  }
  .app-dropdown .dropdown-toggle {
    min-width: 170px;
    padding: 12px 15px;
    font-size: 15px;
    gap: 8px;
  }
  .app-dropdown .dropdown-menu {
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    top: 100% !important;
  }
  .app-dropdown .dropdown-item {
    padding: 12px 14px;
    gap: 6px;
  }
  .app-dropdown .store-text .bold {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1199px) {
  .hero-heading {
    font-size: 3.5rem;
  }
  .navbar-brand img {
    height: 28px;
  }
  .waitlist-image {
    display: none;
  }
  .waitlist-wrapper {
    text-align: center;
    padding: 40px 20px;
  }
  .waitlist-wrapper p {
    margin-left: auto;
    margin-right: auto;
  }
  .waitlist-form {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .trusted-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    gap: 40px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .trusted-logos::-webkit-scrollbar {
    display: none;
  }
  .trusted-logos img {
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  .vip-wrap {
    max-width: 100%;
  }
  .vip-heading {
    max-width: 100%;
  }
  .vip-text {
    max-width: 100%;
  }
  .vip-list-item {
    max-width: 100%;
  }
  .waitlist-wrapper p {
    max-width: 700px;
  }
  .form-card {
    background-color: #efe7e2;
    padding: 20px;
    border-radius: 30px;
  }
  .form-control {
    padding: 16px 20px;
  }
}

@media (max-width: 991px) {
  .phones-image {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .phones-image {
    width: 95%;
  }
}

@media (min-width: 1024px) {
  .phones-showcase {
    padding: 110px 0px;
    overflow: hidden;
  }
  .phones-image {
    width: 65%;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 65px;
  }
  .problem-card,
  .solution-card,
  .step-card {
    margin-bottom: 30px;
  }

  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero-text {
    max-width: 100%;
  }
  .problem-section h2 {
    font-size: 58px;
    text-align: start;
  }
  .sub-heading {
    text-align: start;
  }
  .solution-section h2 {
    max-width: 100%;
  }
  .waitlist-wrapper p {
    max-width: 500px;
  }
  .how-it-works h2 {
    margin-bottom: 50px;
    text-align: start;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
  .footer-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin: 20px 0px;
  }
  .vip-wrap {
    max-width: 100%;
  }
  .vip-heading {
    max-width: 100%;
  }
  .vip-text {
    max-width: 100%;
  }
  .vip-list-item {
    max-width: 100%;
  }
  .app-dropdown .dropdown-toggle {
    background: var(--gradient-btn);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-decoration: none;
    min-width: 230px;
    font-size: 18px;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
  }
  .form-card {
    padding: 25px 20px;
  }
  .form-control {
    padding: 16px 20px;
  }
  .phones-showcase {
    padding: 90px 0px 120px;
    overflow: hidden;
  }
  .phones-image {
    width: 65%;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 44px;
  }
  .app-links {
    flex-direction: column;
    gap: 10px;
  }
  .waitlist-form {
    align-items: center;
  }
  .waitlist-form input {
    width: 100%;
  }
  .waitlist-form .btn-gradient {
    width: 100%;
    justify-content: center;
  }
  .footer h2 {
    font-size: 2rem;
  }
}

@media (max-width: 425px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-section {
    padding: 40px 0 100px;
  }
  .hero-heading {
    font-size: 52px;
  }
  .problem-section h2 {
    margin-bottom: 60px;
    font-size: 46px;
    text-align: start;
  }
  .solution-section h2 {
    font-size: 46px;
  }
  .sub-heading {
    text-align: start;
  }

  .vip-heading {
    font-size: 45px;
    line-height: 100%;
  }
  .how-it-works h2 {
    font-size: 55px;
    margin-bottom: 50px;
    text-align: start;
    line-height: 100%;
  }
  .how-it-works {
    padding: 0 0 20px;
  }
  .trusted-heading {
    margin-bottom: 0px;
  }
  .trusted-heading span {
    padding: 0px;
    text-align: start;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin: 15px 0px;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
  .app-dropdown .dropdown-toggle {
    background: var(--gradient-btn);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-decoration: none;
    min-width: 230px;
    font-size: 18px;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
  }
  .hero-text {
    font-size: 20px;
  }
  .hero-text {
    font-size: 20px;
  }
  .main-title {
    font-size: 42px;
  }
  .description {
    font-size: 20px;
  }
  .form-card {
    padding: 25px 15px;
  }
  .form-control {
    padding: 12px 18px;
  }
  .form-label {
    margin-bottom: 6px;
  }
  .phones-showcase {
    padding: 90px 0px;
    overflow: hidden;
  }
  .phones-image {
    width: 80%;
  }
  .form-control::placeholder {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-section {
    padding: 40px 0 81px;
  }
  .hero-heading {
    font-size: 48px;
  }
  .problem-section h2 {
    margin-bottom: 60px;
    font-size: 44px;
    text-align: start;
  }
  .sub-heading {
    text-align: start;
  }
  .vip-heading {
    font-size: 48px;
    line-height: 100%;
  }
  .how-it-works h2 {
    font-size: 55px;
    margin-bottom: 60px;
    text-align: start;
    line-height: 100%;
  }
  .how-it-works {
    padding: 0 0 20px;
  }
  .trusted-heading {
    margin-bottom: 0px;
  }
  .trusted-heading span {
    padding: 20px 0px;
    text-align: start;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin: 15px 0px;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
  .solution-section h2 {
    font-size: 42px;
  }
  .app-dropdown .dropdown-toggle {
    background: var(--gradient-btn);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-decoration: none;
    min-width: 230px;
    font-size: 18px;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
  }
  .hero-text {
    font-size: 20px;
  }
  .hero-text {
    font-size: 20px;
  }
  .main-title {
    font-size: 42px;
  }
  .description {
    font-size: 20px;
  }
  .form-card {
    padding: 25px 15px;
  }
  .form-control {
    padding: 12px 18px;
  }
  .phones-showcase {
    padding: 70px 0px;
    overflow: hidden;
  }
  .phones-image {
    width: 75%;
  }
  .form-control::placeholder {
    font-size: 16px;
  }
  .solution-section {
    padding: 80px 0;
  }
  .vip-section {
    padding: 80px 0;
  }
  .waitlist-wrapper {
    margin-bottom: 80px;
  }
}

@media (max-width: 320px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-brand img {
    height: 30px;
  }
  .problem-section h2 {
    font-size: 48px;
    text-align: left;
    line-height: 100%;
  }
  .hero-heading {
    font-size: 44px;
  }
  .sub-heading {
    text-align: left;
  }
  .vip-heading {
    font-size: 38px;
    line-height: 100%;
  }
  .waitlist-wrapper p {
    font-size: 14px;
  }
  .waitlist-wrapper h2 {
    font-size: 26px;
  }
  .vip-text {
    font-size: 20px;
  }
  .how-it-works h2 {
    font-size: 40px;
    text-align: start;
    margin-bottom: 50px;
    line-height: 100%;
  }
  .how-it-works {
    text-align: center;
    padding: 10px 0px;
  }
  .footer {
    padding: 80px 0 50px;
  }
  .footer h2 {
    font-size: 30px;
  }
  .footer h2 .highlight {
    font-size: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
  .footer-links {
    gap: 20px;
    flex-direction: column;
    margin: 15px 0px;
  }
  .trusted-heading span {
    padding: 25px 0px;
    text-align: center;
  }
  .solution-section h2 {
    font-size: 42px;
  }
  .solution-section {
    padding: 80px 0px;
  }
  .problem-card,
  .solution-card,
  .step-card {
    margin-bottom: 11px;
  }
  .app-dropdown .dropdown-toggle {
    background: var(--gradient-btn);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-decoration: none;
    min-width: 230px;
    font-size: 18px;
    font-family: var(--primary-font);
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
  }
  .hero-text {
    font-size: 20px;
  }
  .main-title {
    font-size: 42px;
  }
  .description {
    font-size: 20px;
  }
  .form-card {
    padding: 25px 15px;
  }
  .form-control {
    padding: 12px 18px;
  }
  .form-label {
    margin-bottom: 6px;
  }
  .phones-showcase {
    padding: 80px 0px;
    overflow: hidden;
  }
  .phones-image {
    width: 85%;
  }
  .form-control::placeholder {
    font-size: 16px;
  }
  .btn-submit {
    padding: 14px 26px;
  }
  .vip-section {
    padding: 80px 0;
  }
  .waitlist-wrapper {
    margin-bottom: 80px;
  }
  .trusted-by {
    text-align: center;
    padding: 0px;
  }
}
