/* ============================================================
   PELUANG BISNIS — ERGE ASIA
   Uses core.css variables: --teal-*, --gold, --gray-*, etc.
   ============================================================ */

/* ── SECTION 1: HERO (matches lk-hero pattern) ───────────── */
.pb-hero {
    position: relative; padding: 30px 0 0 0; overflow: hidden;
    background: linear-gradient(170deg, var(--teal-50) 0%, rgba(230,250,249,0.25) 50%, var(--white) 100%);
}
.pb-hero-grain {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
}
.pb-hero-orb {
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    background: radial-gradient(circle, rgba(44,197,189,0.06), transparent 70%);
}
.pb-hero-orb-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.pb-hero-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }

.pb-hero .container { position: relative; z-index: 2; }
.pb-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: center;
}
.pb-hero-content { min-width: 0; }
.pb-hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
    border: 1px solid rgba(44,197,189,0.15); border-radius: 100px;
    font-size: 13px; font-weight: 600; color: var(--teal-700); margin-bottom: 20px;
}
.pb-hero-badge i { font-size: 11px; color: var(--gold); }
.pb-hero h1 { font-size: 30px; font-weight: 800; line-height: 1.18; color: var(--gray-900); margin-bottom: 20px; }
.pb-hero h1 span {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pb-hero-text { font-size: 15px; line-height: 1.75; color: var(--gray-500); margin-bottom: 32px; max-width: 480px; }
.pb-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Hero visual — Floating Cards Around Center */
.pb-hero-visual {
    display: flex; align-items: center; justify-content: center;
    min-height: 380px; position: relative;
}
.pb-hero-cards { position: relative; width: 340px; height: 340px; }

.pb-float-card {
    position: absolute; z-index: 3; background: var(--white);
    border-radius: 14px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05); border: 1px solid var(--gray-100);
    font-size: 13px; font-weight: 600; color: var(--teal-800);
    animation: pbFloat 6s ease-in-out infinite;
}
.pb-fc-icon {
    width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: white; font-size: 14px;
}
.pb-fc-icon-alt { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); }
.pb-fc-1 { top: 20px;  left: -10px;  animation-delay: 0s; }
.pb-fc-2 { top: 20px;  right: 0;    animation-delay: 1.5s; }
.pb-fc-3 { bottom: 30px; left: 0;   animation-delay: 3s; }
.pb-fc-4 { bottom: 30px; right: -10px; animation-delay: 4.5s; }

/* Center circle */
.pb-hero-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    display: flex; align-items: center; justify-content: center;
}
.pb-hero-ring {
    position: absolute; border-radius: 50%;
    border: 1.5px dashed rgba(44,197,189,0.15);
    top: 50%; left: 50%;
}
.pb-hero-ring-1 {
    width: 280px; height: 280px; margin: -140px 0 0 -140px;
    animation: pbRingSpin 30s linear infinite;
}
.pb-hero-ring-2 {
    width: 340px; height: 340px; margin: -170px 0 0 -170px;
    border-style: solid; border-color: rgba(44,197,189,0.06);
    animation: pbRingSpin 40s linear infinite reverse;
}
.pb-hero-center-core {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(145deg, var(--teal-500), var(--teal-700));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 32px rgba(44,197,189,0.35), 0 0 0 8px rgba(44,197,189,0.08);
    animation: pbFloat 5s ease-in-out infinite;
    z-index: 2; position: relative;
}
.pb-hero-center-core i { font-size: 32px; color: white; }

@keyframes pbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pbRingSpin { to { transform: rotate(360deg); } }

/* ── SECTION 2: CARA KERJA (STEPS) ────────────────────────── */
.pb-steps-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative;
}
.pb-steps-grid::before {
    content: ''; position: absolute; top: 56px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal-200), var(--teal-200), transparent);
    z-index: 0;
}
.pb-step-card {
    background: var(--white); border-radius: 16px; padding: 28px 22px; text-align: center;
    border: 1px solid var(--gray-100); position: relative; z-index: 1;
    transition: all .3s;
}
.pb-step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); border-color: var(--teal-200); }
.pb-step-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    color: white; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(44,197,189,.25);
}
.pb-step-icon {
    width: 52px; height: 52px; border-radius: 14px; margin: 8px auto 14px;
    background: var(--teal-50); color: var(--teal-600);
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.pb-step-card h4 { font-size: 16px; font-weight: 700; color: var(--teal-700); margin-bottom: 6px; }
.pb-step-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }

/* ── SECTION 3: PREMIUM BISNIS ─────────────────────────────── */
.pb-premium { position: relative; overflow: hidden; }
.pb-premium-bg {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, var(--white) 0%, var(--teal-50) 30%, var(--white) 100%);
}
.pb-premium .container { position: relative; z-index: 1; }

.pb-compare-badge {
    display: inline-flex; align-items: center; gap: 8px; margin: 0 auto 40px;
    background: #fff8e6; color: #92600e; font-size: 13px; font-weight: 500;
    padding: 10px 20px; border-radius: 12px; border: 1px solid rgba(255,174,0,.18);
    text-align: center;
}
.pb-compare-badge i { color: #f59e0b; }

/* Tier grid */
.pb-tier-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px;
}
.pb-tier-card {
    position: relative; background: var(--white); border-radius: 20px;
    border: 1.5px solid var(--gray-200, #e8eaed); padding: 28px 24px;
    display: flex; flex-direction: column; transition: all .35s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}
.pb-tier-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    border-radius: 20px 20px 0 0;
}
.pb-tier-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }

/* Color variants */
.pb-tier-silver::before  { background: linear-gradient(90deg, #9ca3af, #d1d5db); }
.pb-tier-gold::before    { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.pb-tier-platinum::before{ background: linear-gradient(90deg, #282836, #6b6b6b); }
.pb-tier-vip::before     { background: linear-gradient(90deg, var(--teal-500), var(--teal-100)); }

.pb-tier-silver  { border-color: rgba(156,163,175,.25); }
.pb-tier-gold    { border-color: rgba(245,158,11,.2); }
.pb-tier-platinum{ border-color: rgba(99,102,241,.18); }
.pb-tier-vip     { border-color: var(--teal-300, rgba(44,197,189,.3)); background: linear-gradient(160deg, var(--teal-50) 0%, var(--white) 100%); box-shadow: 0 4px 20px rgba(44,197,189,.08); }

/* Popular ribbon */
.pb-tier-popular {
    position: absolute; top: 16px; right: -32px; padding: 4px 40px;
    background: linear-gradient(135deg, #f59e0b, #f97316); color: white;
    font-size: 11px; font-weight: 700; transform: rotate(45deg);
    letter-spacing: .5px; box-shadow: 0 2px 8px rgba(245,158,11,.3);
}

/* Card icon */
.pb-tier-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 14px;
}
.pb-tier-silver .pb-tier-icon  { background: #f3f4f6; color: #6b7280; }
.pb-tier-gold .pb-tier-icon    { background: #fef3c7; color: #d97706; }
.pb-tier-platinum .pb-tier-icon{ background: #eef2ff; color: #282836; }
.pb-tier-vip .pb-tier-icon     { background: var(--teal-100, #e0fffe); color: var(--teal-700, #0d9488); }

/* Card tier label */
.pb-tier-label {
    font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 4px;
}
.pb-tier-silver .pb-tier-label  { color: #6b7280; }
.pb-tier-gold .pb-tier-label    { color: #d97706; }
.pb-tier-platinum .pb-tier-label{ color: #282836; }
.pb-tier-vip .pb-tier-label     { color: var(--teal-700, #0d9488); }

.pb-tier-name { font-size: 22px; font-weight: 800; color: var(--teal-900, #054f4d); margin-bottom: 4px; }
.pb-tier-tagline { font-size: 13px; color: var(--gray-500, #6c757d); margin-bottom: 10px; font-style: italic; }

/* Discount badge */
.pb-tier-discount {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
    border-radius: 8px; font-size: 14px; font-weight: 700; margin-bottom: 14px;
}
.pb-tier-silver .pb-tier-discount  { background: #f3f4f6; color: #374151; }
.pb-tier-gold .pb-tier-discount    { background: #fef3c7; color: #92400e; }
.pb-tier-platinum .pb-tier-discount{ background: #eef2ff; color: #282836; }
.pb-tier-vip .pb-tier-discount     { background: var(--teal-100); color: var(--teal-900); }

/* Price */
.pb-tier-price {
    margin: 0 0 16px; padding: 16px 0;
    border-top: 1px solid var(--gray-100, #f0f0f0);
    border-bottom: 1px solid var(--gray-100, #f0f0f0);
}
.pb-tier-amount { font-size: 24px; font-weight: 800; color: var(--teal-900, #054f4d); line-height: 1.2; }
.pb-tier-amount small { font-size: 14px; font-weight: 500; color: var(--gray-400, #9ca3af); }
.pb-tier-period { font-size: 13px; color: var(--gray-400, #9ca3af); margin-top: 2px; }

/* Features list */
.pb-tier-features {
    list-style: none; padding: 0; margin: 0 0 20px; flex: 1;
}
.pb-tier-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--gray-700, #374151); padding: 5px 0; line-height: 1.5;
}
.pb-tier-features li i { color: var(--teal-500); font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* CTA button */
.pb-tier-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px 20px; border-radius: 12px;
    font-size: 14px; font-weight: 600; border: none; cursor: pointer;
    transition: all .3s; text-decoration: none !important;
}
.pb-tier-silver .pb-tier-btn  { background: #f3f4f6; color: #374151 !important; }
.pb-tier-silver .pb-tier-btn:hover { background: #e5e7eb; }
.pb-tier-gold .pb-tier-btn    { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: white !important; }
.pb-tier-gold .pb-tier-btn:hover { box-shadow: 0 4px 16px rgba(245,158,11,.3); }
.pb-tier-platinum .pb-tier-btn{ background: linear-gradient(135deg, #282836, #6b6b6b); color: white !important; }
.pb-tier-platinum .pb-tier-btn:hover { box-shadow: 0 4px 16px rgba(99,102,241,.3); }
.pb-tier-vip .pb-tier-btn     { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: white !important; }
.pb-tier-vip .pb-tier-btn:hover { box-shadow: 0 4px 16px rgba(44,197,189,.3); }

/* Comparison table */
.pb-vs { text-align: center; margin-bottom: 32px; }
.pb-vs-title { font-size: 18px; font-weight: 700; color: var(--teal-700); margin-bottom: 6px; }
.pb-vs-title i { color: var(--teal-500); }
.pb-vs-subtitle { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; }
.pb-vs-table {
    background: var(--white); border-radius: 16px;
    border: 1.5px solid var(--gray-200, #e8eaed); overflow: hidden;
    text-align: left;
}
.pb-vs-header {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    background: var(--teal-600); color: white; font-size: 14px; font-weight: 600;
}
.pb-vs-header > div { padding: 14px 20px; }
.pb-vs-row {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-100, #f0f0f0); font-size: 14px;
    transition: background .2s;
}
.pb-vs-row:last-child { border-bottom: none; }
.pb-vs-row:hover { background: var(--teal-50, #f0fffe); }
.pb-vs-row > div { padding: 12px 20px; display: flex; align-items: center; }
.pb-vs-tier { font-weight: 600; color: var(--teal-900); gap: 8px; }
.pb-vs-tier small { color: var(--gray-500); margin-left: 4px; }
.pb-vs-val { color: var(--gray-500); }
.pb-vs-premium { color: var(--teal-700); font-weight: 700; }
.pb-vs-icon-silver  { color: #9ca3af; }
.pb-vs-icon-gold    { color: #d97706; }
.pb-vs-icon-platinum{ color: #282836; }
.pb-vs-icon-vip     { color: var(--teal-500); }

/* Note */
.pb-note {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--teal-50, #f0fffe); border: 1px solid rgba(44,197,189,.12);
    border-radius: 14px; padding: 18px 24px; font-size: 14px;
    color: var(--teal-900, #054f4d); line-height: 1.7;
}
.pb-note > i { color: var(--teal-500); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* ── SECTION 4: KEUNGGULAN ─────────────────────────────────── */
.pb-adv-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.pb-adv-card {
    background: var(--white); border-radius: 16px; padding: 28px 24px;
    border: 1px solid var(--gray-100); transition: all .3s;
}
.pb-adv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.06); border-color: var(--teal-200); }
.pb-adv-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px; margin-bottom: 16px;
}
.pb-adv-card h4 { font-size: 17px; font-weight: 700; color: var(--teal-700); margin-bottom: 8px; }
.pb-adv-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin: 0; }

/* ── SECTION 5: CTA ───────────────────────────────────────── */
.pb-cta { padding: 30px 0 80px; }
.pb-cta-inner {
    background: linear-gradient(145deg, var(--teal-500), var(--teal-700));
    border-radius: 24px; padding: 60px; text-align: center;
    position: relative; overflow: hidden;
}
.pb-cta-inner::before {
    content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.pb-cta-content { position: relative; z-index: 1; }
.pb-cta h3 { font-size: 30px; font-weight: 800; color: white; margin-bottom: 14px; }
.pb-cta h3 span { color: var(--gold, #fbbf24); }
.pb-cta p { font-size: 16px; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
.pb-cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.pb-cta .btn-ea-primary {
    background: white; color: var(--teal-700) !important;
}
.pb-cta .btn-ea-primary:hover { background: var(--teal-50); }
.pb-cta .btn-ea-outline {
    border-color: rgba(255,255,255,.5); color: white !important;
}
.pb-cta .btn-ea-outline:hover { background: rgba(255,255,255,.12); }


/* Contoh Perhitungan Diskon */
.pb-calc-card {
    max-width: 560px; margin: 0 auto 40px; border-radius: 16px;
    border: 2px dashed var(--teal-300, #7eede5); background: var(--white);
    overflow: hidden;
}
.pb-calc-header {
    padding: 14px 24px; font-size: 15px; font-weight: 700;
    color: var(--teal-600); border-bottom: 1px solid var(--gray-100, #f0f0f0);
}
.pb-calc-header i { margin-right: 6px; }
.pb-calc-body { padding: 20px 24px; }
.pb-calc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0; font-size: 15px; font-weight: 600; color: var(--gray-900, #111827);
}
.pb-calc-row.pb-calc-discount span:first-child { color: var(--teal-500); }
.pb-calc-row.pb-calc-discount .pb-calc-val { color: #ef4444; font-style: italic; }
.pb-calc-val { font-weight: 700; }
.pb-calc-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 24px; background: var(--teal-50, #f0fffe);
    border-top: 2px dashed var(--teal-200, #b8fff9);
    font-size: 16px; font-weight: 700; color: var(--teal-700);
}

.section { padding: 50px 0px !important; }

.pb-calc-total { font-size: 18px; font-weight: 800; color: var(--teal-600); }


/* Tier Swiper (mobile only) */
.pb-tier-swiper { display: none; }
.pb-tier-swiper .pb-tier-card {
    border: 1.5px solid var(--gray-200, #e8eaed);
    height: 100%;
}
.pb-tier-swiper .swiper-pagination { margin-top: 20px; position: relative; }
.pb-tier-swiper .swiper-pagination-bullet-active { background: var(--teal-500); }
/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .pb-hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .pb-hero-text { margin: 0 auto 28px; }
    .pb-hero-actions { justify-content: center; }
    .pb-hero-visual { min-height: 300px; }
    .pb-hero-cards { width: 300px; height: 300px; }

    .pb-tier-grid { grid-template-columns: repeat(2, 1fr); }
    .pb-adv-grid { grid-template-columns: repeat(2, 1fr); }
    .pb-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .pb-steps-grid::before { display: none; }
    .pb-tier-grid { display: none; }
    .pb-tier-swiper { display: block; }
}

@media (max-width: 575px) {
    .pb-hero { padding: 24px 0 50px; }
    .pb-hero h1 { font-size: 26px; }
    .pb-hero-text { font-size: 14px; }
    .pb-hero-visual { min-height: 260px; }
    .pb-hero-cards { width: 260px; height: 260px; }
    .pb-float-card { padding: 8px 12px; font-size: 11px; }
    .pb-fc-icon { width: 28px; height: 28px; font-size: 12px; }

    .section { padding: 20px 0px !important; }

    .pb-tier-name { font-size: 20px; }
    .pb-tier-amount { font-size: 22px; }

    .pb-steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

    .pb-vs-header, .pb-vs-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 12px; }
    .pb-vs-header > div, .pb-vs-row > div { padding: 10px 12px; }

    .pb-note { font-size: 13px; padding: 14px 16px; }

    .pb-adv-grid { grid-template-columns: 1fr; }

    .pb-cta-inner { padding: 40px 24px; border-radius: 18px; }
    .pb-cta h3 { font-size: 24px; }
    .pb-cta p { font-size: 14px; }
    
}
