/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: #f3f0ff;
  color: #1e293b;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-weight: 700;
  font-size: 24px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.8;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  padding: 180px 0 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: white;
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #ede9fe;
}

/* ===================================== */
/*        STARBOSS SECTION               */
/* ===================================== */

.starboss-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f3f0ff, #e9e6f2);
}

.starboss-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #1e293b;
}

.starboss-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CARD STYLE */
.starboss-card {
  background: white;
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.07);
  margin-bottom: 60px;
}

.starboss-card h3 {
  font-size: 26px;
  margin-bottom: 30px;
  color: #7c3aed;
}

.starboss-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
}

/* KEKUATAN GRID */
.starboss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.starboss-item {
  background: #f3f0ff;
  padding: 18px;
  border-radius: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.starboss-item:hover {
  background: #ede9fe;
  transform: translateY(-3px);
}

.highlight-item {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  font-weight: 600;
}

/* MANFAAT */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-box {
  background: #f8f7ff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.benefit-box span {
  font-size: 32px;
  display: block;
  margin-bottom: 15px;
}

.benefit-box h4 {
  margin-bottom: 10px;
  color: #7c3aed;
}

.benefit-box p {
  font-size: 16px;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* CONCLUSION STYLE */
.conclusion-card {
  border: 3px solid #7c3aed;
  background: #faf9ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .starboss-title {
    font-size: 28px;
  }

  .starboss-card {
    padding: 40px 25px;
  }

  .starboss-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

}


/* ===== PLAN SECTION ===== */
.plans {
  padding: 120px 0;
  background: #e9e6f2;
  text-align: center;
}

.plan-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

/* GRID */
.plan-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

/* CARD */
.plan-card {
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
}

/* HEADER */
.plan-header {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  padding: 30px;
  font-size: 24px;
  font-weight: 600;
}

/* BODY */
.plan-body {
  flex: 1;              /* ini penting untuk stretch */
  padding: 35px 25px;
  background: #f2f2f2;
}

.plan-body h3 {
  color: #7c3aed;
  margin-bottom: 25px;
  font-size: 22px;
}

.plan-body p {
  margin: 12px 0;
  color: #475569;
  font-weight: 500;
}

/* PRICE */
.price-tag {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: #ffd700;
  font-weight: 700;
  padding: 20px;
  font-size: 20px;
}

/* FEATURED */
.featured {
  border: 2px solid #9333ea;
}

/* BEST RIBBON */
.badge {
  position: absolute;
  top: 15px;
  right: -45px;
  background: #ff007f;
  color: white;
  padding: 6px 50px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

/* ===== SIM SECTION ===== */
.sim-section {
  padding: 120px 0;
  background: #f3f0ff;
}

.sim-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.sim-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;   /* ini paling penting */
}

.sim-card {
  position: relative;
  display: inline-block;
}

.sim-card img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ===== BUY BUTTON ===== */

.sim-buy-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 45px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border-radius: 50px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  box-shadow: 0 15px 35px rgba(124,58,237,0.3);
  transition: 0.3s ease;
}

.sim-buy-btn:hover {
  transform: translateY(-4px);
}


/* Price Badge */
.price-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #ff0000;
  color: white;
  padding: 15px 20px;
  font-weight: 700;
  border-radius: 12px;
  transform: rotate(-15deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* RIGHT */
.sim-right {
  flex: 1;
}

.sim-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1e293b;
}

/* Benefit List */
.sim-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sim-list li {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  color: #334155;
  position: relative;
  padding-left: 35px;
}

/* Check Icon */
.sim-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  font-size: 14px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sim-list .highlight {
  color: #7c3aed;
  font-weight: 700;
}

/* CTA */
.sim-cta {
  margin-top: 50px;
  font-size: 28px;
  font-weight: 600;
}

.sim-cta span {
  color: #7c3aed;
  font-weight: 800;
  text-decoration: underline;
}

/* Responsive */
@media(max-width: 768px){

  .sim-section {
    padding: 80px 20px;
  }

  .sim-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .sim-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 30px;
  }

  .sim-list {
    width: 100%;
  }

  .sim-list li {
    font-size: 16px;
    padding-left: 40px;
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .sim-list li::before {
    width: 24px;
    height: 24px;
    font-size: 13px;
    left: 0;
    top: 3px;
  }

  .sim-list .highlight {
    font-size: 17px;
    text-align: left;
  }

  .sim-cta {
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
  }

  .sim-card img {
    width: 260px;
  }

  .price-badge {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* ===== DIFFERENCE SECTION ===== */
.difference-section {
  padding: 120px 0;
  background: #f3f0ff;
  text-align: center;
}

.difference-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #1e293b;
}

/* Layout */
.difference-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* Main Plan */
.main-plan {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  color: white;
  padding: 60px 40px;
  border-radius: 30px;
  width: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-plan h3 {
  font-size: 48px;
  margin-bottom: 30px;
}

.main-plan p {
  margin: 12px 0;
  font-size: 18px;
  font-weight: 500;
}

/* VS */
.vs-text {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

/* Competitor Grid */
.competitor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.competitor-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.competitor-card:hover {
  transform: translateY(-6px);
}

.competitor-card p {
  margin: 10px 0;
  font-size: 18px;
  color: #334155;
}

.competitor-card span {
  display: block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  color: #7c3aed;
}

/* Responsive */
@media(max-width: 992px){

  .difference-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .vs-text {
    display: none;
  }

  .difference-title {
    font-size: 30px;
  }

  .main-plan {
    width: 100%;
  }

  .competitor-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 120px 0;
  background: #f3f0ff;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #7c3aed;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 22px;
  transition: 0.3s;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #ffffff;
}

.faq-answer p {
  padding: 20px 25px;
  color: #334155;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Responsive */
@media(max-width:768px){
  .faq-title {
    font-size: 26px;
  }

  .faq-question {
    font-size: 16px;
  }
}



/* ============================= */
/*      TESTIMONI PREMIUM       */
/* ============================= */

.testimoni-section {
  padding: 120px 0;
  background: #f3f0ff;
  text-align: center;
}

.testimoni-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

/* ============================= */
/*          SLIDER              */
/* ============================= */

.testimoni-slider {
  position: relative;
  max-width: 750px;
  margin: auto;
  overflow: hidden;
}

.testimoni-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimoni-item {
  min-width: 100%;
  background: white;
  padding: 70px 50px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  position: relative;
}

/* ============================= */
/*        PROFILE IMAGE         */
/* ============================= */

.testimoni-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px auto;
  display: block;
  border: 5px solid #7c3aed;
}

/* ============================= */
/*         TEXT STYLE           */
/* ============================= */

.testimoni-text {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 25px;
  color: #334155;
  line-height: 1.6;
}

.rating {
  color: #facc15;
  font-size: 22px;
  margin-bottom: 20px;
}

.testimoni-item h4 {
  color: #7c3aed;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}

.testimoni-item span {
  font-size: 14px;
  color: #64748b;
}

/* ============================= */
/*         NAV BUTTONS          */
/* ============================= */

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border: none;
  color: white;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  z-index: 10;
}

/* Duduk kemas dalam card */
.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.prev-btn:hover,
.next-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ============================= */
/*            DOTS              */
/* ============================= */

.dots {
  margin-top: 30px;
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #c084fc;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s;
}

.dots span.active {
  opacity: 1;
  background: #7c3aed;
  transform: scale(1.2);
}

/* ============================= */
/*          RESPONSIVE          */
/* ============================= */

@media (max-width: 768px) {

  .testimoni-section {
    padding: 80px 20px;
  }

  .testimoni-title {
    font-size: 28px;
  }

  .testimoni-item {
    padding: 40px 25px;
  }

  .testimoni-text {
    font-size: 16px;
  }

  .prev-btn,
  .next-btn {
    display: none;
  }

}

/* ===================================== */
/*        SOCIAL MEDIA SECTION           */
/* ===================================== */

.social-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f3f0ff, #e9e6f2);
  text-align: center;
}

.social-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1e293b;
}

.social-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 60px;
}

/* GRID */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.social-card {
  background: white;
  padding: 40px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: #1e293b;
  box-shadow: 0 25px 50px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.1);
}

/* ICON */
.social-icon {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.social-card h4 {
  margin-bottom: 10px;
  font-weight: 700;
}

.social-card span {
  font-size: 14px;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-title {
    font-size: 28px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    padding: 30px 20px;
  }
}


/* ===== FEATURED ===== */
.featured {
  transform: scale(1.05);
  border: 3px solid #9333ea;
}

.badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #ff0080;
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 600;
}

footer {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  text-align: center;
  padding: 50px 0;
}


/* ===== MOBILE ===== */
@media(max-width: 768px){

  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: #7c3aed;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  nav.active {
    max-height: 300px;
    padding: 20px 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* ===== BACKGROUND SECTION ===== */
.background-section {
  padding: 120px 0;
  background: #e6e5eb;
}

.background-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

.background-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Box */
.background-box {
  background: white;
  padding: 70px 60px;
  border-radius: 30px;
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Gradient Border Effect */
.background-box::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 30px;
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  z-index: -1;
}

/* Text */
.background-box p {
  font-size: 20px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 30px;
}

.background-box strong {
  font-weight: 700;
  color: #000;
}

/* Highlight Quote */
.highlight-quote {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin: 40px 0;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive */
@media(max-width: 768px){

  .background-title {
    font-size: 28px;
  }

  .background-box {
    padding: 40px 25px;
  }

  .background-box p {
    font-size: 16px;
  }

  .highlight-quote {
    font-size: 24px;
  }
}

/* ===== LICENSE SECTION ===== */
.license-section {
  padding: 120px 0;
  background: #f3f0ff;
  text-align: center;
}

.license-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1e293b;
}

/* Image */
.license-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.license-image {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.license-image:hover {
  transform: scale(1.02);
}

/* Button */
.license-btn-wrapper {
  margin-top: 30px;
}

.license-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  border: 2px solid #c084fc;
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.license-btn:hover {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;
  border-color: transparent;
}

/* Responsive */
@media(max-width: 768px){

  .license-title {
    font-size: 28px;
  }

  .license-image {
    max-width: 100%;
  }

  .license-btn {
    font-size: 14px;
    padding: 12px 25px;
  }
}

/* =============================== */
/*        LICENSE SECTION          */
/* =============================== */

.license-section {
  padding: 120px 0;
  background: #f3f0ff;
  text-align: center;
}

.license-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1e293b;
}

.license-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WRAPPER */
.license-wrapper {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

/* CARD */
.license-card {
  flex: 1;
  max-width: 500px;
  background: white;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.license-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px rgba(0,0,0,0.12);
}

.license-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 25px;
}

/* BADGE */
.license-badge {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.license-badge span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #7c3aed;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .license-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .license-title {
    font-size: 28px;
  }

}

