/* ============================================
   LITTLE KHALIFAH ACADEMY – MAIN STYLESHEET
   Akademi Petualang Surga Landing Page
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --navy:       #1B365D;
    --navy-dark:  #122444;
    --navy-light: #2a4e80;
    --gold:       #D4AF37;
    --gold-light: #e8c84b;
    --gold-dark:  #b8961e;
    --green:      #50C878;
    --green-dark: #3aad60;
    --cream:      #F5F5DC;
    --cream-dark: #ebebc8;
    --white:      #FFFFFF;
    --gray-50:    #f9f9f9;
    --gray-100:   #f3f3f3;
    --gray-200:   #e8e8e8;
    --gray-400:   #a0a0a0;
    --gray-600:   #666666;
    --gray-800:   #333333;
    --black:      #111111;

    --font-logo:    'Montserrat', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body:    'Lato', sans-serif;

    --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:  0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl:  0 20px 60px rgba(0,0,0,0.18);

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-full: 9999px;

    --transition: all 0.3s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- TYPOGRAPHY UTILITIES ---- */
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-green { color: var(--green); }
.highlight  { color: var(--gold); }

.section-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 16px;
}
.section-label.light {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.25);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 640px;
    margin-bottom: 48px;
}
.section-subtitle.light { color: rgba(255,255,255,0.8); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-lg  { font-size: 1rem;    padding: 14px 32px; }
.btn-xl  { font-size: 1.1rem;  padding: 18px 40px; }

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    font-size: 1rem;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.55);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    font-size: 1rem;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-size: 1rem;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-md);
}
.btn-outline-light:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-outline-cta {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ---- FLOATING WA BUTTON ---- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: var(--transition);
    animation: waPulse 2.5s infinite;
}
.wa-float i { font-size: 1.4rem; }
.wa-float:hover {
    background: #20bc5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.55);
    animation: none;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* ---- TOPBAR ---- */
.topbar {
    background: var(--navy-dark);
    color: var(--cream);
    text-align: center;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    line-height: 1.5;
}
.topbar strong { color: var(--gold); }
.topbar a { color: var(--gold-light); text-decoration: underline; }
.topbar a:hover { color: var(--white); }

/* ---- NAVBAR ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(27,54,93,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(18,36,68,0.99);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-family: var(--font-logo);
    font-size: 1rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1.1;
}
.logo-sub {
    font-family: var(--font-logo);
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-cta {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); color: var(--navy-dark); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy-dark);
    border-top: 1px solid rgba(212,175,55,0.15);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-menu.open {
    display: flex;
    max-height: 400px;
    padding: 12px 0 20px;
}
.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(212,175,55,0.07); }
.mobile-menu a.nav-cta {
    background: var(--gold);
    color: var(--navy-dark);
    margin: 12px 24px 0;
    border-radius: var(--radius-full);
    text-align: center;
    border-bottom: none;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, #1e4a7a 100%);
    overflow: hidden;
    padding: 100px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--gold);
    top: -200px; right: -100px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--green);
    bottom: -150px; left: -100px;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--white);
    top: 40%; right: 20%;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-family: var(--font-logo);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-headline .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.hero-subheadline strong { color: var(--gold-light); }

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 20px 40px;
    margin-bottom: 36px;
    backdrop-filter: blur(6px);
    display: inline-flex;
}
.stat-item { text-align: center; padding: 0 28px; }
.stat-number {
    display: block;
    font-family: var(--font-logo);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-note {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hero-note i { color: var(--green); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-dot {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    animation: scrollBounce 1.8s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50%       { transform: translateY(12px); opacity: 1; }
}

/* ============================================
   SECTION 2: PROBLEM
   ============================================ */
.problem-section {
    padding: 90px 0;
    background: var(--gray-50);
}

.problem-section .section-label,
.problem-section .section-title {
    text-align: center;
    display: block;
}
.problem-section .section-title {
    max-width: 700px;
    margin: 0 auto 32px;
}

.problem-story {
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-sm);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.story-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.problem-story p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 12px;
}
.problem-story p:last-child { margin-bottom: 0; }
.problem-story strong { color: var(--gray-800); }
.problem-story em { color: var(--navy); font-style: italic; }

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.pain-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.pain-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.pain-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.pain-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.problem-closing {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
    color: var(--white);
    max-width: 740px;
    margin: 0 auto;
}
.problem-closing p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}
.problem-closing strong { color: var(--gold-light); }
.problem-closing em { color: var(--green); font-style: normal; }

/* ============================================
   SECTION 3: SOLUTION
   ============================================ */
.solution-section {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}
.solution-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(212,175,55,0.05);
    top: -150px; right: -100px;
}

.solution-intro {
    text-align: center;
    margin-bottom: 56px;
}
.solution-intro .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.solution-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.solution-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}
.solution-icon { font-size: 2.6rem; margin-bottom: 14px; }
.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 10px;
}
.solution-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.solution-promise {
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 680px;
    margin: 0 auto;
}
.promise-icon { font-size: 2.5rem; flex-shrink: 0; }
.solution-promise p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}
.solution-promise strong { color: var(--gold-light); }
.solution-promise em { color: var(--green); font-style: italic; }

/* ============================================
   SECTION 4: FEATURES
   ============================================ */
.features-section {
    padding: 90px 0;
    background: var(--white);
}
.features-section .section-label,
.features-section .section-title {
    text-align: center;
    display: block;
}
.features-section .section-title {
    max-width: 700px;
    margin: 0 auto 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}
.feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateY(-2px);
    background: var(--white);
}

.feature-icon-wrap {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: var(--white);
}
.feature-icon-wrap.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-dark); }
.feature-icon-wrap.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.feature-icon-wrap.navy { background: linear-gradient(135deg, var(--navy-light), var(--navy-dark)); }

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.feature-content p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   SECTION 5: OUTCOMES
   ============================================ */
.outcome-section {
    padding: 90px 0;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}
.outcome-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(80,200,120,0.07);
    bottom: -100px; left: -80px;
}

.outcome-section .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.outcome-left .section-title { margin-bottom: 16px; }
.section-desc {
    font-size: 1rem;
    line-height: 1.8;
}
.section-desc.light { color: rgba(255,255,255,0.75); }

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: var(--transition);
}
.outcome-item:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(80,200,120,0.3);
}
.outcome-check {
    width: 32px; height: 32px;
    background: var(--green);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.outcome-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.outcome-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SECTION 6: CURRICULUM
   ============================================ */
.curriculum-section {
    padding: 90px 0;
    background: var(--gray-50);
}
.curriculum-section .section-label,
.curriculum-section .section-title,
.curriculum-section .section-subtitle {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.curriculum-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}
.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--green));
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: start;
}
.timeline-item.reverse .timeline-marker { order: 2; }
.timeline-item.reverse .timeline-content { order: 1; text-align: right; }
.timeline-item.reverse .phase-outcomes { justify-content: flex-end; }
.timeline-item.reverse .phase-badge { margin-left: auto; margin-right: 0; }

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    padding-top: 8px;
}
.week-badge {
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.week-number {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-family: var(--font-logo);
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.timeline-content {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    margin: 0 20px;
}
.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.phase-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.phase-badge.iman    { background: rgba(27,54,93,0.1);   color: var(--navy); }
.phase-badge.akhlak  { background: rgba(212,175,55,0.15); color: var(--gold-dark); }
.phase-badge.ibadah  { background: rgba(80,200,120,0.15); color: var(--green-dark); }
.phase-badge.kontribusi { background: rgba(180,80,80,0.1); color: #c04040; }

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.phase-theme {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}
.timeline-content strong { color: var(--navy); }
.timeline-content em { font-style: italic; color: var(--green-dark); }

.phase-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.phase-outcomes span {
    background: var(--gray-100);
    color: var(--gray-600);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* ============================================
   LEVELS SECTION
   ============================================ */
.levels-section {
    padding: 80px 0;
    background: var(--white);
}
.levels-section .section-label,
.levels-section .section-title {
    text-align: center;
    display: block;
    margin-bottom: 16px;
}
.levels-section .section-title { margin-bottom: 48px; }

.levels-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.level-card {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    width: 160px;
    transition: var(--transition);
}
.level-card:hover, .level-card.featured {
    background: var(--navy);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.level-card:hover h4, .level-card.featured h4 { color: var(--gold); }
.level-card:hover p, .level-card.featured p { color: rgba(255,255,255,0.7); }

.level-badge {
    display: inline-block;
    font-family: var(--font-logo);
    font-size: 0.72rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.lv1 { background: #e8f4f0; color: #2a7a5a; }
.lv2 { background: #e8f0fa; color: #2a4a8a; }
.lv3 { background: #fff0d0; color: #b07000; }
.lv4 { background: #f0e0ff; color: #6a20c0; }
.lv5 { background: var(--gold); color: var(--navy-dark); }

.level-emoji { font-size: 2rem; margin-bottom: 10px; }
.level-card h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    transition: var(--transition);
}
.level-card p {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-style: italic;
    transition: var(--transition);
}
.level-arrow {
    font-size: 1.5rem;
    color: var(--gray-400);
    font-weight: 900;
    padding: 0 4px;
}

.badges-section { text-align: center; }
.badges-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}
.badges-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,175,55,0.3);
    transition: var(--transition);
}
.badge-item:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.05);
}
.badge-icon { font-size: 1.1rem; }

/* ============================================
   MENTOR SECTION
   ============================================ */
.mentor-section {
    padding: 90px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.mentor-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,54,93,0.04) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}

.mentor-section .section-label,
.mentor-section .section-title {
    text-align: center;
    display: block;
    margin-bottom: 16px;
}
.mentor-section .section-title {
    margin-bottom: 52px;
}

/* Mentor Wrapper */
.mentor-wrapper {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

/* Photo Card */
.mentor-photo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mentor-photo-wrap {
    position: relative;
    width: 300px;
    height: 370px;
    margin: 0 auto;
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
    background: var(--gray-100);
}

.mentor-photo-glow {
    position: absolute;
    inset: -5px;
    border-radius: calc(var(--radius-lg) + 5px);
    background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 50%, var(--green) 100%);
    z-index: 1;
    opacity: 0.3;
    filter: blur(3px);
}

.mentor-credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}
.credential-badge:hover {
    background: var(--white);
    border-left-color: var(--navy);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.credential-badge i {
    color: var(--gold);
    font-size: 0.95rem;
    width: 18px;
    flex-shrink: 0;
}

/* Info Card */
.mentor-info-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mentor-bismillah {
    font-family: 'Lato', serif;
    font-size: 1.2rem;
    color: var(--navy-light);
    margin-bottom: 8px;
    opacity: 0.7;
    letter-spacing: 1px;
}

.mentor-name {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 14px;
}

.mentor-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mentor-title-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
}
.mentor-title-chip i { font-size: 0.75rem; }

/* Positions */
.mentor-positions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.position-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: var(--transition);
}
.position-item:hover {
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transform: translateX(4px);
}

.position-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--white);
}
.position-icon.navy  { background: linear-gradient(135deg, var(--navy-light), var(--navy-dark)); }
.position-icon.gold  { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-dark); }
.position-icon.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }

.position-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.position-text span {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Quote Block */
.mentor-quote-block {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-md);
    padding: 28px 28px 22px;
    position: relative;
    overflow: hidden;
}
.mentor-quote-block::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(212,175,55,0.06);
    top: -60px; right: -60px;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 10px;
    opacity: 0.5;
}

.mentor-quote-block blockquote {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.mentor-quote-block cite {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    font-style: normal;
}

/* Mentor CTA Button */
.btn-mentor-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    width: fit-content;
    text-decoration: none;
}
.btn-mentor-cta i { font-size: 1.1rem; }
.btn-mentor-cta:hover {
    background: #20bc5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
    color: var(--white);
}

/* Education Section Label */
.mentor-edu-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.edu-section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.edu-section-label i { color: var(--gold); }

/* Education Timeline */
.mentor-education {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--gray-200);
}
.mentor-education::before {
    content: '';
    position: absolute;
    left: -2px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--navy), var(--green));
}

.edu-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0 14px 16px;
    position: relative;
    transition: var(--transition);
}
.edu-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 20px;
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
    background: var(--gold);
    transition: var(--transition);
}
.edu-item:nth-child(2)::before { background: var(--navy); box-shadow: 0 0 0 2px var(--navy); }
.edu-item:nth-child(3)::before { background: var(--green); box-shadow: 0 0 0 2px var(--green); }

.edu-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--white);
}
.edu-icon.s1 { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-dark); }
.edu-icon.s2 { background: linear-gradient(135deg, var(--navy-light), var(--navy-dark)); }
.edu-icon.s3 { background: linear-gradient(135deg, var(--green), var(--green-dark)); }

.edu-body { flex: 1; }
.edu-degree {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 4px;
}
.edu-degree.s1 { background: rgba(212,175,55,0.15); color: var(--gold-dark); }
.edu-degree.s2 { background: rgba(27,54,93,0.10); color: var(--navy); }
.edu-degree.s3 { background: rgba(80,200,120,0.12); color: var(--green-dark); }

.edu-school {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 2px;
}
.edu-detail {
    font-size: 0.78rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 5px;
}
.edu-detail i { font-size: 0.7rem; color: var(--gold); }

/* ============================================
   RESPONSIVE – MENTOR SECTION
   ============================================ */
@media (max-width: 1024px) {
    .mentor-wrapper {
        grid-template-columns: 300px 1fr;
        gap: 36px;
    }
    .mentor-photo-wrap { width: 240px; height: 290px; }
}

@media (max-width: 768px) {
    .mentor-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mentor-photo-card {
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
    .mentor-photo-wrap { width: 220px; height: 270px; }
    .mentor-name { font-size: 1.2rem; }
    .btn-mentor-cta { width: 100%; justify-content: center; }
    .mentor-education { padding-left: 16px; }
}

/* ============================================
   ACTIVITIES / GALERI KEGIATAN SECTION
   ============================================ */
.activities-section {
    padding: 90px 0 80px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}
.activities-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80,200,120,0.04) 0%, transparent 70%);
    bottom: -200px; right: -150px;
    pointer-events: none;
}

.activities-section .section-label,
.activities-section .section-title {
    text-align: center;
    display: block;
    margin-bottom: 14px;
}
.activities-section .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

/* ---- Activity Tab Filter ---- */
.activity-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
}
.act-tab {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}
.act-tab:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(212,175,55,0.06);
}
.act-tab.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    box-shadow: 0 4px 14px rgba(27,54,93,0.2);
}

/* ---- Activity Grid ---- */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

/* ---- Activity Card ---- */
.act-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.act-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.act-card.hidden {
    display: none;
}

/* Featured badge */
.act-card.featured-act {
    border: 2px solid var(--gold);
    box-shadow: 0 4px 24px rgba(212,175,55,0.15);
}
.act-featured-label {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 10;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Image Wrapper */
.act-img-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}
.act-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.act-card:hover .act-img-wrap img {
    transform: scale(1.06);
}

/* Icon Display (fallback) */
.act-img-icon {
    background: var(--gray-100);
}
.act-icon-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.act-icon-bg {
    width: 90px; height: 90px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.iman-bg       { background: linear-gradient(135deg, var(--navy-light), var(--navy-dark)); }
.akhlak-bg     { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy-dark); }
.ibadah-bg     { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.kontribusi-bg { background: linear-gradient(135deg, #c04040, #8b2020); }

/* Overlay */
.act-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,54,93,0.92) 0%, rgba(27,54,93,0.3) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    z-index: 3;
}
.act-card:hover .act-overlay { opacity: 1; }
.act-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.act-overlay-content p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
}

/* Phase Tags */
.act-phase-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    width: fit-content;
    letter-spacing: 0.5px;
}
.act-phase-tag.iman       { background: rgba(27,54,93,0.9);   color: var(--gold-light); }
.act-phase-tag.akhlak     { background: rgba(212,175,55,0.9); color: var(--navy-dark); }
.act-phase-tag.ibadah     { background: rgba(80,200,120,0.9); color: #0a4020; }
.act-phase-tag.kontribusi { background: rgba(192,64,64,0.9);  color: #ffd0d0; }

/* Card Body */
.act-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.act-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.act-week, .act-day {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}
.act-week {
    background: rgba(27,54,93,0.08);
    color: var(--navy);
}
.act-day {
    background: rgba(212,175,55,0.12);
    color: var(--gold-dark);
}

.act-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin: 0;
}
.act-card-body p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.act-outcome {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(80,200,120,0.08);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 8px 12px;
    margin-top: auto;
}
.act-outcome i {
    color: var(--green-dark);
    font-size: 0.8rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.act-outcome span {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.4;
}

.act-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.act-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(27,54,93,0.07);
    color: var(--navy);
}
.act-highlights .fa-check-circle { color: var(--green); font-size: 0.7rem; }

/* ---- Activity Stats Bar ---- */
.activity-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 28px 40px;
    box-shadow: var(--shadow-lg);
}
.act-stat { text-align: center; padding: 0 32px; }
.act-stat-num {
    display: block;
    font-family: var(--font-logo);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.act-stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.act-stat-sep {
    width: 1px;
    height: 52px;
    background: rgba(255,255,255,0.12);
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .act-card.featured-act { grid-column: 1 / -1; }
    .act-card.featured-act .act-img-wrap { height: 260px; }
    .activity-stats { padding: 24px 20px; }
    .act-stat { padding: 0 20px; }
    .act-stat-num { font-size: 2rem; }
}

@media (max-width: 768px) {
    .activity-grid { grid-template-columns: 1fr; }
    .act-card.featured-act { grid-column: auto; }
    .act-card.featured-act .act-img-wrap { height: 210px; }
    .activity-tabs { gap: 8px; }
    .act-tab { font-size: 0.78rem; padding: 7px 14px; }
    .activity-stats {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px;
        border-radius: var(--radius-lg);
    }
    .act-stat-sep { display: none; }
    .act-stat { flex: 1; min-width: 100px; }
}

/* ============================================
   RUNDOWN SECTION
   ============================================ */
.rundown-section {
    padding: 90px 0;
    background: var(--white);
}
.rundown-section .section-label,
.rundown-section .section-title { text-align: center; display: block; }
.rundown-section .section-subtitle {
    text-align: center; margin-left: auto; margin-right: auto; margin-bottom: 40px;
}

/* ---- Week Selector Tabs ---- */
.week-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}
.week-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-200);
    background: var(--gray-50);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}
.week-tab:hover { border-color: var(--gold); background: var(--white); }
.week-tab.active {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 4px 16px rgba(27,54,93,0.2);
}
.week-tab-num {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--navy);
    transition: color 0.3s;
}
.week-tab-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: color 0.3s;
}
.week-tab.active .week-tab-num { color: var(--gold); }
.week-tab.active .week-tab-sub { color: rgba(255,255,255,0.7); }

/* ---- Week Panels ---- */
.week-panels { position: relative; }
.week-panel { display: none; }
.week-panel.active { display: block; animation: fadeInPanel 0.4s ease; }
@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Week Header ---- */
.week-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 24px 28px;
    flex-wrap: wrap;
}
.week-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.week-theme-icon {
    font-size: 2.4rem;
    line-height: 1;
}
.week-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.week-header p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}
.week-header strong { color: var(--gold-light); }
.week-goal-chip {
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* ---- Rundown Table ---- */
.rundown-table {
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.rundown-row {
    display: grid;
    grid-template-columns: 72px 1fr 180px 90px 160px;
    gap: 0;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.2s;
}
.rundown-row:last-child { border-bottom: none; }
.rundown-row:not(.header-row):hover { background: rgba(212,175,55,0.04); }

.rundown-row.header-row {
    background: var(--gray-100);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.rundown-row.highlight-row {
    background: linear-gradient(90deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.03) 100%);
    border-left: 4px solid var(--gold);
}

.rundown-row > div {
    padding: 14px 16px;
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.rundown-row > div:last-child { border-right: none; }

.rd-day {
    align-items: center;
    text-align: center;
}
.day-num {
    font-family: var(--font-logo);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.day-label {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.rd-topic strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}
.rd-topic p {
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.rd-method {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-start;
    justify-content: flex-start;
}

.rd-mode { align-items: center; justify-content: center; text-align: center; }

.rd-output {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    align-items: center;
}

/* Method Tags */
.method-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.method-tag.storytelling { background: #e8f0fb; color: #2a50a0; }
.method-tag.video        { background: #ffe8e8; color: #a02020; }
.method-tag.roleplay     { background: #f0e0ff; color: #6a20c0; }
.method-tag.challenge    { background: #fff0d0; color: #a06000; }
.method-tag.outdoor      { background: #e0f5e8; color: #1a6a30; }
.method-tag.journaling   { background: #e8f8f0; color: #1a7a50; }
.method-tag.hafalan      { background: #e8e8f8; color: #303080; }
.method-tag.family       { background: #ffe8f5; color: #a02070; }
.method-tag.presentasi   { background: #fff5e0; color: #806000; }
.method-tag.gameshow     { background: #e0f0ff; color: #1050a0; }
.method-tag.creative     { background: #f5e8ff; color: #7020b0; }
.method-tag.award        { background: rgba(212,175,55,0.15); color: var(--gold-dark); }
.method-tag.ceremonial   { background: linear-gradient(135deg,rgba(212,175,55,0.2),rgba(27,54,93,0.1)); color: var(--navy); }
.method-tag.drama        { background: #fce8e8; color: #902030; }
.method-tag.teamwork     { background: #e8f5e0; color: #305020; }
.method-tag.refleksi     { background: #e8f0e8; color: #204020; }
.method-tag.foto         { background: #e0e8ff; color: #203080; }
.method-tag.coaching     { background: #f0f0ff; color: #2030a0; }
.method-tag.sharing      { background: #e8ffe8; color: #105010; }

/* Mode Tags */
.mode-online  { background: rgba(212,175,55,0.15); color: var(--gold-dark); font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); }
.mode-offline { background: rgba(80,200,120,0.15); color: var(--green-dark); font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); }
.mode-hybrid  { background: rgba(27,54,93,0.12); color: var(--navy); font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); }

/* Method Legend */
.method-legend {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px 28px;
}
.legend-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.legend-title i { color: var(--gold); }
.legend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* Responsive Rundown */
@media (max-width: 1024px) {
    .rundown-row { grid-template-columns: 60px 1fr 150px 80px 140px; }
    .legend-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .week-tabs { grid-template-columns: repeat(2, 1fr); }
    .rundown-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .rundown-row.header-row { display: none; }
    .rundown-row > div {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 10px 16px;
    }
    .rundown-row > div:last-child { border-bottom: none; }
    .rd-day { flex-direction: row; align-items: center; gap: 10px; background: var(--gray-100); }
    .day-num { font-size: 1rem; }
    .week-header { flex-direction: column; gap: 12px; }
    .week-goal-chip { white-space: normal; text-align: center; }
    .legend-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .week-tabs { grid-template-columns: 1fr 1fr; gap: 8px; }
    .legend-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HYBRID SECTION
   ============================================ */
.hybrid-section {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--navy-dark) 0%, #0e1e38 100%);
    position: relative;
    overflow: hidden;
}
.hybrid-section::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 65%);
    top: -200px; right: -200px;
    pointer-events: none;
}
.hybrid-section::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(80,200,120,0.05) 0%, transparent 65%);
    bottom: -100px; left: -100px;
    pointer-events: none;
}

.hybrid-section .section-label,
.hybrid-section .section-title,
.hybrid-section .section-subtitle {
    text-align: center; display: block; margin-left: auto; margin-right: auto;
}

/* ---- Donut Visual ---- */
.hybrid-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.hybrid-donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.hybrid-donut {
    position: relative;
    width: 200px; height: 200px;
}
.donut-svg { width: 100%; height: 100%; }
.donut-online, .donut-offline {
    transition: stroke-dasharray 1.5s ease, stroke-dashoffset 1.5s ease;
}
.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.donut-label-main {
    font-family: var(--font-logo);
    font-size: 1rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}
.donut-label-sub {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.hybrid-legend-pills {
    display: flex;
    gap: 16px;
}
.hybrid-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    min-width: 100px;
}
.hybrid-pill.online  { background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25); }
.hybrid-pill.offline { background: rgba(80,200,120,0.12); border: 1px solid rgba(80,200,120,0.25); }
.pill-pct {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}
.hybrid-pill.online  .pill-pct  { color: var(--gold); }
.hybrid-pill.offline .pill-pct  { color: var(--green); }
.pill-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* ---- Hybrid Detail Cards ---- */
.hybrid-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.hybrid-card {
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.online-card  { background: rgba(212,175,55,0.07); border: 1px solid rgba(212,175,55,0.2); }
.offline-card { background: rgba(80,200,120,0.07); border: 1px solid rgba(80,200,120,0.2); }

.hybrid-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.hybrid-card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.online-icon  { background: rgba(212,175,55,0.15); }
.offline-icon { background: rgba(80,200,120,0.15); }

.hybrid-pct-badge {
    display: inline-block;
    font-family: var(--font-logo);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.online-badge  { background: var(--gold); color: var(--navy-dark); }
.offline-badge { background: var(--green); color: #0a3020; }

.hybrid-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.hybrid-card-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin: 0;
}

.hybrid-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}
.hybrid-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.online-card  .hybrid-feature-list li i { color: var(--gold); font-size: 0.82rem; margin-top: 3px; flex-shrink: 0; }
.offline-card .hybrid-feature-list li i { color: var(--green); font-size: 0.82rem; margin-top: 3px; flex-shrink: 0; }

.hybrid-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-top: auto;
}
.hybrid-card-footer strong { color: var(--white); }
.online-footer  { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.15); }
.online-footer  i { color: var(--gold); }
.offline-footer { background: rgba(80,200,120,0.1); border: 1px solid rgba(80,200,120,0.15); }
.offline-footer i { color: var(--green); }

/* Divider between cards */
.hybrid-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    padding-top: 80px;
}
.hd-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}
.hd-icon {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ---- Why Hybrid ---- */
.why-hybrid {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    margin-bottom: 44px;
    position: relative;
    z-index: 2;
}
.why-hybrid h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 24px;
    text-align: center;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: var(--transition);
}
.why-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,175,55,0.2);
}
.why-icon { font-size: 2rem; flex-shrink: 0; }
.why-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.why-item p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ---- Hybrid CTA ---- */
.hybrid-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}
.hybrid-cta p {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

/* Responsive Hybrid */
@media (max-width: 1024px) {
    .hybrid-cards { grid-template-columns: 1fr; gap: 24px; }
    .hybrid-divider { flex-direction: row; padding: 0; padding-left: 20px; padding-right: 20px; }
    .hd-line { width: 100%; height: 2px; flex: none; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); }
    .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hybrid-legend-pills { gap: 12px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-hybrid { padding: 24px 20px; }
    .hybrid-cta .btn-xl { padding: 15px 24px; font-size: 0.95rem; }
}

/* ============================================
   SECTION 7: TESTIMONIALS
   ============================================ */
.testimonial-section {
    padding: 90px 0;
    background: var(--gray-50);
}
.testimonial-section .section-label,
.testimonial-section .section-title {
    text-align: center;
    display: block;
    margin-bottom: 16px;
}
.testimonial-section .section-title { margin-bottom: 48px; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(160deg, #fffef5 0%, var(--white) 100%);
}
.testimonial-card.featured::before {
    content: '✨ Kisah Inspirasi';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.testi-stars {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
}
.testi-quote p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.75;
    font-style: italic;
}
.testi-quote strong { color: var(--navy); font-style: normal; }

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--gray-200);
    padding-top: 16px;
}
.author-avatar {
    width: 44px; height: 44px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; }
.author-info strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}
.author-info span {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.testi-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-dark);
    background: rgba(80,200,120,0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.testi-footer {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.testi-footer p {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}
.testi-footer strong { color: var(--navy); }

/* ============================================
   SECTION 8: PRICING
   ============================================ */
.pricing-section {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}
.pricing-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(212,175,55,0.04);
    top: -150px; left: -150px;
}
.pricing-section .section-label,
.pricing-section .section-title,
.pricing-section .section-subtitle {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 36px;
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
}
.pricing-card.silver {
    background: var(--white);
    border: 1px solid var(--gray-200);
}
.pricing-card.gold {
    background: linear-gradient(160deg, #1e2e50 0%, #162240 100%);
    border: 2px solid var(--gold);
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(212,175,55,0.25);
}
.pricing-card.platinum {
    background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1e 100%);
    border: 1px solid rgba(200,180,255,0.2);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-header { text-align: center; margin-bottom: 20px; }
.pricing-icon { font-size: 2.5rem; margin-bottom: 10px; }
.pricing-card.silver .pricing-header h3 { color: var(--navy); }
.pricing-card.gold .pricing-header h3,
.pricing-card.platinum .pricing-header h3 { color: var(--gold-light); }
.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing-sub { font-size: 0.82rem; }
.pricing-card.silver .pricing-sub { color: var(--gray-400); }
.pricing-card.gold .pricing-sub,
.pricing-card.platinum .pricing-sub { color: rgba(255,255,255,0.55); }

.pricing-price {
    text-align: center;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
}
.pricing-card.silver .pricing-price { background: var(--gray-50); }
.pricing-card.gold .pricing-price { background: rgba(212,175,55,0.1); }
.pricing-card.platinum .pricing-price { background: rgba(255,255,255,0.05); }

.price-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 4px;
}
.price-suggestion {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gray-400);
}
.pricing-card.gold .price-suggestion,
.pricing-card.platinum .price-suggestion { color: rgba(255,255,255,0.4); }

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}
.pricing-card.silver .pricing-features li { color: var(--gray-600); }
.pricing-card.gold .pricing-features li,
.pricing-card.platinum .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-features .fa-check { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-features .fa-times { color: #ff6b6b; flex-shrink: 0; margin-top: 2px; }

.pricing-note {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.pricing-note p {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}
.pricing-note strong { color: var(--gold-light); }
.pricing-note em { color: var(--white); font-style: italic; }

/* ============================================
   SECTION 9: URGENCY
   ============================================ */
.urgency-section {
    padding: 80px 0;
    background: var(--cream);
}
.urgency-inner {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(212,175,55,0.2);
}
.urgency-inner::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(212,175,55,0.06);
    top: -100px; right: -80px;
}

.urgency-icon { font-size: 3rem; margin-bottom: 16px; }
.urgency-inner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.urgency-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.urgency-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto 40px;
    text-align: left;
}
.urgency-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.08);
}
.urgency-point i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}
.urgency-point strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}
.urgency-point p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.5;
}

/* Countdown */
.countdown-wrap { margin-bottom: 32px; }
.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    min-width: 72px;
}
.countdown-num {
    font-family: var(--font-logo);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.countdown-unit {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}
.countdown-sep {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
}

/* Slot Indicator */
.slot-indicator { max-width: 420px; margin: 0 auto; }
.slot-indicator > p:first-child {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}
.slot-indicator strong { color: var(--gold-light); }
.slot-bar {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    height: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.slot-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    transition: width 1.5s ease;
}
.slot-note {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   SECTION 10: FINAL CTA
   ============================================ */
.final-cta {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--navy-dark) 0%, #0d1a30 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.final-cta::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}
.cta-badge {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta-content > p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}
.cta-content > p strong { color: var(--gold-light); }

.cta-hadith {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    margin-bottom: 36px !important;
}
.cta-hadith em {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
    margin-bottom: 8px;
}
.cta-hadith strong { color: var(--gold-light); font-size: 0.85rem; }

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cta-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}
.contact-item i { color: #25d366; font-size: 1.1rem; }
.contact-item a { color: var(--gold-light); }
.contact-item a:hover { color: var(--white); }
.contact-divider {
    color: rgba(255,255,255,0.2);
    font-size: 1.2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
}
.cta-guarantee i { color: var(--green); }
.cta-guarantee p {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    margin: 0;
}
.cta-guarantee strong { color: rgba(255,255,255,0.7); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}
.faq-section .section-label,
.faq-section .section-title {
    text-align: center;
    display: block;
    margin-bottom: 16px;
}
.faq-section .section-title { margin-bottom: 48px; }

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i {
    color: var(--gray-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.75;
    padding: 0 24px 20px;
}
.faq-answer strong { color: var(--navy); }
.faq-item.open .faq-answer { max-height: 200px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.contact-row i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.contact-row a { color: rgba(255,255,255,0.65); }
.contact-row a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
}
.footer-quote {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.3) !important;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 42px; height: 42px;
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--transition);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy-dark); }

/* ============================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .nav-links { gap: 20px; font-size: 0.85rem; }
    .pain-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-cards { grid-template-columns: repeat(2, 1fr); }
    .features-grid { gap: 20px; }
    .outcome-section .container { grid-template-columns: 1fr; gap: 40px; }
    .outcome-left { text-align: center; }
    .curriculum-timeline::before { left: 40px; }
    .timeline-item,
    .timeline-item.reverse {
        grid-template-columns: 80px 1fr;
    }
    .timeline-item.reverse .timeline-marker { order: 0; }
    .timeline-item.reverse .timeline-content { order: 1; text-align: left; }
    .timeline-item.reverse .phase-outcomes { justify-content: flex-start; }
    .timeline-item.reverse .phase-badge { margin-left: 0; }
    .timeline-marker { align-items: center; }
    .timeline-content { margin: 0 0 0 12px; }
    .levels-track { gap: 4px; }
    .level-card { width: 130px; padding: 18px 12px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .pricing-card.gold { transform: none; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 80px 0 60px; }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 16px 12px;
        width: 100%;
    }
    .stat-item { padding: 0 8px; }
    .stat-number { font-size: 1.6rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-lg { padding: 13px 28px; font-size: 0.9rem; }

    .pain-grid { grid-template-columns: 1fr; }
    .solution-cards { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .levels-track { flex-direction: column; align-items: center; }
    .level-arrow { transform: rotate(90deg); }

    .urgency-inner { padding: 36px 20px; }
    .countdown-timer { gap: 6px; }
    .countdown-item { min-width: 60px; padding: 10px 12px; }
    .countdown-num { font-size: 1.6rem; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-xl { font-size: 1rem; padding: 16px 28px; }

    .urgency-points { gap: 12px; }
    .wa-float span { display: none; }
    .wa-float { padding: 14px; }
    .wa-float i { font-size: 1.6rem; }

    .problem-story { padding: 20px; }
    .solution-promise { flex-direction: column; gap: 12px; padding: 24px 20px; }
}

/* ============================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
    .topbar { font-size: 0.78rem; }
    .hero-badge { font-size: 0.72rem; }
    .hero-stats { display: flex; flex-direction: column; align-items: center; gap: 12px; border-radius: var(--radius-md); }
    .stat-divider { width: 60px; height: 1px; }
    .curriculum-timeline::before { display: none; }
    .timeline-item,
    .timeline-item.reverse { grid-template-columns: 1fr; }
    .timeline-marker { flex-direction: row; justify-content: flex-start; margin-bottom: 12px; }
    .timeline-content { margin: 0; }
    .urgency-inner { border-radius: var(--radius-lg); }
    .badges-grid { gap: 8px; }
    .badge-item { font-size: 0.78rem; padding: 8px 14px; }
}
