/* ===== 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;
}

.container1 {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}

.container2 {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* =============================== */
/*          HEADER PREMIUM        */
/* =============================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 16px 0;

  /* Glass dark background */
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(148,163,184,0.1);

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-110%);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  color: #f8fafc;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
}

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

/* LINK */
nav a {
  text-decoration: none;
  color: #cbd5f5;
  font-weight: 500;
  font-size: 15px;

  position: relative;
  transition: 0.25s;
}

/* Hover text */
nav a:hover {
  color: #ffffff;
}

/* Underline animation (premium feel) */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;

  background: #7c3aed;

  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* =============================== */
/*        HAMBURGER PREMIUM       */
/* =============================== */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #e2e8f0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================== */
/*            MOBILE              */
/* =============================== */

@media(max-width: 768px){

  .hamburger {
    display: flex;
  }

  /* NAV CONTAINER */
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;

    /* PREMIUM GLASS */
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(12px);

    /* REMOVE LINE ISSUE */
    border-top: none;

    /* smooth open */
    max-height: 0;
    overflow: hidden;

    opacity: 0;
    transform: translateY(-10px);

    transition: all 0.35s ease;
  }

  /* ACTIVE MENU */
  nav.active {
    max-height: 350px;
    padding: 20px 0;

    opacity: 1;
    transform: translateY(0);
  }

  /* MENU LIST */
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  /* LINKS */
  nav a {
    font-size: 16px;
    color: #e2e8f0;
    transition: 0.25s;
  }

  nav a:hover {
    color: #a78bfa;
  }

}

/* ===================================== */
/*               HERO SECTION            */
/* ===================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  background: url("gig-economy.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

/* Overlay (lebih solid untuk nampakkan text) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(30, 0, 60, 0.9),
    rgba(88, 28, 135, 0.85)
  );
  z-index: 1;
}

/* ===================================== */
/*               LAYOUT                  */
/* ===================================== */

.hero-container {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===================================== */
/*               LEFT TEXT               */
/* ===================================== */

.hero-content {
  flex: 1;
  font-family: 'Poppins', sans-serif;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 0%, #67e8f9 45%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 4px 16px rgba(15, 23, 42, 0.45),
    0 0 28px rgba(34, 211, 238, 0.12);
}

/* CLEAN TITLE (no stroke) */
.hero-content h1 span {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: inherit;
  text-shadow: none;
}

/* SUBTITLE */
.hero-content p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #f3e8ff;
  line-height: 1.6;

  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* BUTTON */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  min-width: 210px;
  border-radius: 50px;
  background: linear-gradient(135deg, #9333ea, #ec4899);
  color: white;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;

  box-shadow: 0 10px 25px rgba(168,85,247,0.4);
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.hero-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 10px 25px rgba(15,23,42,0.28);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* ===================================== */
/*             RIGHT IMAGE               */
/* ===================================== */

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  animation: floatPhone 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes floatPhone {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* ===================================== */
/*               RESPONSIVE              */
/* ===================================== */

@media (max-width: 1024px){

  .hero-container{
    gap:40px;
  }

  .hero-content h1{
    font-size:50px;
  }

}

/* Tablet */
@media (max-width: 768px){

  .hero-section{
    padding-top:180px;
    padding-bottom: 20px;
    overflow: visible;
  }

  .hero-container{
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .hero-content{
    text-align:center;
  }

  .hero-content h1{
    font-size:40px;
  }

  .hero-content p{
    font-size:25px;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-image{
    margin-top: 0;
    margin-bottom: 0;
    text-align:center;
    position: relative;
    z-index: 3;
    transform: translateY(78px);
  }

  .hero-image img{
    max-width:300px;
  }

  .seo-section {
    position: relative;
    z-index: 1;
    margin-top: -28px;
    padding-top: 125px;
  }

}

/* Small phone */
@media (max-width: 480px){

  .hero-content h1{
    font-size:35px;
  }

  .hero-content p{
    font-size:20px;
  }

  .hero-btn{
    padding:14px 30px;
    font-size:14px;
  }

  .hero-actions{
    gap:12px;
  }

}

/* =============================== */
/*        SEO SECTION UPGRADE     */
/* =============================== */

.seo-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #020617, #0f172a);
}

/* CONTAINER */
.seo-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 60px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);

  padding: 50px;

  border-radius: 30px;
  border: 1px solid rgba(148,163,184,0.15);
}

/* =============================== */
/* IMAGE */
/* =============================== */

.seo-image {
  flex: 1;
  text-align: center;
}

.seo-image img {
  width: 100%;
  max-width: 400px;

  border-radius: 20px;

  box-shadow:
    0 0 40px rgba(124,58,237,0.4),
    0 0 80px rgba(168,85,247,0.2);

  transition: 0.4s;
}

.seo-image img:hover {
  transform: scale(1.05);
}

/* =============================== */
/* CONTENT */
/* =============================== */

.seo-content {
  flex: 1;
}

/* TITLE */
.seo-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

/* HIGHLIGHT */
.seo-highlight {
  font-size: 15px;
  font-weight: 600;

  background: linear-gradient(135deg, #22d3ee, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 20px;
}

/* TEXT */
.seo-content p {
  color: #cbd5f5;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* SUBTITLE */
.seo-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #a78bfa;

  margin-top: 20px;
  margin-bottom: 10px;
}

/* BUTTON */
.seo-btn {
  display: inline-block;
  margin-top: 20px;

  padding: 12px 28px;
  border-radius: 50px;

  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: white;

  text-decoration: none;
  font-weight: 600;

  box-shadow: 0 15px 35px rgba(124,58,237,0.4);
  transition: 0.3s;
}

.seo-btn:hover {
  transform: translateY(-3px);
}

/* =============================== */
/* MOBILE */
/* =============================== */

@media(max-width:768px){

  .seo-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .seo-content h2 {
    font-size: 24px;
  }

}

/* =============================== */
/*        WHY EASTEL PREMIUM      */
/* =============================== */

.why-eastel-section {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #020617, #000);
}

/* TITLE */
.why-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
}

.why-title span {
  background: linear-gradient(135deg, #22d3ee, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.why-subtitle {
  text-align: center;
  color: #cbd5f5;
  max-width: 700px;
  margin: 0 auto 70px auto;
  line-height: 1.7;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =============================== */
/* CARD */
/* =============================== */

.why-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);

  border-radius: 24px;
  padding: 30px;

  border: 1px solid rgba(148,163,184,0.15);

  text-align: center;

  transition: 0.35s ease;

  position: relative;
  overflow: hidden;
}

/* glow border effect */
.why-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, transparent, rgba(124,58,237,0.4), transparent);
  opacity: 0;
  transition: 0.3s;
}

/* hover effect */
.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(124,58,237,0.25);
}

.why-card:hover::before {
  opacity: 1;
}

/* =============================== */
/* ICON */
/* =============================== */

.why-icon {
  font-size: 38px;
  margin-bottom: 15px;

  /* glow */
  text-shadow: 0 0 15px rgba(124,58,237,0.6);
}

/* TITLE */
.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* =============================== */
/* COLOR VARIANTS */
/* =============================== */

.why-card.gold {
  box-shadow: 0 0 30px rgba(250,204,21,0.15);
}

.why-card.purple {
  box-shadow: 0 0 30px rgba(124,58,237,0.2);
}

.why-card.cyan {
  box-shadow: 0 0 30px rgba(34,211,238,0.2);
}

.why-card.pink {
  box-shadow: 0 0 30px rgba(236,72,153,0.2);
}

/* =============================== */
/* MOBILE */
/* =============================== */

@media(max-width:768px){

  .why-title {
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 25px;
  }

}

/* ===================================== */
/*           VIDEO INTRO SECTION         */
/* ===================================== */

.video-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f3f0ff, #e9e6f2);
  text-align: center;
}

.video-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1e293b;
}

.video-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.video-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 60px;
}

/* Video Frame */
.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* 16:9 Ratio */
.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 500px;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 768px) {

  .video-title {
    font-size: 28px;
  }

  .video-wrapper iframe,
  .video-wrapper video {
    height: 250px;
  }

}

/* =============================== */
/*        TELCO UPGRADE           */
/* =============================== */

.telco-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #020617, #0f172a);
  text-align: center;
}

.telco-title {
  font-size: 42px;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 60px;
}

/* GRID */
.telco-grid {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

/* BOX */
.telco-box {
  flex: 1;
  padding: 40px;
  border-radius: 20px;

  background: #0b1220;
  border: 1px solid rgba(148,163,184,0.15);

  text-align: left;
}

/* TITLE */
.telco-box h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #cbd5f5;
}

/* ITEM */
.telco-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #94a3b8;
}

.telco-item strong {
  color: #f8fafc;
}

/* =============================== */
/*        HIGHLIGHT BOX           */
/* =============================== */

.telco-box.highlight {
  border: 1px solid #7c3aed;
  box-shadow: 0 20px 60px rgba(124,58,237,0.3);
}

.prepaid {
  color: #a78bfa;
}

.postpaid {
  color: #94a3b8;
}

/* CTA */
.telco-cta {
  margin-top: 60px;
  font-size: 26px;
  color: #e2e8f0;
}

.telco-cta span {
  color: #7c3aed;
  font-weight: 700;
}

/* ICON STYLE */
.icon {
  width: 18px;
  height: 18px;

  stroke: #a78bfa;
  stroke-width: 2;
  fill: none;

  margin-right: 8px;
}

/* Align icon + text */
.telco-item span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Highlight card icon */
.telco-box.highlight .icon {
  stroke: #c084fc;
}

/* =============================== */
/*        MOBILE FIX TELCO        */
/* =============================== */

@media (max-width:768px){
  .telco-section {
    padding: 80px 20px;
  }


  .telco-grid {
    flex-direction: column;
    gap: 30px;
  }

  .telco-box {
    padding: 30px 20px;
    text-align: left;
  }
  .telco-title{
    font-size:30px;
    margin-bottom:40px;
    padding:0 20px;
  }

  /* FIX ITEM */
  .telco-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
    padding: 12px 0;

    border-bottom: 1px solid rgba(148,163,184,0.1);
  }

  .telco-item:last-child {
    border-bottom: none;
  }

  /* LEFT SIDE (icon + text) */
  .telco-item span {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    color: #94a3b8;
  }

  /* RIGHT VALUE */
  .telco-item strong {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;

    white-space: nowrap; /* 🔥 penting elak turun line */
  }

  /* TITLE */
  .telco-box h3 {
    text-align: center;
    margin-bottom: 20px;
  }

}

/* =============================== */
/*        MAIN SECTION            */
/* =============================== */
.eastel-section {
    background: linear-gradient(135deg, #6a11cb, #3b072c);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.eastel-section .container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

/* TITLE */
.eastel-section h1 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 40px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* LAYOUT */
.eastel-section .grid {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* HERO CARD */
.eastel-section .eastel {
    flex: 1;
    padding: 45px;
    border-radius: 25px;
    background: linear-gradient(135deg, #00c6ff, #0072ff, #6a11cb);
    background-size: 200% 200%;
    animation: eastelGradient 6s ease infinite;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    color: white;
    position: relative;
    overflow: hidden;
}

/* glow */
.eastel-section .eastel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.25), transparent);
}

/* badge */
.eastel-section .eastel::after {
    content: "🔥 BEST VALUE";
    position: absolute;
    top: 20px;
    right: -40px;
    background: #ffeb3b;
    color: #000;
    padding: 8px 40px;
    font-size: 12px;
    transform: rotate(45deg);
    font-weight: bold;
}

.eastel-section .eastel h2 {
    font-size: 55px;
    font-weight: 800;
}

.eastel-section .eastel p {
    font-size: 18px;
    opacity: 0.95;
}

/* ANIMATION */
@keyframes eastelGradient {
    0% { background-position: 0% }
    50% { background-position: 100% }
    100% { background-position: 0% }
}

/* VS */
.eastel-section .vs {
    background: white;
    color: #333;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 50%;
}

/* RIGHT GRID */
.eastel-section .right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.eastel-section .card {
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, #7b1fa2, #8e24aa);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    text-align: center;
}

.eastel-section .card h3 {
    font-size: 24px;
    color: #fff;
}

.eastel-section .card p {
    color: #f3e5f5;
}

/* PRICE */
.eastel-section .price {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
}

.eastel-section .blue { color: #00e5ff; }
.eastel-section .green { color: #00ff95; }
.eastel-section .orange { color: #ffcc00; }
.eastel-section .pink1 { color: #ff80ab; }

/* MOBILE */
@media(max-width:768px){

    .eastel-section .grid {
        flex-direction: column;
        gap: 20px;
    }

    .eastel-section .right {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .eastel-section .card {
        padding: 20px;
    }

    .eastel-section .card h3 {
        font-size: 20px;
    }

    .eastel-section .card p {
        font-size: 13px;
    }

    .eastel-section .price {
        font-size: 18px;
    }

    .eastel-section h1 {
        font-size: 28px;
    }
}

/* =============================== */
/*        PREMIUM PLANS PRO        */
/* =============================== */

.plans {
  padding: 120px 0;
  background: linear-gradient(to bottom, #020617, #0f172a);
  text-align: center;
  color: white;
  overflow-x: hidden;

}

/* TITLE */
.plan-title {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 80px;
  color: #f8fafc;
}

/* =============================== */
/*         DESKTOP GRID           */
/* =============================== */

.plan-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =============================== */
/*            CARD                */
/* =============================== */

.plan-card {
  background: #0b1220;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(148,163,184,0.15);
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);

  transition: 0.3s ease;
 
}

.plan-card:hover {
  transform: translateY(-6px);
}

/* =============================== */
/* CONTENT SPACING FIX            */
/* =============================== */

.plan-header {
  padding: 25px 20px;
  font-size: 22px;
  font-weight: 600;
}

.plan-body {
  padding: 30px 20px;
  flex: 1;
}

.plan-body h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #facc15;
}

.plan-body p {
  font-size: 15px;
  color: #94a3b8;
}

.price-tag {
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #c4b5fd;
  border-top: 1px solid rgba(148,163,184,0.1);
}

/* FEATURED */
.plan-card.featured {
  border: 2px solid #7c3aed;
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;   /* FIX: jangan negatif */

  background: #ff007f;
  color: white;

  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;

  border-radius: 6px;

  transform: none; /* buang rotate */
}

/* NAV hidden desktop */
.plan-nav {
  display: none;
}

/* =============================== */
/*            MOBILE              */
/* =============================== */
@media (max-width:768px){

  .plans {
    padding: 80px 0;
  }

  .plan-title{
    font-size:30px;
    margin-bottom:40px;
    padding:0 20px;
  }

  /* SLIDER */
  .plan-wrapper{
    display:flex;
    overflow-x:auto;

    gap:0;               /* ðŸ”¥ penting */
    padding:0;           /* ðŸ”¥ buang padding */

    scroll-snap-type:x mandatory;
  }

  .plan-wrapper::-webkit-scrollbar{
    display:none;
  }

  /* CARD FULL SIZE */
  .plan-card{
    flex:0 0 100%;
    max-width:100%;

    scroll-snap-align:start;
  }

  /* DISABLE SCALE (VERY IMPORTANT) */
  .plan-card.featured{
    transform:none !important;
    border:2px solid #facc15;
  }

  .plan-card:hover{
    transform:none;
  }

  /* BODY */
  .plan-body{
    padding:30px 20px;
  }

  .plan-body h3{
    font-size:24px;
  }

  .plan-body p{
    font-size:15px;
  }

  /* PRICE */
  .price-tag{
    font-size:22px;
  }

  /* =============================== */
  /*         NAV BUTTON             */
  /* =============================== */

  .plan-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
  }

  .plan-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    border: 1px solid rgba(148,163,184,0.3);

    background: #0b1220;
    color: #cbd5f5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.25s;
  }

  .plan-nav button:active {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
  }

}

/* ============================= */
/*          SIM PREMIUM         */
/* ============================= */

.sim-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, rgba(124,58,237,0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(34,211,238,0.12), transparent 30%),
    linear-gradient(to bottom, #020617, #0f172a);
}

/* Layout */
.sim-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(148,163,184,0.14);
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* ============================= */
/*            LEFT              */
/* ============================= */

.sim-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.sim-card {
  position: relative;
  width: min(100%, 430px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 26px;
}

.sim-card::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 78%;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,23,42,0.62), transparent 72%);
  filter: blur(10px);
  z-index: 0;
}

/* Product Image */
.sim-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  margin: 0 auto;
  display: block;
  border-radius: 18px;
  filter:
    drop-shadow(0 24px 42px rgba(15, 23, 42, 0.42))
    drop-shadow(0 0 22px rgba(34,211,238,0.16));
}

/* Price Badge (more premium) */
.price-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 16px;
  transform: rotate(-10deg);
  text-align: center;
  box-shadow: 0 14px 28px rgba(239,68,68,0.28);
  line-height: 1.2;
}

.price-badge small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
}

/* ============================= */
/*         BUY BUTTON           */
/* ============================= */

.sim-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.sim-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 50px;
  min-width: 210px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;

  color: white;
  border-radius: 50px;

  background: linear-gradient(135deg, #7c3aed, #9333ea);

  border: 1px solid rgba(124,58,237,0.5);

  box-shadow:
    0 14px 30px rgba(124,58,237,0.32);

  transition: all 0.25s ease;
}

/* Hover premium (not overkill) */
.sim-buy-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px rgba(124,58,237,0.6);
}

.sim-buy-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 30px rgba(15,23,42,0.28);
}

.sim-buy-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* ============================= */
/*            RIGHT             */
/* ============================= */

.sim-right {
  flex: 1;
  background: rgba(2,6,23,0.42);
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 28px;
  padding: 36px 34px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.sim-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.22);
  color: #67e8f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Title */
.sim-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #f8fafc;
  line-height: 1.15;
}

/* ============================= */
/*         BENEFITS LIST        */
/* ============================= */

.sim-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sim-list li {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #cbd5f5;
  position: relative;
  padding: 0 0 0 38px;
  line-height: 1.65;
}

/* Check Icon (clean premium) */
.sim-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;

  background: linear-gradient(135deg, rgba(124,58,237,0.24), rgba(34,211,238,0.18));
  color: #c4b5fd;

  font-size: 13px;
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

/* Highlight text */
.sim-list .highlight {
  color: #c4b5fd;
  font-weight: 600;
}

/* ============================= */
/*             CTA              */
/* ============================= */

.sim-cta {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(148,163,184,0.14);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  color: #e2e8f0;
}

.sim-cta span {
  color: #7c3aed;
  font-weight: 700;
}

/* ============================= */
/*          RESPONSIVE          */
/* ============================= */

@media(max-width: 768px){

  .sim-section {
    padding: 72px 14px;
  }

  .sim-section .container {
    width: 100%;
  }

  .sim-wrapper {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    border-radius: 24px;
    padding: 24px 16px;
  }

  .sim-left {
    width: 100%;
    text-align: center;
  }

  .sim-card {
    width: 100%;
    max-width: none;
    padding: 10px 8px 18px;
  }

  .sim-actions {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .sim-title {
    font-size: 26px;
    text-align: center;
  }

  .sim-right {
    width: 100%;
    border-radius: 22px;
    padding: 24px 18px;
    text-align: center;
  }

  .sim-eyebrow {
    justify-content: center;
  }

  .sim-list li {
    font-size: 16px;
    text-align: left;
  }

  .sim-cta {
    font-size: 18px;
    text-align: center;
  }

  .sim-card img {
    width: min(100%, 260px);
  }

  .price-badge {
    top: 10px;
    left: 8px;
    padding: 7px 10px;
    transform: rotate(-8deg);
  }
}

/* ============================= */
/* DIFFERENCE SECTION */
/* ============================= */

.difference-section{
padding: 120px 0;

background:
linear-gradient(135deg,#c312d6,#f533be);

text-align:center;
position:relative;
overflow:hidden;
}

/* glow background */

.difference-section::before{
content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,#9333ea40,transparent);
top:-200px;
left:-200px;
}

.difference-section::after{
content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(circle,#22d3ee30,transparent);
bottom:-200px;
right:-200px;
}

/* ============================= */
/* TITLE */
/* ============================= */

.difference-title{
font-size: 42px; 
font-weight: 700; 
margin-bottom: 80px; 
color: #fff;
}

/* ============================= */
/* LAYOUT */
/* ============================= */

.difference-wrapper{
display:flex;
align-items:center;
justify-content:center;
gap:70px;
max-width:1200px;
margin:auto;
position:relative;
z-index:2;
}

/* ============================= */
/* MAIN PLAN */
/* ============================= */

.main-plan{

background:linear-gradient(135deg,#7c3aed,#9333ea);

color:white;

padding:70px 50px;

border-radius:30px;

width:340px;

box-shadow:
0 30px 80px rgba(124,58,237,0.5);

transition:0.4s;
}

.main-plan:hover{
transform:translateY(-12px) scale(1.05);

box-shadow:
0 40px 100px rgba(124,58,237,0.7);
}

.main-plan h3{
font-size:52px;
margin-bottom:35px;
font-weight:900;
}

.main-plan p{
font-size:20px;
margin-bottom:14px;
opacity:0.95;
}

/* ============================= */
/* VS BADGE */
/* ============================= */

.vs-badge{

font-size:28px;
font-weight:700;

width:90px;
height:90px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:white;

box-shadow:
0 20px 40px rgba(0,0,0,0.15);

color:#1e293b;

animation:vsGlow 2.5s infinite;
}

@keyframes vsGlow{

0%{
box-shadow:0 0 0 rgba(124,58,237,0.4);
}

50%{
box-shadow:0 0 30px rgba(124,58,237,0.6);
}

100%{
box-shadow:0 0 0 rgba(124,58,237,0.4);
}

}

/* ============================= */
/* COMPETITOR GRID */
/* ============================= */

.competitor-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* ============================= */
/* COMPETITOR CARD */
/* ============================= */

.competitor-card{

padding:40px 30px;

border-radius:25px;

background:rgba(255,255,255,0.6);

backdrop-filter:blur(10px);

box-shadow:
0 20px 40px rgba(0,0,0,0.08);

transition:0.35s;
}

.competitor-card:hover{

transform:translateY(-8px) scale(1.03);

box-shadow:
0 25px 60px rgba(0,0,0,0.12);
}

.competitor-card p{

font-size:18px;

margin-bottom:10px;

color:#334155;
}

.competitor-card span{

font-weight:800;

font-size:20px;
}

/* ============================= */
/* TELCO COLORS */
/* ============================= */

.celcom{
border-top:6px solid #2563eb;
}

.celcom span{
color:#2563eb;
}

.maxis{
border-top:6px solid #16a34a;
}

.maxis span{
color:#16a34a;
}

.umobile{
border-top:6px solid #f97316;
}

.umobile span{
color:#f97316;
}

.unifi{
border-top:6px solid #ec4899;
}

.unifi span{
color:#ec4899;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:992px){

.difference-wrapper{
flex-direction:column;
}

.vs-badge{
margin:20px 0;
}

}

@media(max-width:768px){

.difference-section {
padding: 80px 20px;
}

.difference-title{
font-size:30px;
margin-bottom:50px;
padding:0 20px;
}

.main-plan{
width:100%;
padding:60px 30px;
}

.main-plan h3{
font-size:40px;
}

.main-plan p{
font-size:18px;
}

.competitor-grid{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.competitor-card{
padding:25px 15px;
}

.competitor-card p{
font-size:16px;
}

.competitor-card span{
font-size:18px;
}

}


/* ============================= */
/*          FAQ PREMIUM         */
/* ============================= */

.faq-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #020617, #0f172a);
}

/* Title */
.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #f8fafc;
}

/* ============================= */
/*        FAQ ITEM CARD         */
/* ============================= */

.faq-item {
  max-width: 750px;
  margin: 0 auto 20px;

  border-radius: 18px;
  overflow: hidden;

  background: #0b1220;

  border: 1px solid rgba(148,163,184,0.15);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.5);

  transition: 0.25s ease;
}

/* Hover effect (subtle) */
.faq-item:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-2px);
}

/* ============================= */
/*         QUESTION             */
/* ============================= */

.faq-question {
  width: 100%;
  padding: 22px 25px;
  font-size: 17px;
  font-weight: 600;

  background: transparent;
  color: #e2e8f0;

  border: none;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Icon */
.faq-question span {
  font-size: 20px;
  color: #a78bfa;
  transition: transform 0.3s ease;
}

/* ============================= */
/*           ANSWER             */
/* ============================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: all 0.35s ease;

  background: transparent;
}

/* Text */
.faq-answer p {
  padding: 0 25px 20px;
  color: #94a3b8;
  line-height: 1.7;
  font-size: 15px;
}

/* Divider line */
.faq-item.active {
  border-color: rgba(124,58,237,0.5);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7);
}

/* Open state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Rotate icon */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ============================= */
/*          RESPONSIVE          */
/* ============================= */

@media(max-width:768px){

  .faq-section {
    padding: 80px 20px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
  }
}



/* ============================= */
/*      TESTIMONI PREMIUM PRO   */
/* ============================= */

.testimoni-section {
  padding: 120px 0;
  background: linear-gradient(to bottom, #020617, #0f172a);
  text-align: center;
}

.testimoni-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #f8fafc;
  letter-spacing: 0.5px;
}

/* ============================= */
/*        SLIDER WRAPPER        */
/* ============================= */

.testimoni-slider {
  position: relative;
  max-width: 750px;
  margin: auto;
  overflow: hidden;
}

.testimoni-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* ============================= */
/*        PREMIUM CARD          */
/* ============================= */

.testimoni-item {
  min-width: 100%;
  padding: 60px 50px;
  border-radius: 24px;

  background: #0b1220;

  border: 1px solid rgba(148,163,184,0.15);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.02) inset;

  transition: all 0.3s ease;
}

/* subtle hover (premium style, not aggressive) */
.testimoni-item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    0 0 0 1px rgba(124,58,237,0.25) inset;
}

/* ============================= */
/*        PROFILE IMAGE         */
/* ============================= */

.testimoni-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 25px;

  border: 3px solid #7c3aed;

  box-shadow:
    0 10px 30px rgba(124,58,237,0.4);
}

/* ============================= */
/*         TEXT STYLE           */
/* ============================= */

.testimoni-text {
  font-size: 19px;
  font-style: italic;
  margin-bottom: 25px;
  color: #e2e8f0;
  line-height: 1.7;
}

.rating {
  color: #facc15;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimoni-item h4 {
  color: #c4b5fd;
  font-weight: 600;
  font-size: 17px;
}

.testimoni-item span {
  font-size: 14px;
  color: #94a3b8;
}

/* ============================= */
/*         NAV BUTTONS          */
/* ============================= */

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: #111827;
  border: 1px solid rgba(148,163,184,0.2);
  color: white;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;

  transition: 0.25s;
}

.prev-btn:hover,
.next-btn:hover {
  background: #7c3aed;
  border-color: #7c3aed;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* ============================= */
/*            DOTS              */
/* ============================= */

.dots {
  margin-top: 30px;
}

.dots span {
  width: 10px;
  height: 10px;
  background: #475569;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  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 20px;
  background: linear-gradient(135deg, #f3f0ff, #e9e6f2);
  text-align: center;
}

.social-title {
  font-size: 42px;
  font-weight: 800;
  
  color: #1e293b;
  margin-bottom: 15px;
}

.social-title span {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-subtitle {
  text-align: center;
  color: #cbd5f5;
  max-width: 700px;
  margin: 0 auto 70px auto;
  line-height: 1.7;
}

/* 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 WRAPPER */
.social-card .icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 15px;

  border-radius: 16px;

  background: rgba(124,58,237,0.08);
}

/* SVG ICON */
.social-card .icon svg {
  width: 26px;
  height: 26px;

  stroke: #a78bfa;
}

/* 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;
  }
}

/* ===================================== */
/*        AGENT PREMIUM PRO              */
/* ===================================== */

.agent2-section {
  padding: 120px 0;

  /* Dark premium gradient */
  background: linear-gradient(to bottom, #020617, #0f172a);
}

.agent2-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =============================== */
/*           LEFT SIDE            */
/* =============================== */

.agent2-content {
  flex: 1;
}

.agent2-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #f8fafc;
}

/* Gradient highlight text */
.agent2-content h2 span {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.agent2-sub {
  font-size: 18px;
  margin-bottom: 30px;
  color: #cbd5f5;
}

/* LIST */
.agent2-list {
  list-style: none;
  padding: 0;
}

.agent2-list li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #e2e8f0;
  padding-left: 28px;
  position: relative;
}

/* Check icon premium */
.agent2-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;

  width: 18px;
  height: 18px;

  font-size: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(124,58,237,0.2);
  color: #a78bfa;
}

/* =============================== */
/*         RIGHT CARD             */
/* =============================== */

.agent2-admin-card {
  flex: 1;

  /* Glass dark card */
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);

  padding: 50px 40px;
  border-radius: 24px;

  border: 1px solid rgba(148,163,184,0.15);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7);

  text-align: center;
}

/* IMAGE */
.admin-img {
  width: 130px;
  aspect-ratio: 1 / 1;   /* 🔥 ini penting */
  border-radius: 50%;

  object-fit: cover;
  object-position: center;

  display: block;
  margin: 0 auto 20px;

  border: 3px solid #7c3aed;
  box-shadow: 0 10px 30px rgba(124,58,237,0.5);
}

/* NAME */
.agent2-admin-card h4 {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 8px;
}

/* ROLE */
.admin-role {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}

/* CONTACT */
.admin-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #cbd5f5;
}

/* =============================== */
/*            BUTTON              */
/* =============================== */

.agent2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 25px;
}

.agent2-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;

  background: #7c3aed;
  color: white;

  text-decoration: none;
  font-weight: 600;

  border: 1px solid rgba(124,58,237,0.4);

  box-shadow: 0 10px 30px rgba(124,58,237,0.4);

  transition: 0.25s;
}

.agent2-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(124,58,237,0.6);
}

.agent2-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 10px 30px rgba(15,23,42,0.22);
}

.agent2-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

/* =============================== */
/*          RESPONSIVE            */
/* =============================== */

@media (max-width: 768px) {

  .agent2-section {
    padding: 80px 20px;
  }

  .agent2-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .agent2-content {
    text-align: center;
  }

  .agent2-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .agent2-sub {
    font-size: 16px;
  }

  .agent2-list {
    text-align: left;
    margin: 20px auto 0;
    max-width: 300px;
  }

  .agent2-admin-card {
    padding: 35px 25px;
  }

  .admin-img {
    width: 110px;
    height: 110px;
  }

  .agent2-btn {
    width: 100%;
  }

  .agent2-actions {
    gap: 12px;
  }

}
/* ===== 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 PREMIUM        */
/* =============================== */

footer {
  background: #020617;
  color: #cbd5f5;

  text-align: center;
  padding: 60px 20px;

  border-top: 1px solid rgba(148,163,184,0.12);

  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}

/* TEXT */
footer p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 15px;
}

/* LINKS */
footer a {
  color: #c4b5fd;
  text-decoration: none;
  transition: 0.25s;
}

footer a:hover {
  color: #ffffff;
}


/* ===== BACKGROUND SECTION ===== */
.background-section {
  padding: 120px 0;
  background: #f3f0ff;
}

.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;
  }
}
/* ============================= */
/*        SOCIAL SECTION        */
/* ============================= */

.social-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #020617, #0f172a);
  text-align: center;
}

.social-title {
  font-size: 38px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 15px;
}

.social-subtitle {
  text-align: center;
  color: #cbd5f5;
  max-width: 700px;
  margin: 0 auto 70px auto;
  line-height: 1.7;
}

/* Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

/* Card */
.social-card {
  text-decoration: none;
  padding: 30px 20px;
  border-radius: 18px;

  background: #0b1220;
  border: 1px solid rgba(148,163,184,0.15);

  box-shadow: 0 10px 40px rgba(0,0,0,0.5);

  transition: 0.3s ease;
}

/* Hover effect */
.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

/* Icon */
.social-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,58,237,0.1);
}

.social-card .icon i {
  font-size: 30px;
  color: #e2e8f0;
}

.social-card.facebook .icon i {
  color: #1877f2;
}

.social-card.tiktok .icon i {
  color: #ffffff;
}

.social-card.shopee .icon i {
  color: #e1306c;
}

.social-card.telegram .icon i {
  color: #229ed9;
}

/* Title */
.social-card h4 {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 5px;
}

/* Text */
.social-card p {
  font-size: 14px;
  color: #94a3b8;
}

/* ============================= */
/*     BRAND COLOR ACCENTS      */
/* ============================= */

.facebook:hover {
  border-color: #1877f2;
}

.tiktok:hover {
  border-color: #000000;
}

.shopee:hover {
  border-color: #ee4d2d;
}

.telegram:hover {
  border-color: #229ed9;
}

/* ============================= */
/*          RESPONSIVE          */
/* ============================= */

@media(max-width:768px){
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-title {
    font-size: 26px;
  }
}

/* ============================= */
/*     SECTION TITLE ALIGN      */
/* ============================= */

.why-title,
.sim-title,
.plan-title,
.eastel-section h1,
.testimoni-title,
.faq-title,
.social-title,
.agent2-content h2 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(15, 23, 42, 0.25);
}

.why-title span,
.sim-title span,
.plan-title span,
.testimoni-title span,
.faq-title span,
.social-title span,
.agent2-content h2 span {
  background: linear-gradient(135deg, #22d3ee, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eastel-section h1 {
  color: #f8fafc;
  text-shadow: 0 4px 18px rgba(15, 23, 42, 0.4);
}

.eastel-section h1 span {
  background: linear-gradient(135deg, #ffffff, #67e8f9 45%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

/* ============================= */
/*        SECTION SUBTITLES     */
/* ============================= */

.plan-title,
.eastel-section h1,
.testimoni-title,
.faq-title {
  margin-bottom: 15px;
}

.plan-subtitle,
.testimoni-subtitle,
.faq-subtitle {
  max-width: 700px;
  margin: 0 auto 70px auto;
  text-align: center;
  color: #cbd5f5;
  line-height: 1.7;
}

.plan-subtitle {
  margin: 0 auto 70px auto;
}

.eastel-subtitle {
  max-width: 700px;
  margin: 0 auto 70px auto;
  text-align: center;
  color: #cbd5f5;
  line-height: 1.7;
}

@media(max-width:768px) {
  .plan-subtitle,
  .testimoni-subtitle,
  .faq-subtitle,
  .eastel-subtitle {
    font-size: 15px;
    padding: 0 20px;
    margin: 0 auto 70px auto;
  }
}
