* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}


:root {
  --primary: #10b981;
  --primary-soft: #e6f9f1;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
}

body {
  background: #ffffff;
  color: #111827;
  padding-top: 90px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  height: 80px;
  width: auto;
  padding: 8px 0px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: 0.2s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.btn-nav {
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.25), transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,0.15), transparent 70%);
  bottom: -100px;
  left: -100px;
  z-index: 0;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1.2;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: #e6f9f1;
  color: #10b981;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text h1 span {
  color: #10b981;
}

.hero-text p {
  margin-top: 20px;
  color: #6b7280;
  font-size: 16px;
  max-width: 500px;
}

/* BUTTON */
.hero-btn {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #10b981;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.btn-secondary {
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
}

.hero-info {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.hero-info .check i {
  color: var(--primary);
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 80%;
  height: auto;
}

/* ABOUT */
.about {
  padding: 80px 0;
  background: #f9fafb;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 span {
  color: #10b981;
}

.about-content p {
  color: #6b7280;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: #ffffff;
}

/* HEADER */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin: 15px 0;
}

.section-header h2 span {
  color: #10b981;
}

.section-header p {
  color: #6b7280;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 25px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.service-card .icon {
color: #10b981;
  width: 50px;
  height: 50px;
  background: #e6f9f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #6b7280;
  font-size: 14px;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

.pricing {
  padding: 80px 0;
  background: #f9fafb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.pricing-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: 0.3s;
}

.pricing-card.active {
  border: 2px solid #10b981;
}

/* BADGE */
.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* TEXT */
.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.pricing-card .desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* PRICE */
.price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
}

/* ICON */
.pricing-card li i {
  color: #10b981;
}

.pricing-card li.disabled {
  color: #9ca3af;
}

.pricing-card li.disabled i {
  color: #d1d5db;
}

/* BUTTON */
.btn-primary {
  display: block;
  text-align: center;
  background: #10b981;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-outline {
  display: block;
  text-align: center;
  border: 1px solid #e5e7eb;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
}



.comparison {
  padding: 80px 0;
  background: #ffffff;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table thead {
  background: #f9fafb;
}

.comparison-table i {
  color: var(--primary);
}

.fa-minus {
  color: #9ca3af !important;
}

.highlight {
  background: rgba(16, 185, 129, 0.05);
  font-weight: 500;
}

.footer-row td {
  font-weight: 600;
}
 
.comparison-table tbody tr:hover {
  background: #f9fafb;
}

/* HOW WORK */
.how-work {
  padding: 80px 0;
  background: #ffffff;
}

.center {
  text-align: center;
}

/* GRID */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* ITEM */
.how-item {
  position: relative;
}

/* NUMBER BESAR */
.how-item .number {
  font-size: 60px;
  font-weight: 700;
  color: rgba(16, 185, 129, 0.15);
  display: block;
  margin-bottom: 10px;
}

/* TITLE */
.how-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.how-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: #f9fafb;
}

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid var(--border);
}

/* QUESTION */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON ROTATE */
.faq-question i {
  transition: 0.3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-answer p {
  padding-bottom: 15px;
  color: var(--muted);
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* FOOTER */
.footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 60px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* BRAND */
.footer-brand img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 300px;
  font-size: 14px;
}

/* LINKS */
.footer-links h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  color: #d1d5db;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #1f2937;
  margin-top: 40px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-info {
    flex-direction: column;
    gap: 10px;
  }

  .hero-image {
    text-align: center;
  }

    .about-wrapper {
    flex-direction: column;
  }

  .about-content {
    text-align: center;
  }

    .service-grid {
    grid-template-columns: 1fr;
  }

    

}