:root {
  /* New Dark Theme - Emerald & Cyan */
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --secondary: #06b6d4;
  --secondary-light: #22d3ee;
  --accent: #34d399;
  
  /* Dark Backgrounds */
  --dark: #111827;
  --dark-secondary: #1f2937;
  --dark-tertiary: #1e293b;
  
  /* Light backgrounds (for cards) */
  --light: #1f2937;
  --light-secondary: rgba(31, 41, 55, 0.5);
  
  /* Text Colors */
  --text: #ffffff;
  --text-secondary: #d1d5db;
  --muted: #9ca3af;
  
  /* Shadows */
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-emerald: 0 10px 25px -5px rgba(16, 185, 129, 0.25);
  
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(to bottom right, var(--dark), var(--dark-tertiary), var(--dark));
  min-height: 100vh;
}

/* Tagline styling used in hero section */
.tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Layout helper */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation bar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 4px var(--shadow);
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.navbar .logo {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-light), var(--secondary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.navbar .nav a {
  margin-left: 1.2rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar .nav a:hover {
  color: var(--primary-light);
}

.navbar .nav a.active {
  color: var(--primary-light);
}

.navbar .nav .cta-btn {
  margin-left: 2rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-emerald);
}

.navbar .nav .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Hero section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -2;
}

/* Animated background orbs */
.hero .hero-bg::before,
.hero .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.hero .hero-bg::before {
  top: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: var(--primary);
}

.hero .hero-bg::after {
  bottom: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: var(--secondary);
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}



.hero .hero-content {
  max-width: 700px;
  padding: 0 1rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.primary-btn {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow-emerald);
}

.primary-btn:hover {
  background: linear-gradient(to right, var(--primary-dark), #0891b2);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.secondary-btn {
  background: transparent;
  color: var(--primary-light);
  border: 2px solid var(--primary);
}

.secondary-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--primary-light);
}

.download .secondary-btn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.download .secondary-btn:hover {
  background-color: var(--primary);
  color: #ebfdff;
}

/* Pricing: tampilkan tombol Paket Lite di kartu bg putih */
.pricing .secondary-btn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.pricing .secondary-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.hero .secondary-btn {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  font-weight: 600;
}

.hero .secondary-btn:hover {
  background-color: #fff;
  border-color: #fff;
}

/* Biar tombol di kartu pricing melebar penuh */
.pricing-card-new .btn,
.pricing-card .btn {
  width: 100%;
}

/* Trust bar */
.trust-bar {
  background-color: #efeff7;
  padding: 1.4rem 0;
  text-align: center;
  font-size: 0.95rem;
}

.trust-bar .trust-text {
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.trust-avatars {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.trust-avatars .avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.8;
}

/* Generic section heading */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* Features */
.features {
  padding: 4rem 0;
  background: transparent;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: center;
}

.feature-item {
  flex: 1;
  min-width: 260px;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(55, 65, 81, 0.5);
  box-shadow: 0 4px 8px var(--shadow);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: var(--shadow-emerald);
}

.feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--primary-light);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Comparison table */
.comparison-section {
  padding: 4rem 0;
  background: rgba(31, 41, 55, 0.3);
}

.comparison-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  box-shadow: 0 2px 4px var(--shadow);
}

.comparison-section th,
.comparison-section td {
  padding: 0.9rem 0.6rem;
  border: 1px solid #e5e7f1;
  text-align: center;
  font-size: 0.95rem;
}

.comparison-section thead {
  background-color: var(--primary);
  color: #fff;
}

.comparison-section tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.comparison-section tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

.comparison-section td:first-child {
  font-weight: 500;
  text-align: left;
}

/* Demo */
.demo {
  padding: 4rem 0;
  background: transparent;
}

.demo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.demo-image {
  flex: 1 1 400px;
  text-align: center;
}

.demo-image img {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 8px var(--shadow);
}

.demo-content {
  flex: 1 1 400px;
}

.demo-content p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.demo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stat {
  flex: 1;
  min-width: 120px;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Pricing */
.pricing {
  padding: 4rem 0;
  background: transparent;
}

.pricing-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(55, 65, 81, 0.5);
  box-shadow: 0 4px 8px var(--shadow);
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: var(--shadow-emerald);
}

.pricing-card.featured {
  background: rgba(31, 41, 55, 0.7);
  border: 2px solid var(--primary);
  transform: translateY(-10px);
}

.pricing-card.featured .plan-price,
.pricing-card.featured .plan-features li {
  color: #fff;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: var(--text);
}

.pricing-card .plan-price {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-light);
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-features li {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-card.featured .plan-features li {
  color: #eae6ff;
}

.pricing-card .btn.small {
  margin-top: 0.5rem;
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background-color: var(--accent);
  color: var(--dark);
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
}

/* Download */
.download {
  padding: 4rem 0;
  background: transparent;
}

.download-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.download-content {
  max-width: 500px;
}

.requirements {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
}

.requirements li {
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  position: relative;
  color: var(--muted);
}

.requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.version-info {
  font-size: 0.85rem;
  color: var(--muted);
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
  background: rgba(31, 41, 55, 0.3);
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.faq-item {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.faq-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-light);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: transparent;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial-item {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 8px var(--shadow);
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: var(--shadow-emerald);
  transform: translateY(-4px);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 0.8rem;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-title {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}

/* Call to action */
.final-cta {
  padding: 4rem 0;
  background: transparent;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.final-cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.final-cta .primary-btn {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: var(--shadow-emerald);
}

.final-cta .primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  padding: 2rem 0;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-content p {
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar .nav a {
    margin-left: 0.8rem;
  }

  .hero {
    padding-top: 9rem;
    padding-bottom: 4rem;
    min-height: 520px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .demo-grid,
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* === Navbar: satukan "Mulai" di sebelah menu lainnya (mobile) === */
@media (max-width: 640px) {
  .navbar {
    padding-top: env(safe-area-inset-top, 0);
  }

  .navbar .container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem;
  }

  .navbar .logo {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    text-align: center;
  }

  .navbar .nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .navbar .nav a {
    margin: 0;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    line-height: 1.3;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
  }

  .navbar .nav a:not(.cta-btn):hover {
    background-color: rgba(143, 117, 232, 0.1);
  }

  .navbar .nav .cta-btn {
    margin: 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 6px;
    flex-shrink: 0;
    min-width: fit-content;
  }

  /* PERBAIKAN HERO UNTUK MOBILE */
  .hero {
    height: auto;
    min-height: 0;
    padding-top: calc(11rem + env(safe-area-inset-top, 0px));
    padding-bottom: 4rem;
  }

  .hero .hero-content {
    padding: 0 1.5rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  /* PERBAIKAN UTAMA: Container tombol hero */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
  }

  /* PENTING: Tombol hero harus visible dan mudah diklik */
  .hero-buttons .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    display: block;
    text-align: center;
    box-sizing: border-box;
    min-height: 48px;
  }

  /* Tombol primary (Grup Whatsapp) */
  .hero .primary-btn {
    background-color: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
    order: 1;
  }

  /* Tombol secondary (Lihat Fitur) */
  .hero .secondary-btn {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.95);
    order: 2;
    font-weight: 600;
  }

  .hero .secondary-btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
  }
}

/* Untuk layar sangat kecil (iPhone SE, dll) */
@media (max-width: 480px) {
  .hero {
    padding-top: calc(12rem + env(safe-area-inset-top, 0px));
    padding-bottom: 3rem;
  }

  .hero .hero-content {
    width: 100%;
    padding: 0 1.2rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons .btn {
    padding: 0.95rem 1.2rem;
    font-size: 0.95rem;
    min-height: 48px;
  }
}

/* Ekstra squeeze untuk layar <= 360px */
@media (max-width: 360px) {
  .navbar .container {
    padding: 0.8rem;
  }

  .navbar .nav {
    gap: 0.4rem;
  }

  .navbar .nav a {
    font-size: 0.85rem;
    padding: 0.35rem 0.5rem;
  }

  .navbar .nav .cta-btn {
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* Untuk iPhone dengan notch (safe area) */
@supports (padding: env(safe-area-inset-top)) {
  @media (max-width: 640px) {
    .hero {
      padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
    }
  }
}

/* === BAGIAN ANIMASI BARU === */
/* Pengaturan umum untuk animasi saat scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Kelas ini akan ditambahkan oleh JavaScript saat elemen terlihat */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Peningkatan efek hover pada kartu */
.feature-spotlight, .comparison-card, .pricing-card-new, .testimonial-item, .faq-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-spotlight:hover, .comparison-card:hover, .pricing-card-new:hover, .testimonial-item:hover, .faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px var(--shadow);
}

/* Mencegah konflik pada kartu yang sudah memiliki style 'featured' */
.pricing-card-new.featured:hover, .comparison-card.featured-new:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pricing-card-new.featured, .comparison-card.featured-new {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Terapkan animasi pada elemen di dalam hero section */
.hero-content > * {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

/* Beri jeda waktu berbeda agar elemen muncul satu per satu */
.hero .tagline { animation-delay: 0.2s; }
.hero h1 { animation-delay: 0.4s; }
.hero p { animation-delay: 0.6s; }
.hero .hero-buttons { animation-delay: 0.8s; }

/* === EMERALD THEME OVERRIDES === */
/* Pricing card dengan background emerald */
.pricing [style*="background: rgba(6, 78, 59"] h3 {
  color: var(--primary-light) !important;
}

.pricing [style*="background: rgba(6, 78, 59"] span {
  color: var(--text) !important;
}

.pricing [style*="background: rgba(6, 78, 59"] div {
  border-color: rgba(16, 185, 129, 0.3) !important;
}

/* Comparison table dengan tema emerald */
.comparison-section tbody tr:nth-child(even) {
  background-color: rgba(6, 78, 59, 0.3) !important;
}

.comparison-section tbody tr:nth-child(odd) {
  background-color: rgba(6, 95, 70, 0.3) !important;
}

.comparison-section th,
.comparison-section td {
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: var(--text) !important;
}

/* Trust bar dengan tema emerald */
.trust-bar {
  background-color: rgba(6, 78, 59, 0.5) !important;
}

.trust-bar .trust-text {
  color: var(--text-secondary) !important;
}

/* === FIX LINK VISIBILITY - WHITE LINKS === */
/* Override default browser link colors to WHITE */
a:link,
a:visited {
  color: #ffffff !important;
}

a:hover,
a:active {
  color: var(--accent) !important;
}

/* Semua link harus terlihat dengan warna PUTIH */
a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent) !important;
  text-decoration: underline;
}

/* Link di dalam paragraf dan text - EXTRA SPECIFIC */
p a,
p a:link,
p a:visited,
.step-card p a,
.step-card p a:link,
.step-card p a:visited,
.feature-description a,
.feature-description a:link,
.feature-description a:visited {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: underline;
}

p a:hover,
p a:active,
.step-card p a:hover,
.step-card p a:active,
.feature-description a:hover,
.feature-description a:active {
  color: var(--accent) !important;
}

/* Link di navbar tetap seperti sebelumnya */
.navbar a,
.navbar a:link,
.navbar a:visited {
  color: var(--text-secondary) !important;
}

.navbar a:hover,
.navbar a:active,
.navbar a.active {
  color: var(--primary-light) !important;
}

/* Button links tetap dengan style button */
.btn,
.btn:link,
.btn:visited {
  color: #fff !important;
  text-decoration: none !important;
}

.btn.secondary-btn,
.btn.secondary-btn:link,
.btn.secondary-btn:visited {
  color: var(--primary-light) !important;
}

/* Footer links */
.footer-nav a,
.footer-nav a:link,
.footer-nav a:visited {
  color: var(--text-secondary) !important;
}

.footer-nav a:hover,
.footer-nav a:active {
  color: var(--primary-light) !important;
}
