:root {
  --primary: #f97316;
  --primary-dark: #c2410c;
  --primary-soft: #fff7ed;
  --secondary: #111827;
  --muted: #6b7280;
  --border: #fed7aa;
  --white: #ffffff;
  --dark: #431407;
  --dark-2: #7c2d12;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.topbar {
  background: #ffedd5;
  color: #431407;
  font-size: 14px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* NAVBAR */
.navbar {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 20px;
  z-index: 999;
  position: sticky;
  top: 0;
}

.navbar .nav-item {
  margin-left: 20px;
}

.navbar .navbar-brand,
.navbar .nav-link {
  position: relative;
  font-size: 17px;
  color: black;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
  font-weight: 600;
}

.navbar .navbar-brand:hover,
.navbar .nav-link.nav-active,
.navbar .nav-link:hover {
  color: #50c878;
  transform: scale(1.01);
  font-weight: 700;
}

.navbar .nav-link:not(.dropdown-toggle)::after {
  content: '';
  width: 0;
  height: 2px;
  background: #50c878;
  position: absolute;
  bottom: 0;
  left: 10px;
  transition: width 0.3s ease;
}

.navbar .nav-link:not(.dropdown-toggle):hover::after,
.navbar .nav-link:not(.dropdown-toggle).nav-active::after {
  width: 30%;
}

.navbar .dropdown-toggle::before {
  content: '';
  width: 0;
  height: 2px;
  background: #50c878;
  position: absolute;
  bottom: 0;
  left: 10px;
  transition: width 0.3s ease;
}

.navbar .dropdown-toggle:hover::before,
.navbar .dropdown-toggle.nav-active::before {
  width: 30%;
}

.dropdown-menu .dropdown-item {
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
  background: #f5f5f5;
  color: #50c878;
}

.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item.active {
  background: #f5f5f5 !important;
  color: #50c878 !important;
}

.navbar .nav-btn {
  background: #50c878;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 999px; /* bikin oval/lonjong */
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar .nav-btn:hover {
  background: #3fb166;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(80, 200, 120, 0.25);
}

.navbar .nav-btn::after {
  display: none !important;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 76px;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 60%, #fdba74 100%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  bottom: -220px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 44px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 18px;
}

.badge svg {
  width: 17px;
  height: 17px;
}

.hero h1 {
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  opacity: 0.96;
  margin-bottom: 28px;
  max-width: 650px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--secondary);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(67, 20, 7, 0.24);
}

.hero-card h3 {
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 8px;
}

.hero-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.search-box {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--primary-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dark);
}

.hero-card .row {
  justify-content: space-between;
}

.hero-card .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.hero-card .card {
  border-radius: 14px;
  padding: 10px 6px;
  transition: all 0.25s ease;
  background: #fff;
}

.hero-card .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.hero-card .icon-wrap {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card .icon-wrap img {
  width: 50px;
  height: 50px;
}

.hero-card h6 {
  font-size: 13px;
  margin-top: 4px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.hero-card .card-body {
  padding: 0;
}

/* CARA BERLANGGANAN */
.cara-berlangganan {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffd36a, #ffc44d);
  border-radius: 28px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 60px auto 10px;
}

.cara-berlangganan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%), linear-gradient(225deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%);
  background-size: 80px 80px;
  opacity: 0.3;
  pointer-events: none;
}

.cara-berlangganan-title {
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.cara-berlangganan-subtitle {
  font-size: 18px;
  color: #333;
}

.cara-berlangganan-card {
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cara-berlangganan-icon {
  width: 70px;
  height: 70px;
  background: #fff3c4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cara-berlangganan-icon i {
  font-size: 26px;
  color: #d97706;
}

.cara-berlangganan-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.cara-berlangganan-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.cara-berlangganan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 10px 18px;
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  position: relative;
  z-index: 2;
}

.cara-berlangganan-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.cara-berlangganan-btn span {
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.cara-berlangganan-btn:hover span {
  transform: translateX(4px);
}

/* FAQ */
.wrapper {
  max-width: 75%;
  margin: 0 auto;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
}

.wrapper > p,
.wrapper > h1 {
  margin: 1.5rem 0;
  text-align: center;
}

.wrapper > h1 {
  letter-spacing: 3px;
  padding-top: 30px;
  font-weight: bold;
}

.faq-filter {
  display: flex;
  gap: 12px;
  margin: 30px 40px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.1rem;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: 500;
  color: #333;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.15s ease;
}

.filter-btn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: orange;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.45);
}

.faq-accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  box-sizing: border-box;
  border-radius: 20px;
}

.faq-accordion i {
  font-size: 1.6rem;
  transition: transform 0.7s ease;
}

.faq.active .faq-accordion i {
  transform: rotate(180deg);
}

.active,
.faq-accordion:hover {
  background-color: #f1f7f5;
}

.pannel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.faq.active .pannel {
  max-height: 100%;
  padding-bottom: 2.5rem;
}

.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 25px;
}

.faq {
  border-radius: 20px;
  margin: 14px 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.faq.active {
  border: none;
}

.wa-link {
  color: #25d366;
  font-weight: 600;
  text-decoration: none;
}

.wa-link:hover {
  text-decoration: underline;
}

.dot-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.dot-list li,
dd {
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
}

dt {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
}

/* PAKET INTERNET */
.paket-internet {
  padding: 45px 20px;
}

.paket-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.paket-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.paket-subtitle {
  color: #777;
  margin-bottom: 60px;
}

.paket-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.paket-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  position: relative;
}

.paket-name {
  font-size: 26px;
  color: #fff;
  padding: 20px;
  margin: -30px -20px 20px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #ffbf4d, #ff7b4d);
}

.paket-mbps {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #2c2c8c;
  background: #f4f6ff;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.paket-price {
  font-size: 18px;
  color: #555;
  margin-top: 5px;
  margin-bottom: 15px;
}

.paket-price span {
  font-size: 42px;
  font-weight: 700;
  color: #2c2c8c;
}

.paket-desc {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.paket-desc ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.paket-desc ul li {
  font-size: 11px;
  color: #777;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.paket-desc ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #38b000;
  font-weight: bold;
}

.paket-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #ff7b4d;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.paket-btn:hover {
  background: #ffbf4d;
}

.paket-badge {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff8a4d;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
}

/* S&K */
.syarat-ketentuan {
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0 20px;
}

.syarat-ketentuan details {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  box-sizing: border-box;
}

.syarat-ketentuan summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
}

.syarat-ketentuan summary::-webkit-details-marker {
  display: none;
}

.syarat-ketentuan .snk-arrow {
  font-size: 1.6rem;
  transition: transform 0.7s ease;
}

.syarat-ketentuan details[open] .snk-arrow {
  transform: rotate(180deg);
}

.syarat-ketentuan .snk-content {
  text-align: left;
}

.syarat-ketentuan .snk-content ul {
  margin-top: 20px;
  padding-left: 20px;
}

.syarat-ketentuan .snk-content ul li {
  margin-bottom: 10px;
  color: #4b5563;
  line-height: 1.6;
}

/* INFO-PEMBAYARAN */
.pembayaran-container {
  display: flex;
  gap: 40px;
  padding: 40px 60px;
  background: #f8fafc;
  min-height: 730px;
  align-items: stretch;
}

.bank-sidebar {
  width: 300px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 4px solid #ff7b4d;
}

.sidebar-title-wrap {
  text-align: center;
  margin-bottom: 10px;
}

.bank-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bank-btn {
  padding: 12px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.bank-btn:hover {
  background: #fff3c4;
}

.bank-btn.active {
  background: #fff3c4;
  color: #ff7b4d;
  font-weight: 700;
}

.payment-wrapper {
  flex: 1;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  scroll-behavior: smooth;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  display: flex;
}

.payment-wrapper::-webkit-scrollbar {
  width: 6px;
}

.payment-wrapper::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 10px;
}

.payment-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.payment-content {
  display: none;
  justify-content: flex-start;
}

.payment-content.active {
  display: block;
  display: flex;
  flex: 1;
}

.payment-default {
  justify-content: center;
  align-items: center;
}

.payment-default-row {
  display: flex;
  gap: 32px;
  align-items: center;
}

.payment-illustration {
  width: 140px;
  flex-shrink: 0;
}

.payment-desc {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
  color: #1f2937;
}

.payment-content h3 {
  font-weight: 700;
  margin-bottom: 16px;
}

.payment-content ol {
  padding-left: 18px;
}

.payment-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.payment-content,
.payment-content.active,
.payment-default,
.payment-default-row,
.payment-desc {
  background: transparent !important;
  box-shadow: none !important;
}

.payment-wrapper,
.bank-sidebar {
  align-self: center;
  min-height: 680px;
}

.bank-header {
  text-align: center;
  margin-bottom: 10px;
}

.bank-logo {
  height: 42px;
  max-width: 180px;
  display: inline-block;
}

.bank-divider {
  border: none;
  border-top: 3px solid #d1d5db;
  margin: 20px 0;
}

.bank-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bank-steps {
  padding-left: 20px;
  margin-bottom: 10px;
}

.bank-steps li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.bank-note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #374151;
  background: #f9fafb;
  padding: 12px 14px;
  border-left: 4px solid #266b97;
}

/* TENTANG KAMI */
.tentang-kami {
  padding: 70px 20px;
  background: #f9fafb;
}

.tentang-kami-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.tentang-kami-text {
  flex: 1;
}

.tentang-kami-label {
  display: inline-block;
  font-weight: 600;
  color: #ff7b4d;
  margin-bottom: 12px;
  font-size: 15px;
}

.tentang-kami-link {
  display: inline-block;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  font-size: 15px;
  text-decoration: none;
}

.tentang-kami-title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 20px;
}

.tentang-kami-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  max-width: 520px;
}

.tentang-kami-image {
  flex: 1;
}

.tentang-kami-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.tentang-kami-kolaborasi {
  padding: 80px 20px;
  background: #ffffff;
}

.tk-container {
  max-width: 1200px;
  margin: auto;
}

.tk-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'logo title'
    'logo desc';
  align-items: center;
  gap: 20px 40px;
}

.tk-collab-image {
  grid-area: logo;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tk-title {
  grid-area: title;
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
}

.tk-desc {
  grid-area: desc;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 0;
}

.collab-logo {
  height: clamp(80px, 10vw, 140px);
  max-width: 200px;
  object-fit: contain;
}

.collab-logo-amd {
  height: clamp(80px, 10vw, 140px);
  max-width: 150px;
  object-fit: contain;
}

.collab-x {
  font-size: 24px;
  color: #374151;
}

.visi-misi {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
}

.visi-misi-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background: linear-gradient(to right, rgba(255, 255, 255, 0.28) 2px, transparent 2px), linear-gradient(to bottom, rgba(255, 255, 255, 0.28) 2px, transparent 2px), linear-gradient(135deg, #ffd36a, #ffc44d);

  background-size:
    48px 48px,
    48px 48px,
    cover;

  background-position: center;
  pointer-events: none;

  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 90%);
}

.visi-misi-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.visi-misi-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.visi-misi-right {
  flex: 1;
}

.vm-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 2px solid transparent;

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(255, 196, 77, 0.35);
  border-color: #ffc44d;
}

.vm-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.vm-card:hover h3 {
  transition: color 0.45s ease;
}

.vm-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

.vm-card-large {
  height: 100%;
}

.vm-card-large ol {
  padding-left: 18px;
}

.vm-card-large li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #4b5563;
}

/* FOOTER */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #50c878;
  color: #fff;
  padding: 20px;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 10px;
  min-width: 250px;
  position: relative;
  transition: all 0.3s ease;
}

footer .col:last-child {
  border-right: none;
}

footer .logo {
  margin-bottom: 10px;
  margin-top: 20px;
  max-width: 160px;
  height: auto;
}

footer h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #ffd700;
}

footer a:active {
  color: #ffd700;
  transform: scale(0.95);
}

footer .follow i {
  color: #fff;
  padding-right: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

footer .follow i:hover {
  color: #ffd700;
  transform: scale(1.2);
}

footer .follow h4 {
  font-size: 12px;
  margin-left: 10px;
}

footer .follow .icon {
  margin-left: 10px;
}

footer .copyright {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.wa-float img {
  width: 100%;
}
