@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.w-nav-brand .nav-logo {
  max-width: 180px;
}

/* Variables */
:root {
  --primary: #6bbf59;
}

a:hover {
  color: var(--brand-color-01);
}

/* Hero Section */
.hero {
  padding: 120px 0;
  background: linear-gradient(180deg, #eaf4ed 0%, #f5fbf7 100%);
  /* LEFT CONTENT */
  /* RIGHT SIDE */
}
.hero .hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero .hero-content {
  flex: 1;
}
.hero .hero-content .badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  background: #dff3e4;
  color: #6bbf59;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}
.hero .hero-content h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-01);
}
.hero .hero-content h1 .gradient-text {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .hero-content p {
  color: #5b6d63;
  margin-bottom: 30px;
  max-width: 520px;
}
.hero .hero-content .btn-primary {
  background: #6bbf59;
  border: none;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(107, 191, 89, 0.3);
  transition: 0.3s;
}
.hero .hero-content .btn-primary:hover {
  transform: translateY(-3px);
}
.hero .hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Glow background */
  /* Tablet Card */
  /* Floating Cards */
}
.hero .hero-visual .circle-bg {
  position: absolute;
  max-width: 500px;
  height: 500px;
  background: radial-gradient(circle, #d9f3df 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s infinite ease-in-out;
}
.hero .hero-visual .card-screen {
  position: relative;
  width: 360px;
  height: 440px;
  background: linear-gradient(145deg, #082318, #0e2f1e);
  border-radius: 30px;
  padding: 40px;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  animation: float 5s infinite ease-in-out;
  /* Animated Bars */
}
.hero .hero-visual .card-screen p {
  color: #6bbf59;
  font-size: 14px;
  letter-spacing: 2px;
}
.hero .hero-visual .card-screen .chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  height: 180px;
  margin-bottom: 30px;
}
.hero .hero-visual .card-screen .chart span {
  width: 14px;
  border-radius: 8px;
  background: linear-gradient(to top, #6bbf59, #9cd490);
  box-shadow: 0 0 12px rgba(107, 191, 89, 0.6);
  animation: barMove 1.8s ease-in-out infinite;
}
.hero .hero-visual .card-screen .chart span:nth-child(1) {
  animation-delay: 0s;
}
.hero .hero-visual .card-screen .chart span:nth-child(2) {
  animation-delay: 0.2s;
}
.hero .hero-visual .card-screen .chart span:nth-child(3) {
  animation-delay: 0.4s;
}
.hero .hero-visual .card-screen .chart span:nth-child(4) {
  animation-delay: 0.6s;
}
.hero .hero-visual .floating-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  z-index: 3;
  animation: floatSmall 4s infinite ease-in-out;
}
.hero .hero-visual .security {
  top: 60px;
  right: -20px;
}
.hero .hero-visual .efficiency {
  bottom: 40px;
  left: -20px;
}
.hero .hero-visual .efficiency .progress {
  margin-top: 8px;
  height: 6px;
  background: #e4efe7;
  border-radius: 10px;
  position: relative;
}
.hero .hero-visual .efficiency .progress::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  background: #6bbf59;
  border-radius: 10px;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes floatSmall {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes barMove {
  0% {
    height: 30px;
  }
  25% {
    height: 90px;
  }
  50% {
    height: 50px;
  }
  75% {
    height: 110px;
  }
  100% {
    height: 30px;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .hero .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .hero .hero-visual {
    margin-top: 50px;
  }
}
/* BACKDROP BLUR */
.modal-backdrop.show {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.6);
}

/* MODAL */
.demo-modal {
  /* LEFT SIDE */
  /* RIGHT SIDE */
  /* UNDERLINE INPUT STYLE */
  /* BUTTON */
  /* BOTTOM STRIP */
}
.demo-modal .modal-content {
  border-radius: 16px;
  overflow: hidden;
  border: none;
}
.demo-modal .demo-left {
  background: linear-gradient(135deg, #0f3d2e, #1c6b4f);
  color: #fff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.demo-modal .demo-left img {
  filter: brightness(0) invert(1);
  width: 150px;
  margin-bottom: 30px;
}
.demo-modal .demo-left h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
}
.demo-modal .demo-right {
  background: #f8faf9;
  padding: 50px 40px 30px;
  position: relative;
}
.demo-modal .demo-right h3 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-color-01);
}
.demo-modal .demo-right .btn-close-custom {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  cursor: pointer;
}
.demo-modal .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
}
.demo-modal .form-control:focus {
  box-shadow: none;
  border-color: #1c6b4f;
}
.demo-modal .btn-demo {
  background-image: linear-gradient(114deg, var(--brand-color-02) 13.41%, var(--brand-color-01) 54.9%);
  border: none;
  padding: 14px;
  font-weight: 500;
  border-radius: 8px;
}
.demo-modal .btn-demo:hover {
  opacity: 0.9;
}
.demo-modal .security-strip {
  background: #eaf4ef;
  padding: 12px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  left: -40px;
  width: calc(100% + 80px);
  bottom: -30px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .demo-modal .demo-left {
    display: none;
  }
}
.badge {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  background: #dff3e4;
  color: #6bbf59;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  animation: fadeUp 1.2s ease forwards;
}

.about-section {
  padding: 100px 20px;
  text-align: center;
}
.about-section .container {
  max-width: 1200px;
  margin: auto;
}
.about-section .title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-01);
  animation: fadeUp 1.2s ease forwards;
}
.about-section .title span {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section .subtitle {
  color: #5b6d63;
  margin-bottom: 30px;
  animation: fadeUp 1.2s ease forwards;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.about-section .card-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-section .card-wrapper .info-card {
  background-color: var(--text-color-01);
  padding: 35px;
  border-radius: 20px;
  min-width: 450px;
  flex: 1;
  text-align: left;
  transition: 0.4s ease;
  animation: fadeUp 1.6s ease forwards;
}
.about-section .card-wrapper .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 227, 143, 0.15);
}
.about-section .card-wrapper .info-card h3 {
  margin-bottom: 15px;
  color: white;
}
.about-section .card-wrapper .info-card p {
  color: #cfd8dc;
  margin-bottom: 20px;
}
.about-section .card-wrapper .info-card .tags span {
  display: inline-block;
  background: rgba(34, 227, 143, 0.15);
  color: #22e38f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 8px;
  margin-top: 5px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .about-section .title {
    font-size: 36px;
  }
  .about-section .pillars {
    flex-direction: column;
    gap: 30px;
  }
  .about-section .stats {
    flex-direction: column;
  }
}
/* Custom Glassmorphism */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
}

/* Virtual Credit Card */
.credit-card-gradient {
  background: linear-gradient(135deg, #16230f 0%, #2a401c 100%);
  border-radius: 1.25rem;
  color: #ffffff;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}
.credit-card-gradient .card-chip {
  width: 45px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.credit-card-gradient img {
  filter: brightness(0) invert(1);
  width: 150px;
}

.btn-primary-custom {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  box-shadow: 0 0 20px rgba(87, 249, 6, 0.4);
  transform: translateY(-2px);
}

.text-primary-custom {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-pattern {
  background-image: radial-gradient(circle at 2px 2px, rgba(87, 249, 6, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(246, 248, 245, 0.8);
  border-bottom: 1px solid rgba(87, 249, 6, 0.1);
}

.user-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -12px;
}

.gb-cards h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-01);
}
.gb-cards h1 .gradient-text {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grain */
.grain-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Gradient Text */
.forest-gradient-text {
  background: linear-gradient(135deg, #062c23, #064e3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 44, 35, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 30px -5px rgba(6, 44, 35, 0.05);
  transition: all 0.4s ease;
  padding: 2rem;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(163, 230, 53, 0.5);
  box-shadow: 0 20px 40px -10px rgba(6, 44, 35, 0.1);
}

/* 3D Shape */
.shape-3d {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a3e635, #064e3b);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset -4px -4px 10px rgba(0, 0, 0, 0.2), inset 4px 4px 10px rgba(255, 255, 255, 0.3);
}

.ledger h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color-01);
}
.ledger h1 .gradient-text {
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ledger p {
  color: #5b6d63;
  margin-bottom: 30px;
  max-width: 520px;
}

/*# sourceMappingURL=style.css.map */
