/* ============================================
   RESET & BASE - FRESH & MODERN
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edf5 50%, #f5f0ff 100%);
  color: #1a1a2e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed;
  width: min(700px, 70vw);
  height: min(700px, 70vw);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  width: min(600px, 60vw);
  height: min(600px, 60vw);
  background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
  bottom: -15%;
  right: -10%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   MAIN CARD - GLASSMORPHISM
   ============================================ */
.main-card {
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: clamp(24px, 3vw, 40px);
  padding: clamp(1.5rem, 3.5vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 40px 80px rgba(99, 102, 241, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  border-bottom: 2px solid rgba(99, 102, 241, 0.08);
  padding-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.brand h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.brand h1 span {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand .sub {
  color: #64748b;
  font-size: clamp(0.75rem, 1.2vw, 1.05rem);
  font-weight: 600;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(6px, 1vw, 12px);
}

.brand .sub .badge-new {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: clamp(0.55rem, 0.8vw, 0.75rem);
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  white-space: nowrap;
}

.brand .sub .badge-pc {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
  font-size: clamp(0.55rem, 0.8vw, 0.75rem);
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  white-space: nowrap;
}

.header-stats {
  display: flex;
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
  flex-wrap: wrap;
}

.header-stats .stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(99, 102, 241, 0.08);
  padding: clamp(0.4rem, 0.8vw, 0.9rem) clamp(0.8rem, 1.5vw, 1.6rem);
  border-radius: clamp(14px, 2vw, 20px);
  text-align: center;
  min-width: clamp(60px, 10vw, 100px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.04);
  flex: 1;
  transition: all 0.3s ease;
}

.header-stats .stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.15);
}

.header-stats .stat .num {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
}

.header-stats .stat .label {
  color: #94a3b8;
  font-size: clamp(0.5rem, 0.7vw, 0.7rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.1rem;
}

/* ============================================
   BADGE ROW
   ============================================ */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(6px, 1vw, 12px);
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 0.8vw, 8px);
  font-size: clamp(0.6rem, 0.8vw, 0.8rem);
  font-weight: 600;
  padding: clamp(0.3rem, 0.6vw, 0.6rem) clamp(0.7rem, 1.2vw, 1.4rem);
  border-radius: clamp(10px, 1.5vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.7);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.03);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.badge:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-color: #6366f1;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.badge-danger {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.15);
  background: rgba(239, 68, 68, 0.05);
}

.badge-danger:hover {
  border-color: #ef4444;
  color: #fff;
  background: #ef4444;
}

/* ============================================
   CONTENT GRID
   ============================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* ============================================
   LEFT COLUMN
   ============================================ */
.left-col .featured-img {
  border-radius: clamp(18px, 2.5vw, 28px);
  overflow: hidden;
  border: 2px solid rgba(99, 102, 241, 0.08);
  position: relative;
  box-shadow: 0 25px 50px rgba(99, 102, 241, 0.1);
  background: #f1f5f9;
}

.left-col .featured-img img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.left-col .featured-img:hover img {
  transform: scale(1.04);
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.9), rgba(139, 92, 246, 0.9));
  backdrop-filter: blur(10px);
  padding: clamp(0.5rem, 1vw, 1.1rem) clamp(1rem, 2vw, 2.2rem);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  color: #fff;
  font-weight: 800;
  font-size: clamp(0.7rem, 1vw, 1rem);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.left-col .featured-img:hover .play-badge {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.img-caption {
  color: #64748b;
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  text-align: center;
  margin-top: clamp(0.8rem, 1.2vw, 1.2rem);
  font-weight: 500;
}

.img-caption .hint {
  background: rgba(99, 102, 241, 0.06);
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
  font-size: clamp(0.55rem, 0.7vw, 0.75rem);
  color: #6366f1;
  font-weight: 700;
  margin-left: 6px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  white-space: nowrap;
}

/* ============================================
   FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr));
  gap: clamp(10px, 1.5vw, 20px);
  margin-top: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.feature-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: clamp(16px, 2vw, 20px);
  padding: clamp(0.8rem, 1.5vw, 1.5rem);
  border: 1px solid rgba(99, 102, 241, 0.06);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.03);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.08);
}

.feature-item .icon {
  font-size: clamp(1.3rem, 2vw, 2rem);
  margin-bottom: 0.4rem;
  display: block;
}

.feature-item h4 {
  color: #0f172a;
  font-size: clamp(0.8rem, 1vw, 1.05rem);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-item p {
  color: #64748b;
  font-size: clamp(0.65rem, 0.8vw, 0.85rem);
  line-height: 1.4;
}

/* ============================================
   INFO BLOCK
   ============================================ */
.info-block {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(99, 102, 241, 0.06);
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(1rem, 1.8vw, 2rem);
  margin-bottom: clamp(1rem, 1.8vw, 2rem);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.03);
  position: relative;
  transition: all 0.3s ease;
}

.info-block:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.06);
}

.info-block.security-theme {
  border-left: 4px solid #ef4444;
}

.info-block.privacy-theme {
  border-left: 4px solid #6366f1;
}

.info-block h3 {
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  color: #0f172a;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.info-block .main-statement {
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #1e293b;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(99, 102, 241, 0.06);
  font-style: italic;
}

.info-block h4 {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #6366f1;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.info-list {
  list-style: none;
}

.info-list li {
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 26px;
}

.info-list li strong {
  color: #0f172a;
}

.info-list li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
}

.info-list.shield li::before {
  content: '🛡️';
  font-size: 0.9rem;
}

.info-list.lock li::before {
  content: '🔑';
  font-size: 0.9rem;
}

/* ============================================
   RIGHT COLUMN
   ============================================ */
.right-col .desc {
  color: #475569;
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.right-col .desc strong {
  color: #0f172a;
}

.right-col .desc .highlight-pc {
  color: #6366f1;
  font-weight: 700;
  background: rgba(99, 102, 241, 0.06);
  padding: 0.1rem 0.5rem;
  border-radius: 6px;
}

/* ============================================
   PRICING WRAPPER
   ============================================ */
.pricing-wrapper {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(99, 102, 241, 0.06);
  border-radius: 20px;
  padding: 24px 24px 26px 24px;
  margin-bottom: 1.8rem;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pricing-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  opacity: 0.4;
}

.pricing-wrapper:hover {
  border-color: rgba(99, 102, 241, 0.12);
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.08);
  transform: translateY(-2px);
}

/* ============================================
   PRICING HEADER
   ============================================ */
.pricing-header-wrapper {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(99, 102, 241, 0.08);
  position: relative;
}

.pricing-title-wrapper {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: -0.3px;
}

.pricing-title-wrapper i {
  color: #6366f1;
  font-size: 1.1rem;
  background: rgba(99, 102, 241, 0.08);
  padding: 6px;
  border-radius: 10px;
}

.pricing-sub-wrapper {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================
   PRICING GRID
   ============================================ */
.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   PRICE CARD
   ============================================ */
.price-card {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(99, 102, 241, 0.06);
  border-radius: 16px;
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: all 0.4s ease;
}

.price-card:hover {
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateX(6px) scale(1.01);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.06);
}

.price-card:hover::before {
  background: #6366f1;
}

.price-card-inner {
  position: relative;
  z-index: 1;
}

/* ============================================
   PRICE HEADER
   ============================================ */
.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  gap: 12px;
  flex-wrap: wrap;
}

.price-name {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-icon {
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.price-card:hover .price-icon {
  transform: scale(1.15) rotate(-5deg);
}

.price-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.2px;
}

.price-selected {
  display: none;
  font-size: 0.5rem;
  font-weight: 700;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  padding: 2px 12px;
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  white-space: nowrap;
  animation: fadeInSelected 0.3s ease;
}

@keyframes fadeInSelected {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.price-card.active .price-selected {
  display: inline-block;
}

.price-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}

.price-card:hover .price-tag {
  color: #6366f1;
}

/* ============================================
   BADGES
   ============================================ */
.price-popular-badge {
  font-size: 0.5rem;
  font-weight: 700;
  color: #f59e0b;
  background: #fef3c7;
  padding: 2px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #f59e0b;
  white-space: nowrap;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.price-popular-badge i {
  font-size: 0.45rem;
}

.price-recommend {
  font-size: 0.5rem;
  font-weight: 700;
  color: #3b82f6;
  background: #dbeafe;
  padding: 2px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #3b82f6;
  white-space: nowrap;
}

.price-recommend i {
  font-size: 0.45rem;
}

.price-vip-badge {
  font-size: 0.5rem;
  font-weight: 700;
  color: #8b5cf6;
  background: #ede9fe;
  padding: 2px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #8b5cf6;
  white-space: nowrap;
}

.price-vip-badge i {
  font-size: 0.45rem;
}

/* ============================================
   PRICE DESCRIPTION
   ============================================ */
.price-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 6px;
  padding-left: 38px;
  font-weight: 500;
}

/* ============================================
   PRICE BENEFITS
   ============================================ */
.price-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  padding-left: 38px;
  margin-bottom: 0;
}

.price-benefits li {
  font-size: 0.68rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.price-benefits li i {
  color: #22c55e;
  font-size: 0.55rem;
  background: rgba(34, 197, 94, 0.08);
  padding: 2px;
  border-radius: 50%;
}

/* ============================================
   ACTIVE STATE
   ============================================ */
.price-card.active {
  border-color: #6366f1;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(6px);
  box-shadow: 0 8px 35px rgba(99, 102, 241, 0.1);
}

.price-card.active::before {
  background: #6366f1;
  width: 5px;
}

.price-card.active .price-tag {
  color: #6366f1;
}

.price-card.active .price-title {
  color: #0f172a;
}

.price-card.active .price-icon {
  transform: scale(1.1);
}

/* ============================================
   PAKET POPULER
   ============================================ */
.price-card.popular {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #f59e0b;
  padding-top: clamp(1.2rem, 2vw, 2.2rem);
  position: relative;
}

.price-card.popular::after {
  content: '★ POPULER';
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  padding: 3px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.price-card.popular .price-title {
  color: #d97706;
}

.price-card.popular .price-tag {
  color: #d97706;
}

.price-card.popular .price-desc {
  color: #64748b;
}

.price-card.popular .price-benefits li {
  color: #475569;
}

.price-card.popular .price-selected {
  color: #d97706;
  background: #fef3c7;
  border-color: #f59e0b;
}

.price-card.popular.active {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.15);
}

.price-card.popular.active::before {
  background: linear-gradient(180deg, #f59e0b, #d97706);
}

.price-card.popular.active .price-tag {
  color: #d97706;
}

.price-card.popular.active .price-selected {
  color: #d97706;
  border-color: #f59e0b;
  background: #fff;
}

/* ============================================
   PAKET PRO
   ============================================ */
.price-card.pro {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(99, 102, 241, 0.08);
}

.price-card.pro .price-title {
  color: #0f172a;
}

.price-card.pro .price-tag {
  color: #0f172a;
}

.price-card.pro .price-desc {
  color: #64748b;
}

.price-card.pro .price-benefits li {
  color: #475569;
}

.price-card.pro .price-selected {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.15);
}

.price-card.pro .price-recommend {
  background: #dbeafe;
  color: #3b82f6;
  border-color: #3b82f6;
}

.price-card.pro.active {
  border-color: #6366f1;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 35px rgba(99, 102, 241, 0.1);
}

.price-card.pro.active::before {
  background: #6366f1;
}

.price-card.pro.active .price-tag {
  color: #6366f1;
}

.price-card.pro.active .price-selected {
  color: #6366f1;
  border-color: #6366f1;
  background: rgba(99, 102, 241, 0.06);
}

/* ============================================
   PAKET ULTIMATE
   ============================================ */
.price-card.ultimate {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border-color: #8b5cf6;
  padding-top: clamp(1.2rem, 2vw, 2.2rem);
  position: relative;
}

.price-card.ultimate::after {
  content: '👑 VIP';
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  padding: 3px 14px;
  border-radius: 0 0 10px 10px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.price-card.ultimate .price-title {
  color: #7c3aed;
}

.price-card.ultimate .price-tag {
  color: #7c3aed;
}

.price-card.ultimate .price-desc {
  color: #64748b;
}

.price-card.ultimate .price-benefits li {
  color: #475569;
}

.price-card.ultimate .price-selected {
  color: #7c3aed;
  background: #ede9fe;
  border-color: #8b5cf6;
}

.price-card.ultimate.active {
  border-color: #7c3aed;
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  box-shadow: 0 8px 35px rgba(139, 92, 246, 0.15);
}

.price-card.ultimate.active::before {
  background: linear-gradient(180deg, #8b5cf6, #6d28d9);
}

.price-card.ultimate.active .price-tag {
  color: #7c3aed;
}

.price-card.ultimate.active .price-selected {
  color: #7c3aed;
  border-color: #7c3aed;
  background: #fff;
}

/* ============================================
   PAYMENT BOX
   ============================================ */
.payment-box {
  background: rgba(99, 102, 241, 0.04);
  border: 1px solid rgba(99, 102, 241, 0.06);
  border-radius: clamp(16px, 2vw, 20px);
  padding: clamp(0.8rem, 1.2vw, 1.2rem) clamp(1rem, 1.5vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.payment-box:hover {
  border-color: rgba(99, 102, 241, 0.12);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.04);
}

.payment-text {
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  color: #1a1a2e;
  font-weight: 500;
  line-height: 1.5;
}

.payment-text strong {
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: clamp(0.65rem, 0.8vw, 0.8rem);
  font-weight: 700;
  white-space: nowrap;
}

.dana-logo {
  height: clamp(24px, 3vw, 32px);
  width: auto;
  object-fit: contain;
}

.note-text {
  color: #475569;
  font-size: clamp(0.75rem, 0.85vw, 0.9rem);
  background: rgba(99, 102, 241, 0.04);
  padding: clamp(0.8rem, 1.2vw, 1.2rem);
  border-radius: clamp(14px, 1.8vw, 16px);
  border-left: 4px solid #6366f1;
  margin-bottom: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.5;
}

/* ============================================
   ACTION BUTTONS
   ============================================ */
.action-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 14px);
  background: linear-gradient(135deg, #25d366 0%, #1aad5a 100%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.1vw, 1.2rem);
  padding: clamp(0.8rem, 1.2vw, 1.2rem);
  border-radius: clamp(16px, 2vw, 20px);
  text-decoration: none;
  width: 100%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: 48px;
}

.btn-wa i {
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
}

.btn-wa:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
}

.btn-testi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(99, 102, 241, 0.08);
  color: #0f172a;
  font-weight: 700;
  font-size: clamp(0.8rem, 1vw, 1rem);
  padding: clamp(0.7rem, 1vw, 1rem);
  border-radius: clamp(14px, 1.8vw, 18px);
  text-decoration: none;
  width: 100%;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.02);
  transition: all 0.3s ease;
  min-height: 48px;
}

.btn-testi:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: #6366f1;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
}

.btn-testi i {
  color: #6366f1;
}

.wa-note {
  color: #64748b;
  font-size: clamp(0.7rem, 0.8vw, 0.85rem);
  text-align: center;
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-bar {
  margin-top: clamp(2rem, 4vw, 4rem);
  padding-top: clamp(1.2rem, 2vw, 2rem);
  border-top: 2px solid rgba(99, 102, 241, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-tags span {
  color: #64748b;
  font-size: clamp(0.6rem, 0.8vw, 0.8rem);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.04);
  white-space: nowrap;
}

/* ============================================
   POPUP NOTIF
   ============================================ */
.notif-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.4s ease;
  padding: 1.5rem;
}

.notif-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.notif-box {
  background: #ffffff;
  border-radius: clamp(24px, 3vw, 32px);
  max-width: 500px;
  width: 100%;
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vw, 3rem) clamp(2rem, 3vw, 3rem);
  border: 1px solid rgba(99, 102, 241, 0.08);
  box-shadow: 0 40px 100px rgba(99, 102, 241, 0.1);
  text-align: center;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notif-overlay.hidden .notif-box {
  transform: scale(0.9);
}

.notif-box .icon {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
  display: block;
}

.notif-box h3 {
  color: #0f172a;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.notif-box p {
  color: #475569;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.notif-box .hl {
  color: #6366f1;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  background: rgba(99, 102, 241, 0.06);
  padding: 0.1rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(99, 102, 241, 0.08);
}

.btn-close {
  width: 100%;
  padding: clamp(0.8rem, 1.2vw, 1.2rem);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: clamp(14px, 2vw, 18px);
  font-weight: 700;
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}

.btn-close:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.3);
}

.timer-wrap {
  width: 100%;
  height: 4px;
  background: rgba(99, 102, 241, 0.06);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.timer-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  animation: timerProgress 6s linear forwards;
}

@keyframes timerProgress {
  from { width: 100%; }
  to { width: 0%; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .content-grid { gap: 2.5rem; }
}

@media (max-width: 950px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .header-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-stats {
    width: 100%;
    justify-content: stretch;
  }
  .header-stats .stat {
    flex: 1;
    min-width: 80px;
  }
}

@media (max-width: 768px) {
  body { padding: 1rem; }
  .main-card {
    padding: 1.5rem;
    border-radius: 24px;
  }
  .header-stats .stat {
    min-width: 60px;
    padding: 0.5rem 0.7rem;
  }
  .brand h1 { font-size: 2.4rem; }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-wrapper {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .pricing-title-wrapper {
    font-size: 1rem;
  }
  .pricing-sub-wrapper {
    font-size: 0.7rem;
  }
  .price-card {
    padding: 12px 16px;
    border-radius: 14px;
  }
  .price-title {
    font-size: 0.85rem;
  }
  .price-tag {
    font-size: 1rem;
  }
  .price-desc {
    font-size: 0.7rem;
    padding-left: 0;
  }
  .price-benefits {
    padding-left: 0;
  }
  .price-benefits li {
    font-size: 0.6rem;
  }
  .price-popular-badge,
  .price-recommend,
  .price-vip-badge {
    font-size: 0.45rem;
    padding: 1px 10px;
  }
  .price-selected {
    font-size: 0.45rem;
    padding: 1px 10px;
  }
  .price-right {
    gap: 6px;
  }
  .price-card.popular::after,
  .price-card.ultimate::after {
    font-size: 0.4rem;
    padding: 2px 10px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  body { padding: 0.5rem; }
  .main-card {
    padding: 1rem;
    border-radius: 20px;
  }
  .brand h1 { font-size: 1.8rem; }
  .header-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .header-stats .stat {
    min-width: 50px;
    padding: 0.3rem 0.5rem;
  }
  .header-stats .stat .num { font-size: 0.9rem; }
  .header-stats .stat .label { font-size: 0.45rem; }
  .badge-row { gap: 4px; }
  .badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .feature-item {
    padding: 0.6rem;
    border-radius: 12px;
  }
  .feature-item .icon { font-size: 1.2rem; }
  .feature-item h4 { font-size: 0.7rem; }
  .feature-item p { font-size: 0.6rem; }
  .play-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.7rem;
    gap: 4px;
  }
  .play-badge i { font-size: 0.7rem; }
  .info-block {
    padding: 0.8rem 1rem;
    border-radius: 14px;
    border-left-width: 3px;
  }
  .info-block h3 { font-size: 0.9rem; gap: 6px; }
  .info-list li {
    font-size: 0.7rem;
    padding-left: 20px;
  }
  .pricing-wrapper {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .pricing-header-wrapper {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }
  .pricing-title-wrapper {
    font-size: 0.85rem;
    gap: 8px;
  }
  .pricing-sub-wrapper {
    font-size: 0.6rem;
  }
  .price-card {
    padding: 10px 12px;
    border-radius: 12px;
  }
  .price-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .price-name {
    width: 100%;
    justify-content: space-between;
  }
  .price-right {
    width: 100%;
    justify-content: space-between;
  }
  .price-title {
    font-size: 0.8rem;
  }
  .price-tag {
    font-size: 0.95rem;
  }
  .price-icon {
    font-size: 1rem;
  }
  .price-desc {
    font-size: 0.65rem;
    margin-bottom: 4px;
  }
  .price-benefits {
    gap: 2px 10px;
  }
  .price-benefits li {
    font-size: 0.55rem;
  }
  .price-popular-badge,
  .price-recommend,
  .price-vip-badge {
    font-size: 0.4rem;
    padding: 1px 8px;
  }
  .price-selected {
    font-size: 0.4rem;
    padding: 1px 8px;
  }
  .price-card:hover {
    transform: translateX(2px);
  }
  .price-card.active {
    transform: translateX(2px);
  }
  .price-card.popular::after,
  .price-card.ultimate::after {
    font-size: 0.35rem;
    padding: 2px 8px;
    right: 10px;
  }
  .payment-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1rem;
  }
  .payment-text { font-size: 0.7rem; }
  .dana-logo {
    height: 20px;
    align-self: flex-start;
  }
  .note-text {
    font-size: 0.7rem;
    padding: 0.6rem 0.8rem;
  }
  .btn-wa {
    font-size: 0.75rem;
    padding: 0.6rem;
    gap: 8px;
    min-height: 44px;
  }
  .btn-wa i { font-size: 1rem; }
  .btn-testi {
    font-size: 0.7rem;
    padding: 0.6rem;
    gap: 6px;
    min-height: 44px;
  }
  .wa-note { font-size: 0.6rem; }
  .footer-tags span {
    font-size: 0.5rem;
    padding: 0.2rem 0.5rem;
  }
  .notif-box {
    padding: 1.5rem 1rem;
    margin: 0.5rem;
  }
  .notif-box h3 { font-size: 1.1rem; }
  .notif-box p { font-size: 0.8rem; }
  .notif-box .hl { font-size: 1rem; }
  .btn-close {
    font-size: 0.8rem;
    padding: 0.7rem;
  }
}

@media (max-width: 360px) {
  .main-card {
    padding: 0.8rem;
    border-radius: 16px;
  }
  .brand h1 { font-size: 1.5rem; }
  .brand .sub { font-size: 0.6rem; }
  .badge {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .feature-item {
    padding: 0.4rem;
  }
  .feature-item .icon { font-size: 1rem; }
  .feature-item h4 { font-size: 0.6rem; }
  .feature-item p { font-size: 0.55rem; }
  .info-block h3 { font-size: 0.8rem; }
  .info-list li {
    font-size: 0.65rem;
    padding-left: 18px;
  }
  .price-card {
    padding: 8px 10px;
  }
  .price-title { font-size: 0.7rem; }
  .price-tag { font-size: 0.85rem; }
  .price-desc { font-size: 0.6rem; }
  .price-benefits li { font-size: 0.5rem; }
  .btn-wa {
    font-size: 0.65rem;
    padding: 0.5rem;
    min-height: 40px;
  }
  .btn-testi {
    font-size: 0.65rem;
    padding: 0.5rem;
    min-height: 40px;
  }
}