@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
}

body,
html {
  height: 100%;
  margin: 0;
}

p {
  margin-bottom: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

.main {
}

@media (min-width: 1700px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
    padding-inline: 0;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.navbar {
  padding: 0.8rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-width: 200px;
}

.navbar-nav {
  background: white;
  box-shadow: 0px 1px 2px 0px #0000003e;
  border-radius: 40px;
  padding-inline: 8px !important;
}

.navbar-nav .nav-link {
  color: #64748b !important;
  padding: 14px 1rem !important;
  font-size: 14px;
  transition: color 0.3s;
  position: relative;
}
.navbar-nav .nav-link.active {
  font-weight: 600;
  color: #020617 !important;
}
.navbar-nav .nav-link.active::before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  width: 75%;
  background: linear-gradient(90deg, #059669 0%, #16a34a 100%);
  margin: 0 auto;
}

.navbar-nav .nav-link:hover {
  color: #020617 !important;
}

.btn-dark-custom {
  position: relative;
  background: linear-gradient(81.54deg, #020617 14.71%, #475569 85.29%);
  color: white !important;
  border: none;
  padding: 15px 30px;
  border-radius: 52px;
  font-size: 14px;
  line-height: 120%;
  transition: all 0.3s;
  border: none !important;
  outline: none !important;
  box-shadow: 0px 15px 60px 0px #47556929 !important;
}

.btn-dark-custom:hover {
  background: linear-gradient(81.54deg, #059669 14.71%, #16a34a 85.29%);
  box-shadow: 0px 20px 70px 0px #47556952 !important;
  transform: translateY(-2px);
}
.btn-dark-custom::before {
  content: " ";
  inset: 0;
  padding: 1px;
  border-radius: 52px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.btn-green-custom {
  position: relative;
  background: linear-gradient(81.54deg, #059669 14.71%, #16a34a 85.29%);
  color: white !important;
  border: none;
  padding: 15px 30px;
  border-radius: 52px;
  font-size: 14px;
  line-height: 120%;
  transition: all 0.3s;
  border: none !important;
  outline: none !important;
  box-shadow: 0px 15px 60px 0px #16a34a29 !important;
}

.btn-green-custom:hover {
  background: linear-gradient(81.54deg, #020617 14.71%, #475569 85.29%);
  box-shadow: 0px 20px 70px 0px #22c55e52 !important;
  transform: translateY(-2px);
}

.btn-green-custom::before {
  content: " ";
  inset: 0;
  padding: 1px;
  border-radius: 52px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.34) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.btn-green-white {
  position: relative;
  background: white;
  color: #020617 !important;
  border: none;
  padding: 15px 30px;
  border-radius: 52px;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  transition: all 0.3s;
  border: 1px solid #e2e8f0 !important;
  outline: none !important;
}
.btn-green-white:hover {
  background: linear-gradient(81.54deg, #059669 14.71%, #16a34a 85.29%);
  box-shadow: 0px 20px 70px 0px #47556952 !important;
  transform: translateY(-2px);
  color: white !important;
}
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 1rem;
  }
}

.hero-section {
  padding: 200px 0 0;
  background: url(../images/banner.png);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-section .tag {
  background: var(--color-base-white, #ffffff);
  padding: 8px 20px;
  box-shadow: 0px 1px 2px 0px #0000000f;
  box-shadow: 0px 1px 3px 0px #0000001a;
  width: max-content;
  border-radius: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  text-transform: capitalize;
  color: #020617;
  margin-bottom: 27px;
}

.hero-section .hero-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 120%;
  text-transform: capitalize;
  color: #020617;
}

/* .hero-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23ffffff" d="M0,0 C300,80 600,80 900,40 L1200,0 L1200,120 L0,120 Z" opacity="0.3"/></svg>');
  background-size: cover;
} */

.subtitle {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.notification-icon {
  display: inline-block;
}

.hero-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  text-transform: capitalize;
  color: #475569;
  margin-bottom: 30px;
  width: 85%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-green-hero {
  background-color: #00d4aa;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-green-hero:hover {
  background-color: #00b894;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.btn-dark-hero {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-dark-hero:hover {
  background-color: #1a252f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.phone-mockup img {
  max-width: 100%;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
}

.section-title {
  font-size: 46px;
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 10px;
  color: #020617;
}

.section-title span {
  font-weight: 700;
}

.section-subtitle {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #64748b;
}

.steps {
  margin-top: 60px;
  background-image: url(../images/howbg.svg);
  background-size: cover;
}

.step {
  text-align: center;
}

.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.step-icon {
  height: 100%;
  width: 100%;
}

.step h3,
.inner-title {
  font-size: 20px;
  line-height: 140%;
  font-weight: 500;
  color: #020617;
}

.step p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #64748b;
  width: 70%;
  margin: 0 auto;
}

/* Why People Love It */
.love-section .container {
  padding-inline: 0;
}

.love-container {
  background: url(../images/lovebg.png);
  background-size: cover;
  border-radius: 34px;
  padding: 80px 30px 0 30px;
  position: relative;
  overflow: hidden;
}

.love-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.features-left,
.features-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #64748b;
}

.phone-center {
  width: 520px;
}

.phone-center img {
  max-width: 100%;
}

/* Stats */
.stats-grid {
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.stat-icon {
  width: 56px;
  height: 56px;
}

.stat-number {
  font-size: 34px;
  line-height: 160%;
  font-weight: 600;
  color: #020617;
}

.stat-label {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #475569;
}

/* Difference Section */

.difference-content {
  padding: 80px 0;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
}

.comparison {
  display: flex;
  gap: 30px;
  margin-top: 60px;
}

.comparison-item {
  flex: 1;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
}

.comparison-icon {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.comparison-item h4 {
  font-size: 24px;
  line-height: 140%;
  font-weight: 500;
  color: #020617;
  margin-bottom: 10px;
}

.comparison-item p {
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
  color: #64748b;
}

.difference-image img {
  width: 100%;
  border-radius: 24px;
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq-cta {
  margin-top: 60px;
}

.faq-cta h3 {
  font-size: 24px;
  line-height: 140%;
  font-weight: 500;
  color: #020617;
  margin-bottom: 12px;
}

.faq-container .button-group {
  margin-top: 30px;
}

.faq-list .accordion-item {
  margin-bottom: 16px;
  border: none;
  background: #f1f5f9;
  border-radius: 34px;
  padding: 3px;
}

.faq-list .accordion-button {
  background: white;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  color: #020617 !important;
  border-radius: 34px !important;
  box-shadow: none !important;
}

.faq-list .accordion-body {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  color: #475569 !important;
}

.next-section {
  padding: 60px 0;
}

.next-sub-container {
  background-image: url(../images/next-bg.png);
  background-size: cover;
  border-radius: 34px;
}

.next-image {
  text-align: center;
  position: relative;
  top: -70px;
}

.next-image img {
  max-width: 100%;
}

.next-detail-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 34px;
  height: 100%;
}

.next-detail-container h2 {
  font-size: 48px;
  line-height: 140%;
  font-weight: 600;
  color: #020617 !important;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.footer-container .logo img {
  max-width: 200px;
}

.footer-container ul {
  display: flex;
  gap: 34px;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-container ul li {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #020617 !important;
}

.social-media {
  display: flex;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.footer-bottom .copyright {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  color: #020617 !important;
}

.footer-links {
  display: flex;
}
.footer-links a {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  text-decoration: none !important;
  color: #020617 !important;
}
.footer-links a.border-link {
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid #cbd5e1;
}

section {
  scroll-margin-top: 60px;
}
.button-group {
  gap: 12px !important;
}
