:root {
  --primary-color: #3783f4;
  --secondary-color: #ffffff;
  --paragraf-color: #8e9296;
  --button-color: #13a44d;
  --bg-icon-color: #f1f5f9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  /* min-height: 1000vh; */
}

/* HEADER START */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f9fafb;
  backdrop-filter: blur(6px);
  transition:
    background-color 0.3s ease-out,
    box-shadow 0.3s ease-out,
    backdrop-filter 0.3s ease-out;
  z-index: 99999;
}

header.header-scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2%;
}

.header-container .logo-section {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-container .logo-section .icon-wrapper {
  background-color: var(--primary-color);
  padding: 0.5rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-container .logo-section .icon-wrapper svg {
  width: 25px;
  height: 25px;
  stroke: white;
}

.header-container .logo-section h1 {
  font-weight: 600;
  font-size: 1.4rem;
  color: #000000;
}

.header-container .nav-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

.header-container .nav-container ul {
  display: flex;
  gap: 1.5rem;
}

.menu-toggle,
.menu-close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle svg,
.menu-close svg {
  width: 24px;
  height: 24px;
  stroke: #000000;
}

.header-container .nav-container ul li a {
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  transition: all ease-in-out 0.3s;
}

.header-container .nav-container ul li a:hover {
  color: var(--primary-color);
}

.header-container .button-container a {
  background-color: var(--button-color);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 18px;
  color: var(--secondary-color);
  border-radius: 10px;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}

.header-container .button-container a:hover {
  background-color: #17b655;
}

/* HOME START  */

.home {
  background-color: #f9fafb;
  min-height: 100vh;
}

.home .home-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15rem 2% 0 2%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.home-container .title-container {
  flex: 1;
}

.home-container .title-container .text-container {
  margin-bottom: 1.5rem;
}

.home-container .title-container .text-container h2 {
  font-size: 4rem;
}

.home-container .title-container .text-container h2 span {
  background: linear-gradient(90deg, #2563eb, #06b6d4, #10b981);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-container .title-container .text-container p {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: var(--paragraf-color);
}

.home-container .button-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home-container .button-container .btn-start {
  color: #ffffff;
  background-color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 10px;
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}

.home-container .button-container .btn-start:hover {
  background-color: #1d73f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 36, 65, 0.08);
}

.home-container .button-container .btn-more {
  color: #000000;
  border: 1px solid var(--paragraf-color);
  background-color: #ffffff;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}

.home-container .button-container .btn-more:hover {
  background-color: #f3f4f6;
  border-color: #b0b3b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.home-container .stats-container {
  display: flex;
  gap: 5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-text {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.stat-text i {
  font-size: 1.5rem;
}

.stat-item:nth-child(1) .stat-text,
.stat-item:nth-child(1) h3 {
  color: #3b82f6;
}

.stat-item:nth-child(2) .stat-text,
.stat-item:nth-child(2) h3 {
  color: #10b981;
}

.stat-item:nth-child(3) .stat-text,
.stat-item:nth-child(3) h3 {
  color: #14b8a6;
}

.stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-item p {
  color: var(--paragraf-color);
  font-size: 0.9rem;
}

.home-container .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .home-container .image-container img {
  max-width: 100%;
  width: 650px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* HOME END */

/* TIPS START */

.tips {
  background-color: #f6f9fa;
  padding: 5rem 0;
}

.tips .tips-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2% 1rem 2%;
}

.tips .tips-container .tips-title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.tips .tips-container .tips-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.tips .tips-container .tips-title p {
  color: var(--paragraf-color);
  font-size: 1.2rem;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Card Container ===== */
.tips-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1100px;
  gap: 2rem;
}

/* ===== Individual Card ===== */
.tips-card .card {
  flex: 1 1 calc(50% - 1rem);
  min-width: 280px;
  background-color: #fff;
  border: solid 2px #e8edf3;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.tips-card .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Icon & Title (bagian atas card) ===== */
.tips-card .card > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tips-card .icon-wrap {
  width: 50px;
  height: 50px;
  background-color: var(--bg-icon-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Icon (SVG) bawaan Lucide */
.tips-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

/* Title */
.tips-card .card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
}

/* Description */
.tips-card .card p {
  color: var(--paragraf-color);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Icon Colors per Card ===== */

.tips-card .card:nth-child(1) i {
  background-color: #f1f5f9;
}
.tips-card .card:nth-child(2) i {
  background-color: #f1f5f9;
}
.tips-card .card:nth-child(3) i {
  background-color: #f1f5f9;
}
.tips-card .card:nth-child(4) i {
  background-color: #f1f5f9;
}

.tips-card .card:nth-child(1) svg {
  stroke: #3b82f6;
}
.tips-card .card:nth-child(2) svg {
  stroke: #10b981;
}
.tips-card .card:nth-child(3) svg {
  stroke: #14b8a6;
}
.tips-card .card:nth-child(4) svg {
  stroke: #ef4444;
}

/* TIPS END */

/* ABOUT RULES START */

aside.about {
  /* margin-top: 5rem;
  margin-bottom: 1rem; */
  background-color: #f6f9fa;
}

.rules-container {
  background-color: #f4fbfc;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #e5e7eb;
}

/* ===== Title ===== */
.rules-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

/* ===== Description ===== */
.rules-description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ===== Rules List ===== */
.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ===== Each Rule ===== */
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #374151;
}

/* ===== Percent Badge ===== */
.rule-percent {
  font-weight: 700;
  font-size: 1rem;
  min-width: 45px;
}

.rule-percent.fifty {
  color: #2563eb; /* biru */
}

.rule-percent.thirty {
  color: #10b981; /* hijau */
}

.rule-percent.twenty {
  color: #14b8a6; /* teal */
}

.rule-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.rule-category {
  color: #65758b;
}

.rule-category strong {
  font-weight: 700;
}

.rule-details {
  color: #6b7280;
}

/* === PROFILE SECTION === */
.profile-container {
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
  margin: 5rem auto 0 auto;
  max-width: 900px;
  border: 2px solid #e2e8ef;
}

/* === LEFT SIDE (PHOTO AREA) === */
.profile-image-wrapper {
  background-color: #eaf5fb;
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.profile-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.profile-content {
  flex: 1;
  background-color: #ffffff;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Header (nama + title) */
.profile-header {
  margin-bottom: 20px;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0;
}

.profile-title {
  font-size: 1rem;
  color: #3c93f8;
  margin-top: 4px;
}

/* Bio */
.profile-bio {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* === Feature List === */
.profile-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  background-color: #f1f5f9;
  padding: 8px;
  border-radius: 10px;
}

/* === Individual Icon Background Colors === */
.feature-item:nth-child(1) .feature-icon {
  color: #2563eb; /* blue for award */
}

.feature-item:nth-child(2) .feature-icon {
  color: #22c55e; /* green for users */
}

.feature-item:nth-child(3) .feature-icon {
  color: #29beac; /* red for heart */
}

/* === Icon Size (Lucide SVG) === */
.feature-item .feature-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2; /* bikin ikon lebih tebal */
}

.feature-text-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 600;
  color: #1b1b1b;
}

.feature-description {
  font-size: 0.9rem;
  color: #666;
}

/* ABOUT RULES END */

/* TESTIMONIAL START */
.testimonials {
  background-color: #f6f8fa;
  min-height: 70vh;
}

.testimonials .testimonial-container {
  max-width: 1400px;
  padding: 5rem 2%;
  margin: 0 auto;
}

.testimonial-container .testimonial-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-container .testimonial-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

.testimonial-container .testimonial-title p {
  color: var(--paragraf-color);
  font-size: 1rem;
}

.testimonial-list {
  margin-top: 2.5rem;

  /* 1. Mengatur kartu-kartu (<li>) agar berbaris ke samping */
  display: flex;

  gap: 24px; /* Anda bisa sesuaikan nilainya, misal 1.5rem */

  /* 3. Menghilangkan bullet points dari <ul> */
  list-style-type: none;

  /* 4. Menghilangkan padding default dari <ul> */
  padding-left: 0;

  flex-wrap: wrap;
  justify-content: center; /* Menengahkan kartu jika 'wrap' */
}

.testimonial-card {
  /* Memberi gaya 'kartu' seperti di gambar */
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Garis tepi abu-abu muda */
  border-radius: 8px; /* Sudut melengkung */
  padding: 24px; /* Jarak dari tepi kartu ke konten di dalam */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Bayangan halus */
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-basis: 300px;
  flex-grow: 1;
  max-width: 360px; /* Batas lebar maksimum per kartu */
  transition: all ease-in-out 0.2s;
  cursor: pointer;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 36, 65, 0.1);
}

/* Ikon kutip " */
.testimonial-card [data-lucide="quote"] {
  color: #dbe8fd;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

/* Penampung bintang */
.testimonial-star {
  color: #3c83f6; /* Warna kuning/emas */
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-star [data-lucide="star"] {
  width: 20px;
  height: 20px;
  fill: #3c83f6; /* Ini mewarnai BAGIAN DALAM (fill) */
}

/* Teks kutipan */
.testimonial-quote {
  margin: 0; /* Menghilangkan margin default <blockquote> */
}
.testimonial-quote p {
  color: var(--paragraf-color); /* Warna teks abu-abu tua */
  line-height: 1.5rem;

  margin: 0 0 16px 0; /* Margin di bawah paragraf */
}

/* Garis pemisah */
.testimonial-card hr {
  border: none;
  border-top: 1px solid #e5e7eb; /* Garis abu-abu muda */
  margin: 16px 0;
}

.testimonial-user .user-name {
  font-weight: 600; /* Sedikit tebal */
  color: #111827; /* Hitam */
  margin: 0;
}
.testimonial-user .user-title {
  font-size: 0.875rem; /* Sedikit lebih kecil */
  color: #6b7281; /* Abu-abu */
  margin: 0;
}
/* TESTIMONIAL END */

/* FOOTER START */
footer {
  color: #4b5563; /* Warna teks abu-abu */
  padding: 48px 0; /* Jarak atas-bawah */
  border-top: 1px solid #e5e7eb; /* Garis tipis di atas footer */
  font-family: system-ui, sans-serif;
}

.footer-container {
  max-width: 1400px; /* Batas lebar konten */
  margin: 0 auto; /* Menengahkan di halaman */
  padding: 1rem 2%; /* Jarak kiri-kanan */
}

.footer-up {
  display: flex;
  justify-content: space-between; /* Kunci: Menyebar 4 kolom */
  flex-wrap: wrap; /* Izinkan turun ke bawah di layar kecil */
  gap: 32px; /* Jarak antar kolom jika 'wrap' */
  margin-bottom: 32px;
}

.footer-logo-section {
  flex: 1 1 300px;
  max-width: 350px;
  margin-right: 24px; /* Jarak ke kolom link */
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none; /* Menghilangkan garis bawah link */
  margin-bottom: 16px;
}

.footer-logo .icon-wrapper {
  background-color: #3b82f6; /* Latar biru */
  color: #ffffff; /* Ikon putih */
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  flex-shrink: 0;
}
.footer-logo strong {
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #111827; /* Hitam */
}

.footer-logo-section > p {
  font-size: 0.9rem; /* 14px */
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-media {
  display: flex;
  gap: 16px;
}
.social-media a {
  background-color: #f1f5f9; /* Background awal */
  color: #6b7281; /* Warna ikon awal (abu-abu) */
  border-radius: 8px;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.social-media a:hover {
  background-color: #3c84f6; /* 1. Background biru saat hover */
  color: #ffffff; /* 2. Warna ikon jadi PUTIH (agar kontras) */
}

/* --- Kolom 2, 3, 4: Kolom Link --- */
.footer-links {
  /* Mengambil sisa ruang secara merata */
  flex: 1 1 150px;
}

.footer-links h3 {
  font-size: 1rem; /* 16px */
  font-weight: 600;
  color: #111827; /* Hitam */
  margin-top: 0;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #4b5563; /* Abu-abu */
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #111827; /* Hitam */
}

/* Opsional: Garis pemisah */
.footer-container hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 32px 0;
}

.footer-down {
  display: flex;
  justify-content: space-between; /* Kunci: Kiri dan Kanan */
  align-items: center;
  flex-wrap: wrap; /* Turun di layar kecil */
  gap: 16px;
  font-size: 0.875rem; /* 14px */
  color: #6b7281;
}

.footer-left p {
  margin: 0;
}

.footer-right ul {
  display: flex;
  gap: 24px; /* Jarak antar link bawah */
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right a {
  text-decoration: none;
  color: #6b7281;
  transition: color 0.2s ease;
}
.footer-right a:hover {
  color: #111827;
}
/* FOOTER END */

/* RESPONSIVE STYLES */

/* Tablet */
@media screen and (max-width: 992px) {
  .header-container .logo-section h1 {
    font-size: 1.2rem;
  }

  .header-container .nav-container ul {
    gap: 1rem;
  }

  .header-container .nav-container ul li a {
    font-size: 0.95rem;
  }

  .header-container .button-container a {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .header-container {
    padding: 1rem 4%;
  }

  .menu-toggle {
    display: block;
    transition: opacity 0.3s ease;
  }

  /* Hide hamburger when menu is active */
  .menu-toggle.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .header-container .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    transition: right 0.3s ease-in-out;
    z-index: 100000;
  }

  .header-container .nav-container.active {
    right: 0;
  }

  .menu-close {
    display: block;
    align-self: flex-end;
    margin-bottom: 2rem;
  }

  .header-container .nav-container ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header-container .nav-container ul li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .header-container .nav-container ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .header-container .button-container {
    display: none;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .header-container .logo-section h1 {
    font-size: 1rem;
  }

  .header-container .logo-section .icon-wrapper {
    padding: 0.4rem;
  }

  .header-container .logo-section .icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .header-container .nav-container {
    width: 250px;
  }
}

/* Large Desktop */
@media screen and (max-width: 1400px) {
  .home .home-container {
    gap: 1.5rem;
  }

  .home-container .title-container .text-container h2 {
    font-size: 3.5rem;
  }

  .home .home-container .image-container img {
    width: 750px;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .home-container .title-container .text-container h2 {
    font-size: 3rem;
  }

  .home-container .title-container .text-container p {
    font-size: 1.15rem;
  }

  .home .home-container .image-container img {
    width: 100%;

    max-width: 700px;
  }

  .home-container .stats-container {
    gap: 3rem;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .home .home-container {
    flex-direction: column;
    padding: 7rem 4% 3rem 4%;
    text-align: center;
  }

  .home-container .title-container .text-container h2 {
    font-size: 2.5rem;
  }

  .home-container .title-container .text-container p {
    font-size: 1.1rem;
  }

  .home-container .button-container {
    justify-content: center;
  }

  .home-container .stats-container {
    justify-content: center;
    gap: 2.5rem;
  }

  .home .home-container .image-container img {
    width: 100%;
    max-width: 650px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .home .home-container {
    padding: 6rem 5% 2rem 5%;
  }

  .home-container .title-container .text-container h2 {
    font-size: 2rem;
  }

  .home-container .title-container .text-container p {
    font-size: 1rem;
    margin-top: 0.8rem;
  }

  .home-container .button-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .home-container .button-container .btn-start,
  .home-container .button-container .btn-more {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }

  .home-container .stats-container {
    gap: 2rem;
  }

  .stat-item h3 {
    font-size: 1.3rem;
  }

  .stat-item p {
    font-size: 0.85rem;
  }

  .home .home-container .image-container img {
    max-width: 600px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .home .home-container {
    padding: 5.5rem 5% 2rem 5%;
  }

  .home-container .title-container .text-container h2 {
    font-size: 1.75rem;
  }

  .home-container .title-container .text-container p {
    font-size: 0.95rem;
  }

  .home-container .button-container .btn-start,
  .home-container .button-container .btn-more {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .home-container .stats-container {
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
  }

  /* .stat-item {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .stat-item .stat-text {
    display: flex;
    justify-content: center;
    align-items: center;
  } */

  .stat-text svg {
    width: 20px;
    height: 20px;
  }

  .stat-item h3 {
    font-size: 1.2rem;
  }

  .home .home-container .image-container img {
    max-width: 100%;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .home-container .title-container .text-container h2 {
    font-size: 1.5rem;
  }

  .home-container .title-container .text-container p {
    font-size: 0.9rem;
  }

  .home-container .stats-container {
    gap: 1rem;
  }
}

/* Desktop */
@media screen and (max-width: 1200px) {
  .tips .tips-container .tips-title h2 {
    font-size: 2.2rem;
  }

  .tips .tips-container .tips-title p {
    font-size: 1.1rem;
  }

  .tips-card {
    max-width: 950px;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .tips {
    padding: 4rem 0;
  }

  .tips .tips-container {
    padding: 0 4% 1rem 4%;
    gap: 2rem;
  }

  .tips .tips-container .tips-title h2 {
    font-size: 2rem;
  }

  .tips .tips-container .tips-title p {
    font-size: 1.05rem;
    max-width: 600px;
  }

  .tips-card {
    gap: 1.5rem;
  }

  .tips-card .card {
    padding: 1.75rem;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .tips {
    padding: 3.5rem 0;
  }

  .tips .tips-container {
    padding: 0 5% 1rem 5%;
  }

  .tips .tips-container .tips-title h2 {
    font-size: 1.75rem;
  }

  .tips .tips-container .tips-title p {
    font-size: 1rem;
    max-width: 100%;
  }

  .tips-card {
    gap: 1.25rem;
  }

  .tips-card .card {
    flex: 1 1 100%;
    padding: 1.5rem;
  }

  .tips-card .card h3 {
    font-size: 1.1rem;
  }

  .tips-card .card p {
    font-size: 0.95rem;
  }

  .tips-card .icon-wrap {
    width: 45px;
    height: 45px;
  }

  .tips-card .icon-wrap svg {
    width: 22px;
    height: 22px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .tips {
    padding: 3rem 0;
  }

  .tips .tips-container {
    gap: 1.75rem;
  }

  .tips .tips-container .tips-title h2 {
    font-size: 1.5rem;
  }

  .tips .tips-container .tips-title p {
    font-size: 0.95rem;
  }

  .tips-card {
    gap: 1rem;
  }

  .tips-card .card {
    padding: 1.25rem;
    min-width: auto;
  }

  .tips-card .card > div {
    gap: 0.75rem;
  }

  .tips-card .icon-wrap {
    width: 42px;
    height: 42px;
  }

  .tips-card .icon-wrap svg {
    width: 20px;
    height: 20px;
  }

  .tips-card .card h3 {
    font-size: 1rem;
  }

  .tips-card .card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .tips .tips-container .tips-title h2 {
    font-size: 1.35rem;
  }

  .tips .tips-container .tips-title p {
    font-size: 0.9rem;
  }

  .tips-card .card {
    padding: 1rem;
  }
}

/* RESPONSIVE ABOUT SECTION */

/* Desktop */
@media screen and (max-width: 1200px) {
  .profile-content {
    padding: 35px 40px;
  }

  .profile-name {
    font-size: 1.6rem;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  aside.about {
    padding: 4rem 4% 4rem 4%;
  }

  .rules-container {
    padding: 1.75rem 2rem;
    max-width: 700px;
  }

  .rules-title {
    font-size: 1.4rem;
  }

  .rules-description {
    font-size: 0.95rem;
  }

  .profile-container {
    margin-top: 4rem;
    max-width: 750px;
  }

  .profile-image-wrapper {
    flex: 0 0 30%;
    padding: 30px 15px;
  }

  .profile-image {
    width: 140px;
    height: 140px;
  }

  .profile-content {
    padding: 30px 35px;
  }

  .profile-name {
    font-size: 1.5rem;
  }

  .profile-bio {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .profile-features-list {
    gap: 16px;
  }

  .feature-title {
    font-size: 0.95rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  aside.about {
    padding: 3.5rem 5% 3.5rem 5%;
  }

  .rules-container {
    padding: 1.5rem;
    border-radius: 10px;
  }

  .rules-title {
    font-size: 1.3rem;
  }

  .rules-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .rule-item {
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .rule-percent {
    font-size: 0.95rem;
    min-width: 40px;
  }

  .rule-details {
    font-size: 0.9rem;
  }

  /* Profile jadi vertikal */
  .profile-container {
    flex-direction: column;
    margin-top: 3rem;
    max-width: 100%;
  }

  .profile-image-wrapper {
    flex: none;
    padding: 30px;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

  .profile-content {
    padding: 30px;
  }

  .profile-name {
    font-size: 1.4rem;
  }

  .profile-title {
    font-size: 0.95rem;
  }

  .profile-bio {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .profile-features-list {
    gap: 14px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-title {
    font-size: 0.9rem;
  }

  .feature-description {
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  aside.about {
    padding: 3rem 5% 3rem 5%;
  }

  .rules-container {
    padding: 1.25rem;
  }

  .rules-title {
    font-size: 1.2rem;
  }

  .rules-description {
    font-size: 0.85rem;
  }

  .rule-item {
    font-size: 0.9rem;
  }

  .rule-percent {
    font-size: 0.9rem;
    min-width: 38px;
  }

  .rule-details {
    font-size: 0.85rem;
  }

  .profile-image-wrapper {
    padding: 25px;
  }

  .profile-image {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }

  .profile-content {
    padding: 25px 20px;
  }

  .profile-header {
    margin-bottom: 16px;
  }

  .profile-name {
    font-size: 1.25rem;
  }

  .profile-title {
    font-size: 0.9rem;
  }

  .profile-bio {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .profile-features-list {
    gap: 12px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-icon {
    padding: 6px;
  }

  .feature-item .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-title {
    font-size: 0.85rem;
  }

  .feature-description {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .rules-title {
    font-size: 1.1rem;
  }

  .rules-description {
    font-size: 0.8rem;
  }

  .profile-name {
    font-size: 1.15rem;
  }

  .profile-content {
    padding: 20px 15px;
  }
}

/* RESPONSIVE TESTIMONIALS SECTION */

/* Desktop */
@media screen and (max-width: 1200px) {
  .testimonial-container .testimonial-title h2 {
    font-size: 2.2rem;
  }

  .testimonial-container .testimonial-title p {
    font-size: 1.1rem;
  }

  .testimonial-list {
    gap: 20px;
  }

  .testimonial-card {
    flex-basis: 280px;
    max-width: 340px;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .testimonials {
    padding: 4rem 0;
    min-height: auto;
  }

  .testimonials .testimonial-container {
    padding: 0 4%;
  }

  .testimonial-container .testimonial-title {
    margin-bottom: 2rem;
  }

  .testimonial-container .testimonial-title h2 {
    font-size: 2rem;
  }

  .testimonial-container .testimonial-title p {
    font-size: 1.05rem;
  }

  .testimonial-list {
    gap: 18px;
  }

  .testimonial-card {
    flex-basis: calc(50% - 9px);
    max-width: 100%;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .testimonials {
    padding: 3.5rem 0;
  }

  .testimonials .testimonial-container {
    padding: 0 5%;
  }

  .testimonial-container .testimonial-title {
    margin-bottom: 1.75rem;
    gap: 0.5rem;
  }

  .testimonial-container .testimonial-title h2 {
    font-size: 1.75rem;
  }

  .testimonial-container .testimonial-title p {
    font-size: 1rem;
  }

  .testimonial-list {
    gap: 16px;
  }

  .testimonial-card {
    flex-basis: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .testimonial-card [data-lucide="quote"] {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
  }

  .testimonial-star {
    margin-bottom: 14px;
  }

  .testimonial-star [data-lucide="star"] {
    width: 18px;
    height: 18px;
  }

  .testimonial-quote p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .testimonial-card hr {
    margin: 14px 0;
  }

  .testimonial-user .user-name {
    font-size: 0.95rem;
  }

  .testimonial-user .user-title {
    font-size: 0.825rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .testimonials {
    padding: 3rem 0;
  }

  .testimonial-container .testimonial-title h2 {
    font-size: 1.5rem;
  }

  .testimonial-container .testimonial-title p {
    font-size: 0.95rem;
    text-align: center;
  }

  .testimonial-list {
    gap: 14px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .testimonial-card [data-lucide="quote"] {
    width: 26px;
    height: 26px;
    margin-bottom: 12px;
  }

  .testimonial-star {
    margin-bottom: 12px;
    gap: 3px;
  }

  .testimonial-star [data-lucide="star"] {
    width: 16px;
    height: 16px;
  }

  .testimonial-quote p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .testimonial-card hr {
    margin: 12px 0;
  }

  .testimonial-user .user-name {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }

  .testimonial-user .user-title {
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  .testimonial-container .testimonial-title h2 {
    font-size: 1.35rem;
  }

  .testimonial-container .testimonial-title p {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 16px;
  }

  .testimonial-quote p {
    font-size: 0.85rem;
  }
}

/* RESPONSIVE FOOTER SECTION */

/* Desktop */
@media screen and (max-width: 1200px) {
  .footer-up {
    gap: 28px;
  }

  .footer-logo-section {
    flex: 1 1 280px;
    max-width: 320px;
  }

  .footer-links {
    flex: 1 1 140px;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  footer {
    padding: 40px 0;
  }

  .footer-container {
    padding: 1rem 4%;
  }

  .footer-up {
    gap: 32px 24px;
  }

  .footer-logo-section {
    flex: 1 1 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .footer-links {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 130px;
  }

  .footer-divider {
    margin: 28px 0;
  }

  .footer-down {
    gap: 12px;
  }

  .footer-right ul {
    gap: 20px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  footer {
    padding: 36px 0;
  }

  .footer-container {
    padding: 1rem 5%;
  }

  .footer-up {
    gap: 28px;
  }

  .footer-logo strong {
    font-size: 1.15rem;
  }

  .footer-logo-section > p {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .footer-links {
    flex: 1 1 calc(50% - 14px);
    min-width: 120px;
  }

  .footer-links h3 {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-divider {
    margin: 24px 0;
  }

  .footer-down {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
  }

  .footer-right ul {
    gap: 16px;
  }

  .footer-right a {
    font-size: 0.8rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  footer {
    padding: 32px 0;
  }

  .footer-up {
    gap: 24px;
  }

  .footer-logo {
    gap: 6px;
    margin-bottom: 14px;
  }

  .footer-logo .icon-wrapper {
    padding: 7px;
  }

  .footer-logo .icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .footer-logo strong {
    font-size: 1.05rem;
  }

  .footer-logo-section > p {
    font-size: 0.825rem;
    margin-bottom: 16px;
  }

  .social-media {
    gap: 10px;
  }

  .social-media a {
    padding: 7px;
  }

  .social-media a svg {
    width: 18px;
    height: 18px;
  }

  .footer-links {
    flex: 1 1 100%;
  }

  .footer-links h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .footer-links li {
    margin-bottom: 9px;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-divider {
    margin: 20px 0;
  }

  .footer-down {
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-right ul {
    gap: 10px;
  }

  .footer-right a {
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
  footer {
    padding: 28px 0;
  }

  .footer-logo strong {
    font-size: 1rem;
  }

  .footer-logo-section > p {
    font-size: 0.8rem;
  }

  .footer-links h3 {
    font-size: 0.875rem;
  }

  .footer-links a {
    font-size: 0.775rem;
  }

  .footer-down {
    text-align: center;
  }
}

/* FOOTER END */
