:root {
    --primary: #051622;
    --primary-light: #0a2540;
    --primary-mid: #0d2d4a;
    --gold: #C5A059;
    --gold-light: #DEB887;
    --gold-pale: #f5e9d0;
    --text-dark: #051622;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-dark: #030e17;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --radius: 12px;
    --radius-lg: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; max-width: 100%; }
img, video, iframe, embed, object { max-width: 100%; height: auto; }
section, header, footer, nav { overflow-x: clip; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; touch-action: pan-y; }

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── NAVBAR ─── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 22, 34, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(5, 22, 34, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197,160,89,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1160px;
    margin: 0 auto;
}
.navbar-bottom {
    display: none;
}
.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-brand img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .main {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
    line-height: 1;
}
.logo-text .sub {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 3px;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.btn-cta {
    background: var(--gold);
    color: var(--primary);
    padding: 0.75rem 1.6rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    display: inline-block;
}
.btn-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197,160,89,0.35);
}
.btn-cta.outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-cta.outline:hover {
    background: var(--gold);
    color: var(--primary);
}
.btn-cta.large {
    padding: 1.1rem 2.8rem;
    font-size: 0.9rem;
}

/* ─── MOBILE ANCHOR MENU ─── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .navbar-top { padding: 0.6rem 1rem; }
    .navbar-bottom {
        display: flex;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .navbar-bottom a {
        flex: 1;
        text-align: center;
        color: rgba(255,255,255,0.65);
        font-size: 0.55rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 0.45rem 0;
        transition: color 0.2s;
    }
    .navbar-bottom a:active { color: var(--gold); }
}

/* ─── NAVBAR CTA ─── */
#navbar .btn-cta {
    display: inline-block;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}
@media (max-width: 768px) {
    #navbar .btn-cta {
        font-size: 0.52rem;
        padding: 0.35rem 0.5rem;
        white-space: normal;
        text-align: center;
        max-width: 62px;
        line-height: 1.3;
        border-radius: 5px;
        letter-spacing: 0.3px;
    }
}

/* ─── HERO ─── */
.hero {
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #051622;
    background-size: cover;
    background-position: center top 20%;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5,22,34,0.92) 0%,
        rgba(5,22,34,0.75) 45%,
        rgba(5,22,34,0.3) 100%
    );
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    box-sizing: border-box;
    max-width: 100%;
    padding-left: 14rem;
    padding-right: 8%;
    margin: 0;
}
.hero-content {
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
/* ─── HERO SIDE DECO ─── */
.hero-side-deco {
    position: absolute;
    left: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.hero-side-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(197,160,89,0.5);
}
.hero-side-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.4), transparent);
}
.hero-side-dots {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hero-side-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(197,160,89,0.35);
    display: block;
}
.hero-side-dots span:first-child {
    background: rgba(197,160,89,0.7);
    width: 5px;
    height: 5px;
}

/* Float card */
.hero-float-card {
    position: absolute;
    bottom: 5rem;
    right: 5%;
    background: rgba(5, 22, 34, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(197,160,89,0.2);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 220px;
    z-index: 4;
}
.hero-float-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-float-item:last-child { border-bottom: none; }
.float-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2px;
}
.float-val {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197,160,89,0.12);
    border: 1px solid rgba(197,160,89,0.3);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    margin-bottom: 2rem;
}
.hero-content-centered .hero-eyebrow { margin-left: auto; margin-right: auto; }
.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.hero-promo {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(197,160,89,0.08);
    border: 1px solid rgba(197,160,89,0.25);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius);
    margin-bottom: 1.2rem;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.85rem;
}
.hero-promo .price-highlight {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}
.hero-chips {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.hero-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.hero-chip::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}
.hero-image::before {
    content: '';
    position: absolute;
    bottom: 0; right: 20px;
    width: 85%;
    height: 90%;
    border: 2px solid rgba(197,160,89,0.2);
    border-radius: 0 80px 0 80px;
    z-index: 0;
}
.hero-image img {
    width: 90%;
    max-width: 420px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}

/* ─── SECTION HEADERS ─── */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-label.dark { color: var(--gold); }
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-title.white { color: white; }
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 1rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── QUOTE SECTION ─── */
.quote-section {
    background: var(--primary);
    padding: 7rem 0;
    text-align: center;
}
.quote-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.quote-mark {
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--gold);
    opacity: 0.2;
    line-height: 0.6;
    display: block;
    margin-bottom: 1.5rem;
}
.quote-inner blockquote {
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
}
.quote-inner blockquote strong { color: var(--gold); font-style: normal; }
.quote-author {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ─── PAIN POINTS ─── */
.pain-section {
    background: var(--bg-alt);
    padding: 8rem 0;
}
.pain-header {
    text-align: center;
    margin-bottom: 5rem;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.pain-card {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: var(--radius);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pain-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(197,160,89,0.12);
}
.pain-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}
.pain-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--primary);
}
.pain-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.pain-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 3rem 4rem;
    border-radius: var(--radius-lg);
    color: white;
}
.pain-cta p {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}
.pain-cta span { color: var(--gold); }

/* ─── FEELING SAME / STATS ─── */
.feeling-section {
    background: white;
    padding: 8rem 0;
}
.feeling-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
.feeling-list {
    list-style: none;
    margin: 2rem 0 3rem;
}
.feeling-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}
.feeling-list li::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.feeling-list li:last-child { border-bottom: none; }
.stats-card {
    background: var(--primary);
    padding: 4rem;
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
    overflow: hidden;
}
.stats-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(197,160,89,0.1) 0%, transparent 70%);
}
.stats-inner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 2.5rem 1.5rem;
    background: rgba(255,255,255,0.02);
    text-align: center;
    transition: var(--transition);
}
.stat-item:hover { background: rgba(197,160,89,0.08); }
.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}
.kabar-baik {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(197,160,89,0.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.kabar-baik p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}
.kabar-baik strong { color: var(--gold); }

/* ─── WHY MENTOR ─── */
.mentor-section {
    background: var(--bg-alt);
    padding: 8rem 0;
}
.mentor-alert {
    background: linear-gradient(135deg, #1a0a0a, #2d1515);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 4rem;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.mentor-alert-icon {
    flex-shrink: 0;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mentor-alert h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}
.mentor-alert p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.mentor-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.compare-col {
    border-radius: var(--radius-lg);
    padding: 3rem;
}
.compare-col.negative {
    background: #0f0a0a;
    border: 1px solid rgba(239,68,68,0.15);
}
.compare-col.positive {
    background: var(--primary);
    border: 1px solid rgba(197,160,89,0.2);
}
.compare-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.compare-col.negative .compare-title { color: #ef4444; }
.compare-col.positive .compare-title { color: var(--gold); }
.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
.compare-item:last-child { border-bottom: none; }
.compare-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.compare-icon.cross {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}
.compare-icon.check {
    background: rgba(197,160,89,0.15);
    color: var(--gold);
}
.mentor-tip {
    margin-top: 3rem;
    background: var(--primary);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(197,160,89,0.2);
}
.mentor-tip p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
}
.mentor-tip strong { color: var(--gold); }

/* ─── MENTOR COACH IMAGE ─── */
.mentor-coach-image {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
.mentor-coach-image img {
    max-width: 400px;
    width: 100%;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* ─── WHY EXCLUSIVE ─── */
.exclusive-section {
    background: white;
    padding: 8rem 0;
}
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.exclusive-card {
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.exclusive-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--gold);
    transition: var(--transition);
}
.exclusive-card:hover::after { width: 100%; }
.exclusive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: var(--gold-pale);
}
.exclusive-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.exclusive-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.exclusive-points {
    list-style: none;
}
.exclusive-points li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}
.exclusive-points li:last-child { border-bottom: none; }
.exclusive-points li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ─── MODULES ─── */
.modules-section {
    background: var(--primary);
    padding: 8rem 0;
}
.modules-header {
    margin-bottom: 5rem;
}
.module-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.module-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.module-card:hover {
    background: rgba(197,160,89,0.07);
    border-color: rgba(197,160,89,0.3);
    transform: translateY(-4px);
}
.module-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
}
.module-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold);
    background: rgba(197,160,89,0.12);
    border: 1px solid rgba(197,160,89,0.25);
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    flex-shrink: 0;
}
.module-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}
.module-points {
    list-style: none;
}
.module-points li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    padding: 0.55rem 0;
    padding-left: 1.4rem;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
    line-height: 1.5;
}
.module-points li:first-child { border-top: none; }
.module-points li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ─── PRICING ─── */
.pricing-section {
    background: var(--bg-alt);
    padding: 8rem 0;
}
.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.pricing-card.featured {
    background: var(--primary);
    border: 2px solid var(--gold);
    transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
    background: var(--gold);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    padding: 0.5rem;
}
.pricing-head {
    padding: 3rem 3rem 2rem;
}
.pricing-name {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.pricing-card.featured .pricing-price { color: white; }
.pricing-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0 3rem;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-features {
    padding: 2rem 3rem 3rem;
    list-style: none;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    font-size: 0.88rem;
    color: var(--text-dark);
    border-bottom: 1px solid #f8fafc;
    line-height: 1.5;
}
.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(255,255,255,0.06);
}
.pricing-features li:last-child { border-bottom: none; }
.feat-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.feat-cross { color: #cbd5e1; font-weight: 700; flex-shrink: 0; }
.pricing-footer {
    padding: 0 3rem 3rem;
}
.pricing-footer .btn-cta {
    width: 100%;
    text-align: center;
    display: block;
}
.pricing-card.featured .btn-cta {
    background: var(--gold);
    color: var(--primary);
}

/* ─── TESTIMONIALS ─── */
.testi-section {
    background: white;
    padding: 8rem 0;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.testi-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
}
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.07);
    border-color: var(--gold-pale);
}
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}
.testi-card blockquote {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
}
.testi-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.testi-profile {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.testi-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}
.testi-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── PAIN PILLARS ─── */
.pain-pillar-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
}
.pain-pillar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(197,160,89,0.15);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: var(--transition);
}
.pain-pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(197,160,89,0.12);
}
.pain-pillar-icon {
    width: 56px;
    height: 56px;
    background: rgba(197,160,89,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.pain-pillar-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.pain-pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.pain-pillar-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.5;
}
.pain-pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ─── GALLERY ─── */
.gallery-section {
    background: var(--bg-alt);
    padding: 8rem 0;
}
.gallery-carousel-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.gallery-carousel {
    display: flex;
    transition: transform 0.5s ease;
}
.gallery-slide {
    min-width: 100%;
    height: 520px;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #0a1f2e;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5,22,34,0.6);
    color: var(--gold);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gallery-btn:hover { background: rgba(5,22,34,0.9); }
.gallery-btn-prev { left: 1rem; }
.gallery-btn-next { right: 1rem; }
.gallery-dots {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}
.gallery-dot.active { background: var(--gold); }

/* ─── B2B SECTION ─── */
.b2b-section {
    background: var(--primary);
    padding: 8rem 0;
}
.b2b-inner { text-align: center; }
.b2b-header { margin-bottom: 4rem; }
.b2b-header .section-title { color: white; }
.b2b-header .section-desc { color: rgba(255,255,255,0.55); margin: 0 auto; text-align: center; }
.b2b-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}
.b2b-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197,160,89,0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}
.b2b-card:hover {
    background: rgba(197,160,89,0.07);
    border-color: rgba(197,160,89,0.4);
    transform: translateY(-4px);
}
.b2b-icon {
    width: 52px;
    height: 52px;
    background: rgba(197,160,89,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.b2b-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.7rem;
}
.b2b-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .b2b-grid { grid-template-columns: 1fr; }
}

/* ─── GUARANTEE ─── */
.guarantee-section {
    background: var(--primary);
    padding: 7rem 0;
}
.guarantee-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.guarantee-badge {
    width: 90px; height: 90px;
    background: rgba(197,160,89,0.1);
    border: 2px solid rgba(197,160,89,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 2.5rem;
}
.guarantee-inner h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}
.guarantee-inner h2 span { color: var(--gold); }
.guarantee-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto;
}

/* ─── FAQ ─── */
.faq-section {
    background: var(--bg-alt);
    padding: 8rem 0;
}
.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold-pale); }
.faq-q {
    padding: 1.8rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
    user-select: none;
}
.faq-q-icon {
    width: 32px; height: 32px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    transition: var(--transition);
}
.faq-item.open .faq-q-icon {
    background: var(--gold);
    color: white;
    transform: rotate(45deg);
}
.faq-a {
    padding: 0 2.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 2.5rem 1.8rem;
}

/* ─── COACHES ─── */
.coaches-section {
    background: var(--primary);
    padding: 8rem 0;
}
.coaches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
}
.coach-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197,160,89,0.2);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    transition: var(--transition);
}
.coach-card:hover {
    background: rgba(197,160,89,0.06);
    transform: translateY(-4px);
}
.coach-role {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}
.coach-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.coach-title {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2rem;
    font-style: italic;
}
.coach-divider {
    height: 1px;
    background: rgba(197,160,89,0.2);
    margin-bottom: 2rem;
}
.coach-points {
    list-style: none;
}
.coach-points li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    padding: 0.6rem 0;
    padding-left: 1.4rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    line-height: 1.5;
}
.coach-points li:last-child { border-bottom: none; }
.coach-points li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

/* ─── FINAL CTA ─── */
.final-cta {
    background: var(--primary);
    padding: 7rem 0;
}
.final-cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    overflow: hidden;
}
.final-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin: 0.8rem 0 1.5rem;
    line-height: 1.1;
}
.final-cta-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.final-cta-steps-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.final-cta-inner::before {
    content: '';
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta-inner h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}
.final-cta-inner h2 span { color: var(--gold); }
.final-cta-inner p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.cta-body {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.cta-col-label {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}
.cta-urgency-col {
    padding: 0;
}
.urgency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.urgency-list li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    padding: 1rem 1.2rem 1rem 1rem;
    position: relative;
    line-height: 1.5;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    text-align: left;
}
.urgency-list li::before {
    content: none;
}
.cta-steps-col {
    padding: 0;
}
.cta-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cta-step {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem 1.4rem;
}
.cta-step-num {
    width: 40px; height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}
.cta-step p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
    text-align: left;
}
.cta-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-top: 3.5rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .cta-body { grid-template-columns: 1fr; }
}

.hero-daftar-btn { display: none; }

/* ─── FOOTER ─── */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(197,160,89,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
    margin-top: 1.5rem;
    line-height: 1.7;
    max-width: 380px;
}
.footer-contact h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}
.contact-icon {
    width: 36px; height: 36px;
    background: rgba(197,160,89,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
}
.footer-bottom a {
    color: rgba(255,255,255,0.3);
    transition: var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

.footer-visba {
    text-align: center;
    padding: 0.75rem 2rem 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-visba a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-visba a:hover { color: var(--gold); }

/* ─── RESPONSIVE TABLET ─── */
@media (max-width: 1024px) {
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
    .hero-container { padding-left: 2rem; padding-right: 2rem; padding-top: 8rem; }
    .hero h1 { font-size: 3rem; }
    .coaches-grid { grid-template-columns: 1fr; }
    .stats-inner-grid { grid-template-columns: repeat(2, 1fr); }
    .pain-grid { grid-template-columns: 1fr 1fr; }
    .pain-pillar-grid { grid-template-columns: 1fr !important; }
    .module-cards { grid-template-columns: 1fr 1fr; }
    .exclusive-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .mentor-compare { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .final-cta-split { grid-template-columns: 1fr; }
    .final-cta-left { padding: 4rem 2rem 3rem; }
    .final-cta-right { padding: 3rem 2rem 4rem; }
}

/* ─── RESPONSIVE MOBILE ─── */
@media (max-width: 768px) {
    .hero-container { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 7rem; padding-bottom: 6rem; }
    .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
    .hero-sub { font-size: 0.9rem; }
    .hero-promo { padding: 1rem 1.2rem; }
    .hero-chips { gap: 0.4rem; }
    .hero-chip { font-size: 0.8rem; }
    .btn-cta.large { padding: 0.9rem 1.5rem; font-size: 0.85rem; }

    .pain-grid { grid-template-columns: 1fr; }
    .module-cards { grid-template-columns: 1fr; }
    .feeling-grid { grid-template-columns: 1fr; }
    .stats-inner-grid { grid-template-columns: 1fr 1fr; }

    .section-title { font-size: 1.8rem; }
    .coaches-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; padding: 0 1rem; }

    .final-cta-title { font-size: 2rem; }
    .final-cta-left, .final-cta-right { padding: 3rem 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .navbar-top { gap: 0.5rem; }
    .hero-daftar-btn { display: none; }
    .logo-brand { flex-shrink: 1; min-width: 0; }
    .logo-brand img { height: 36px; width: 36px; flex-shrink: 0; }
    .logo-text { min-width: 0; }
    .logo-text .main { font-size: 0.8rem; white-space: nowrap; }
    .logo-text .sub { display: none; }
    #navbar .btn-cta { flex-shrink: 0; }
    .hero-eyebrow { font-size: 0.7rem; padding: 0.4rem 0.8rem; white-space: normal; margin-top: 1.5rem; text-align: center; align-self: center; }
    .quote-section { padding: 4rem 0; }
    .quote-inner blockquote { font-size: 1rem; line-height: 1.7; }
    .quote-mark { font-size: 5rem; margin-bottom: 0.5rem; }
    .quote-author { font-size: 0.72rem; letter-spacing: 2px; }
    .module-card-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .mentor-alert { flex-direction: column; padding: 2rem 1.5rem; gap: 1rem; text-align: left; }
    .mentor-alert h3 { font-size: 0.78rem; line-height: 1.5; }
    .pain-cta { padding: 2rem 1.5rem; }
    .pain-cta p { font-size: 0.82rem; line-height: 1.6; }
}

/* ─── RESPONSIVE SMALL MOBILE ─── */
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-container { padding-top: 8rem; padding-bottom: 6rem; }
    .section-title { font-size: 1.6rem; }
    .stats-inner-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .stat-item { padding: 1.5rem 1rem; text-align: center; }
    .stat-num { font-size: 2.5rem; }
    .stats-card { padding: 2rem 1.5rem; }
    .stat-num { font-size: 2rem; }
    .pain-grid { grid-template-columns: 1fr; }
    .module-cards { grid-template-columns: 1fr; }
    .pricing-grid { padding: 0; }
    .coach-card { padding: 2rem 1.5rem; }
    .testi-card { padding: 2rem 1.5rem; }
    .final-cta-title { font-size: 1.8rem; }
    .cta-steps-list { gap: 0.8rem; }
    .btn-cta { font-size: 0.82rem; padding: 0.8rem 1.2rem; }
    .btn-cta.large { width: 100%; justify-content: center; }
    .btn-cta.outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
    div[style*="display:flex; gap:1rem; flex-wrap:wrap"] { flex-direction: column; align-items: center; }
}

/* ─── PRICING PERSONA TEXT ─── */
.pricing-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.pricing-persona {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    line-height: 1.5;
}
.pricing-card.featured .pricing-persona {
    color: rgba(255,255,255,0.6);
}
.pricing-trigger {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.4rem;
    line-height: 1.5;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(197,160,89,0.15);
}
.pricing-card.featured .pricing-trigger {
    color: rgba(255,255,255,0.5);
    border-top-color: rgba(255,255,255,0.1);
}
