:root {
    /* Light theme colors - From customhome.css */
    --bg: #f7fbfa;
    --bg2: #eaf7f1;
    --card: #ffffff;
    --ink: #0f2f2a;
    --muted: #4a6a62;
    --brand: #0c5a4b;
    --brand2: #23d199;
    --line: #e2eee9;
    --soft: #edf7f4;
    --shadow: 0 14px 36px rgba(3, 20, 17, .10);
    --blur: 16px;
    --accent: #f2b82b;

    /* Mapping customhome.css vars to customhome2.css vars */
    --primary: var(--brand);
    --primary-hover: #0a4a3b;
    --secondary: var(--soft);
    --text-primary: var(--ink);
    --text-secondary: var(--muted);
    --background: var(--bg);
    --surface: var(--card);
    --border: var(--line);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
}

[data-theme="dark"],
.dark {
    /* Dark theme colors - From customhome.css */
    --bg: #0d1513;
    --bg2: #0b221b;
    --card: #0c1412;
    --ink: #dff8ef;
    --muted: #9bd1c1;
    --brand: #8cfdbf;
    --brand2: #59f0c0;
    --line: #1b2622;
    --soft: #121c1a;
    --shadow: 0 18px 42px rgba(0, 0, 0, .46);
    --blur: 18px;

    /* Mapping customhome.css vars to customhome2.css vars in dark mode */
    --primary: var(--brand);
    --primary-hover: #7ae5a7;
    --secondary: var(--soft);
    --text-primary: var(--ink);
    --text-secondary: var(--muted);
    --background: var(--bg);
    --surface: var(--card);
    --border: var(--line);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    background: radial-gradient(900px 480px at 15% 10%, rgba(18, 185, 129, .12), transparent 55%), radial-gradient(850px 520px at 85% 0%, rgba(242, 184, 75, .14), transparent 55%), linear-gradient(180deg, var(--bg), var(--bg2));
    line-height: 1.5;
    overflow-x: hidden;
}

.bk-container {
    width: min(1240px, 92%);
    margin: 0 auto;
    max-width: 100%;
}

/* Header Styles */
header.bk-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid rgba(12, 90, 75, .12);
    box-shadow: 0 4px 16px rgba(3, 20, 17, .08);
    transition: all 0.3s ease;
}

header.bk-nav:hover {
    box-shadow: 0 6px 20px rgba(3, 20, 17, .12);
}

[data-theme="dark"] header.bk-nav,
.dark header.bk-nav {
    background: rgba(12, 20, 18, .55);
    border-color: rgba(255, 255, 255, .08);
}

.nav-shell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-radius: 999px;
    background: inherit;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

/* Brand logo - shown on all screens */
.brand-logo {
    height: 32px;
    width: auto;
    border: 1px solid rgba(12, 90, 75, 0.15);
    border-radius: 8px;
    padding: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    font-size: var(--font-size-base);
    padding: 6px 10px;
    border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--soft);
    color: var(--text-primary);
}

/* Specific dark mode adjustments to maintain different colors for different states */
[data-theme="dark"] .nav-links a:not(.active),
.dark .nav-links a:not(.active) {
    color: #9ca3af;
    /* Color for non-selected items in dark mode */
}

[data-theme="dark"] .nav-links a.active,
[data-theme="dark"] .nav-links a:hover,
.dark .nav-links a.active,
.dark .nav-links a:hover {
    color: var(--primary);
    /* Keep selected/hover state as the primary color */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid transparent;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 14px;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(12, 90, 75, 0.2);
}

.btn-primary:hover {
    filter: brightness(.95);
    box-shadow: 0 4px 12px rgba(12, 90, 75, 0.3);
    transform: translateY(-1px);
}

/* Dark mode adjustment for better readability */
[data-theme="dark"] .btn-primary,
.dark .btn-primary {
    color: #064e3b;
    /* Dark green text that contrasts well with the button background */
    background-color: var(--primary);
}

/* Dark mode adjustment for button hover state */
[data-theme="dark"] .btn-primary:hover,
.dark .btn-primary:hover {
    filter: brightness(.97);
    color: #064e3b;
    /* Maintain dark text color on hover */
}

.btn-outline {
    background: transparent;
    border-color: var(--brand);
    color: var(--brand);
}

.btn-outline:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(12, 90, 75, 0.2);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}

.btn-ghost:hover {
    background: var(--soft);
    border-color: var(--brand);
    color: var(--brand);
}

.dark-toggle {
    border: none;
    background: var(--soft);
    padding: 6px 8px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
}

[data-theme="dark"] .dark-toggle,
.dark .dark-toggle {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 3px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.25rem;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.2s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 64px 10px auto 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.96));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 22px;
    z-index: 49;
    border: 1px solid rgba(12, 90, 75, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(12, 90, 75, 0.18), 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Dark mode mobile menu */
[data-theme="dark"] .mobile-menu,
.dark .mobile-menu {
    background: linear-gradient(180deg, rgba(13, 21, 19, 0.98), rgba(11, 34, 27, 0.96));
    border: 1px solid rgba(140, 253, 191, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile menu links - Light mode */
.mobile-menu a {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(12, 90, 75, 0.08);
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    margin-bottom: 4px;
    transition: all 0.25s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    background: rgba(12, 90, 75, 0.08);
    color: var(--brand);
    transform: translateX(4px);
}

.mobile-menu a.active {
    background: linear-gradient(135deg, rgba(12, 90, 75, 0.12), rgba(35, 209, 153, 0.08));
    color: var(--brand);
    font-weight: 600;
    border-left: 3px solid var(--brand);
}

/* Dark mode mobile menu links */
[data-theme="dark"] .mobile-menu a,
.dark .mobile-menu a {
    color: #dff8ef;
    border-bottom-color: rgba(140, 253, 191, 0.1);
}

[data-theme="dark"] .mobile-menu a:hover,
.dark .mobile-menu a:hover {
    background: rgba(140, 253, 191, 0.1);
    color: #8cfdbf;
}

[data-theme="dark"] .mobile-menu a.active,
.dark .mobile-menu a.active {
    background: linear-gradient(135deg, rgba(140, 253, 191, 0.15), rgba(89, 240, 192, 0.1));
    color: #8cfdbf;
    border-left-color: #8cfdbf;
}

/* Mobile menu buttons - hide Daftar/Masuk since they're in the header */
.mobile-menu .btn {
    display: none !important;
}

.mobile-menu.open {
    display: block;
    animation: mobileMenuSlideIn 0.3s ease-out;
}

@keyframes mobileMenuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
}

/* Add decorative wave layers */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(35, 209, 153, 0.15) 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(18, 184, 134, 0.2) 100%);
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 20% 100%);
    z-index: 0;
}

/* Green Gradient Background similar to Roboguru style */
.hero-purple-gradient {
    background: linear-gradient(135deg, #0c5a4b 0%, #12b886 50%, #20c997 100%);
    position: relative;
}

/* Diagonal wave shapes overlay */
.hero-purple-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, transparent 45%, rgba(35, 209, 153, 0.3) 45%, rgba(35, 209, 153, 0.3) 50%, transparent 50%, transparent 100%),
        linear-gradient(-135deg, transparent 0%, transparent 60%, rgba(12, 90, 75, 0.4) 60%, rgba(12, 90, 75, 0.4) 65%, transparent 65%, transparent 100%),
        linear-gradient(135deg, transparent 0%, transparent 70%, rgba(32, 201, 151, 0.25) 70%, rgba(32, 201, 151, 0.25) 75%, transparent 75%, transparent 100%);
    opacity: 0.6;
    pointer-events: none;
}

.hero-purple-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(35, 209, 153, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 120px);
}

/* Split Layout for Text and Mascot */
.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-text-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-text-left .eyebrow {
    margin-bottom: 8px;
}

.hero-text-left .eyebrow,
.hero-text-left .eyebrow .dot {
    color: rgba(255, 255, 255, 0.9);
}

.hero-purple-gradient .hero-title {
    color: #fff;
    font-size: clamp(28px, 3.5vw, 46px);
    line-height: 1.2;
    margin: 0 0 12px 0;
    font-weight: 800;
}

.hero-purple-gradient .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.hero-purple-gradient .hero-badges span {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

/* White Outline Button for Gradient Background */
.btn-white {
    background: transparent !important;
    border-color: #fff !important;
    color: #fff !important;
}

.btn-white:hover {
    background: #fff !important;
    color: var(--brand) !important;
}

/* Mascot Section */
.hero-mascot-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.mascot-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
}

.mascot-character {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: bounce 3s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.mascot-icon {
    font-size: 90px;
    color: #0c5a4b;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.mascot-books {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #23d199, #0c5a4b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(12, 90, 75, 0.4);
}

.mascot-books i {
    font-size: 35px;
    color: #fff;
}

.mascot-sparkle {
    position: absolute;
    font-size: 24px;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 20%;
    right: -10%;
    animation-delay: 0.5s;
}

.sparkle-3 {
    bottom: 10%;
    left: -15%;
    font-size: 30px;
    animation-delay: 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: floatAround 6s ease-in-out infinite;
}

.float-card i {
    font-size: 28px;
    color: #0c5a4b;
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

/* Hero Features - Now in Grid Below */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 0;
    width: 100%;
}

.feature-card {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 14px;
    align-items: start;
    text-align: left;
    padding: 20px !important;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.88rem;
}

.bg-ornament {
    position: absolute;
    inset: 0 0 auto 0;
    height: 320px;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    right: -60px;
    top: -90px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(35, 209, 153, .22), transparent 72%);
    filter: blur(6px);
}

.pattern {
    height: 100%;
    background:
        linear-gradient(90deg, rgba(205, 235, 227, .45) 1px, transparent 1px) 0 0/80px 80px,
        linear-gradient(0deg, rgba(205, 235, 227, .45) 1px, transparent 1px) 0 0/80px 80px;
    opacity: .5;
}

[data-theme="dark"] .pattern,
.dark .pattern {
    background:
        linear-gradient(90deg, rgba(20, 44, 39, .9) 1px, transparent 1px) 0 0/80px 80px,
        linear-gradient(0deg, rgba(20, 44, 39, .9) 1px, transparent 1px) 0 0/80px 80px;
    opacity: .9;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

/* Glass Cards */
.glass-stack {
    display: grid;
    gap: 16px;
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

.hero-title {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.2;
    margin: 0;
    font-weight: 800;
    position: relative;
}

.accent {
    background: linear-gradient(135deg, var(--brand2), var(--accent));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    justify-content: center;
}

.hero-badges span {
    background: var(--soft);
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

/* Glass Cards */
.glass-stack {
    display: grid;
    gap: 16px;
    position: relative;
}

.glass-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 16px;
    align-items: start;
    background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .85));
    border: 1px solid rgba(12, 90, 75, .12);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(3, 20, 17, .08);
    backdrop-filter: blur(calc(var(--blur) - 2px));
    -webkit-backdrop-filter: blur(calc(var(--blur) - 2px));
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px rgba(3, 20, 17, .14);
}

[data-theme="dark"] .glass-card {
    background: linear-gradient(180deg, rgba(12, 20, 18, .58), rgba(12, 20, 18, .36));
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .45);
}

[data-theme="dark"] .glass-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, .55);
}

.glass-radius {
    border-radius: 20px;
}

.glass-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--ink);
}

.glass-card p {
    font-size: 0.92rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.big-icon {
    font-size: 32px;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lift-1 {
    transform: translateY(0);
}

.lift-2 {
    transform: translateY(-6px);
}

.lift-3 {
    transform: translateY(-12px);
}

/* Marquee */
.marquee {
    overflow: hidden;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    margin-top: 0;
    padding: 4px 0;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-purple-gradient .marquee span {
    color: rgba(255, 255, 255, 0.9);
}

.hero-purple-gradient .marquee span::before {
    color: #fff;
}

.marquee .track {
    display: flex;
    gap: 32px;
    padding: 12px 0;
    min-width: 200%;
    /* Match original implementation */
    animation: marq 25s linear infinite;
    color: var(--muted);
}

.marquee span {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
}

.marquee span::before {
    content: "✦";
    color: var(--brand2);
    font-size: 14px;
}

@keyframes marq {
    to {
        transform: translateX(-50%);
        /* Match original implementation */
    }
}

/* Sections */
.section {
    padding: 56px 0;
}

.soft-bg {
    background: var(--soft);
}

.section-head {
    text-align: center;
    margin-bottom: 16px;
}

.section-head h2 {
    margin: 0 0 8px 0;
    font-size: clamp(20px, 2.2vw, 32px);
}

.section-head p {
    color: var(--muted);
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.radius-xl {
    border-radius: 22px;
}

.icon-card i {
    font-size: 26px;
    color: var(--brand);
}

.card-link .arrow {
    display: inline-block;
    margin-top: 6px;
    color: var(--brand);
    transition: transform .2s;
}

.card-link:hover .arrow {
    transform: translateX(4px);
}


.glass-outline {
    background: var(--card);
    border: 1px solid rgba(12, 90, 75, .14);
}

/* Sections */
.section {
    padding: 70px 0;
}

.soft-bg {
    background: var(--soft);
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(12, 90, 75, 0.12), rgba(35, 209, 153, 0.12));
    color: var(--brand);
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    border: 1px solid rgba(12, 90, 75, 0.2);
}

.section-head h2 {
    margin: 0 0 14px 0;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.2;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.program-grid-wrapper {
    max-width: 1150px;
    margin: 0 auto;
}

.program-grid {
    max-width: 100%;
    margin: 0;
}

.card-link {
    text-decoration: none;
    display: block;
    transition: transform 0.25s ease;
    color:inherit;
}

.card-link:hover {
    transform: translateY(-4px);
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease;
}

/* Dark mode for all cards */
[data-theme="dark"] .card,
.dark .card {
    border: 1px solid rgba(35, 209, 153, 0.3);
}

[data-theme="dark"] .card:hover,
.dark .card:hover {
    border-color: var(--brand);
}

.radius-xl {
    border-radius: 22px;
}

.icon-card i {
    font-size: 26px;
    color: var(--brand);
}

.card-link .arrow {
    display: inline-block;
    margin-top: 6px;
    color: var(--brand);
    transition: transform .2s;
}

.card-link:hover .arrow {
    transform: translateX(4px);
}


.glass-outline {
    background: var(--card);
    border: 1px solid rgba(12, 90, 75, .14);
}

/* ========== PHILOSOPHY SECTION - MODERN SPLIT LAYOUT ========== */
.philosophy-modern {
    position: relative;
    overflow: hidden;
}

.philosophy-split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Visual Section */
.philosophy-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.philosophy-icon-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
}

.philosophy-main-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #0c5a4b, #23d199);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(12, 90, 75, 0.3);
    animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.philosophy-orbit-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--card);
    border: 2px solid var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--brand);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    animation: orbit 10s linear infinite;
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-2 {
    bottom: 20px;
    right: 10px;
    animation-delay: -3.3s;
}

.orbit-3 {
    bottom: 20px;
    left: 10px;
    animation-delay: -6.6s;
}

@keyframes orbit {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.philosophy-badges-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 250px;
}

.mini-badge {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mini-badge i {
    color: var(--brand);
    font-size: 16px;
}

/* Right Content Section */
.philosophy-content-modern {
    text-align: left;
}

.philosophy-title {
    font-size: clamp(26px, 3vw, 38px);
    margin: 16px 0 12px 0;
    line-height: 1.2;
}

.philosophy-subtitle {
    color: var(--muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.philosophy-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.philosophy-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c5a4b, #23d199);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(12, 90, 75, 0.2);
}

.item-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.item-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* VISI MISI */
.vm-head {
    text-align: center;
    margin-bottom: 48px;
}

.vm-badge {
    display: inline-block;
    background: var(--soft);
    border: 1px solid var(--line);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.vm-title {
    margin: 0 0 12px 0;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
}

.vm-sub {
    color: var(--muted);
    margin: 0;
    font-size: 1.1rem;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    margin-top: 8px;
}

.vm-panel {
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .50));
    border: 1px solid rgba(12, 90, 75, .14);
    backdrop-filter: blur(calc(var(--blur) - 2px));
    -webkit-backdrop-filter: blur(calc(var(--blur) - 2px));
}

/* Dark mode glass effect for Visi Misi section */
[data-theme="dark"] .glass,
.dark .glass {
    background: linear-gradient(180deg, rgba(12, 58, 43, 0.85), rgba(8, 36, 27, 0.85)) !important;
    border: 1px solid rgba(35, 209, 153, 0.2) !important;
}

.vm-chip {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--soft);
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.vm-panel h3 {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    margin: 0 0 16px 0;
}

.misi-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.misi-timeline li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

.misi-timeline .dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand2);
    box-shadow: 0 0 0 3px rgba(35, 209, 153, .18);
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.misi-timeline .bubble {
    flex: 1;
    margin-top: -2px;
    background: var(--card);
    border: 1px dashed var(--line);
    border-radius: 14px;
    padding: 14px 16px;
}

.misi-timeline .bubble b {
    display: block;
    margin-bottom: 5px;
    font-size: 0.92rem;
}

.misi-timeline .bubble p {
    margin: 0;
    line-height: 1.6;
    color: var(--muted);
    font-size: 0.88rem;
}

[data-theme="dark"] .misi-timeline .bubble,
.dark .misi-timeline .bubble {
    background: #0e1816;
}

.visi-content p {
    margin: 0;
    line-height: 1.8;
    font-size: 1rem;
}

.misi-content {
    margin-top: 10px;
}

.visi-icon, .misi-icon {
    position: absolute;
    opacity: 0.05;
    font-size: 8rem;
    z-index: 0;
}

.visi-icon {
    top: 0px;
    right: 20px;
}

.misi-icon {
    bottom: 20px;
    right: 20px;
    transform: rotate(15deg);
}

/* Media query to adjust icon size on smaller screens */
@media (max-width: 768px) {
    .visi-icon, .misi-icon {
        font-size: 5rem;
        opacity: 0.03;
    }

    .visi-icon {
        top: 10px;
        right: 10px;
    }

    .misi-icon {
        bottom: 10px;
        right: 10px;
    }
}

/* Enhance the gap between Visi and Misi sections */
.vm-panel.vm-visi {
    margin-bottom: 0;
}

/* Dark mode adjustments for Visi Misi section */
[data-theme="dark"] .vm-panel,
.dark .vm-panel {
    background: linear-gradient(180deg, rgba(12, 58, 43, 0.85), rgba(8, 36, 27, 0.85));
    border: 1px solid rgba(35, 209, 153, 0.2);
}

[data-theme="dark"] .vm-chip,
.dark .vm-chip {
    background: rgba(35, 209, 153, 0.2);
    border-color: rgba(35, 209, 153, 0.3);
}

[data-theme="dark"] .misi-timeline .bubble,
.dark .misi-timeline .bubble {
    background: rgba(20, 44, 39, 0.6);
    border: 1px solid rgba(35, 209, 153, 0.2);
}

.vm-cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 44px;
    flex-wrap: wrap;
}

/* ========== VISI MISI SECTION - MODERN LAYOUT ========== */
.visimisi-modern {
    background: linear-gradient(180deg, var(--soft) 0%, var(--bg) 100%);
}

/* Visi Hero Card */
.visi-hero-card {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
    background: linear-gradient(135deg, #0c5a4b, #23d199);
    border-radius: 24px;
    padding: 50px 60px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(12, 90, 75, 0.3);
}

.visi-background-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.visi-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.visi-icon-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.visi-text {
    flex: 1;
    color: #fff;
}

.visi-text h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.visi-text h4 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.visi-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Misi Header */
.misi-header {
    text-align: center;
    margin-bottom: 40px;
}

.misi-header h3 {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    margin: 0 0 8px 0;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.misi-header p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0;
}

/* Misi Cards Grid */
.misi-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.misi-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.misi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-color: var(--brand);
}

/* Dark mode for misi cards */
[data-theme="dark"] .misi-card,
.dark .misi-card {
    border: 1px solid rgba(35, 209, 153, 0.3);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

[data-theme="dark"] .misi-card:hover,
.dark .misi-card:hover {
    border-color: var(--brand);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.misi-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(12, 90, 75, 0.1), rgba(35, 209, 153, 0.1));
    color: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.misi-icon-top {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0c5a4b, #23d199);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(12, 90, 75, 0.25);
}

.misi-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--ink);
    line-height: 1.3;
}

.misi-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* TESTIMONI */
.testimonial {
    position: relative;
    overflow: hidden;
    max-width: 750px;
    margin: 0 auto;
}

.ts-track {
    display: flex;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ts-card {
    min-width: 100%;
    padding: 36px 40px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.ts-card h4 {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--ink);
}

.ts-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.ts-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: var(--card);
    border: 1px solid var(--line);
    padding: 12px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    z-index: 10;
}

.ts-btn:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    transform: translateY(-50%) scale(1.08);
}

.ts-btn.prev {
    left: -18px;
}

.ts-btn.next {
    right: -18px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    text-align: center;
    border-radius: 24px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-radius {
    border-radius: 22px;
    margin: 0 10px;
}

.cta-inner {
    text-align: center;
}

/* Override dark mode for CTA section to be less bright */
[data-theme="dark"] .cta,
.dark .cta {
    background: linear-gradient(135deg, rgba(12, 90, 75, 0.8), rgba(35, 209, 153, 0.6));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
}

.cta h2 {
    text-align: center;
    margin: 0 auto 16px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta p {
    text-align: center;
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    background: #fff;
    color: #0f3a33;
    font-weight: 600;
}

.cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cta .btn-ghost {
    border-color: #fff;
    color: #fff;
}

.cta .btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
    border-color: #fff;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* FOOTER */
.footer {
    background: var(--card);
    border-top: 1px solid var(--line);
    padding: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 44px;
    padding: 44px 0 22px;   
}

.f-brand p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer .brand {
    font-weight: 800;
    font-size: 1.15rem;
}

.footer a {
    color: var(--muted);
    transition: all 0.2s ease;
}

.footer a:hover {
    color: var(--brand);
}

.f-section-title {
    display: block;
    margin-bottom: 14px;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
}

.f-contact b {
    display: block;
    margin-bottom: 14px;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
}

.f-contact p {
    margin-bottom: 11px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.f-contact i {
    color: var(--brand);
    width: 18px;
}

/* Blog Section in Footer */
.f-blog {
    flex: 1;
    max-width: 320px;
}

.f-blog b {
    display: block;
    margin-bottom: 14px;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
}

.f-blog ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-blog ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.f-blog ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.5;
    transition: all 0.2s ease;
    padding: 4px 0;
}

.f-blog ul li a:hover {
    color: var(--brand);
}

.f-nav-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.f-nav-links a {
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
}

.f-nav-links a:hover {
    color: var(--brand);
    transform: translateX(5px);
}

.f-nav-links a::before {
    content: '→';
    margin-right: 10px;
    color: var(--brand);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.f-nav-links a:hover::before {
    opacity: 1;
}

.f-bottom {
    text-align: center;
    border-top: 1px solid var(--line);
    padding: 18px;
    color: var(--muted);
    font-size: .94rem;
}

/* Accordion */
.accordion {
    max-width: 750px;
    margin: 0 auto;
}

details {
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.02rem;
    background-color: var(--soft);
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand);
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

summary:focus {
    outline: none;
}

details[open] summary {
    border-radius: 16px 16px 0 0;
    background-color: var(--card);
}

details[open] summary~* {
    animation: sweep .4s ease-in-out;
}

details p {
    padding: 0 22px 22px;
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
    color: var(--muted);
}

/* ========== PROGRAM SECTION - MODERN LAYOUT ========== */
.program-section-modern {
    background: linear-gradient(180deg, var(--bg) 0%, var(--soft) 100%);
}

.program-modern-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured Large Card */
.program-featured {
    grid-row: span 1;
    display: flex;
}

.featured-card {
    position: relative;
    padding: 44px 40px !important;
    background: linear-gradient(135deg, rgba(12, 90, 75, 0.08), rgba(35, 209, 153, 0.05));
    border: 2px solid var(--brand);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Dark mode for featured card */
[data-theme="dark"] .featured-card,
.dark .featured-card {
    background: linear-gradient(135deg, rgba(12, 90, 75, 0.15), rgba(35, 209, 153, 0.1));
    border: 2px solid var(--brand);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.program-icon-large {
    width: 90px !important;
    height: 90px !important;
    font-size: 42px !important;
    margin-bottom: 24px !important;
}

.program-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: auto;
}

.program-features span {
    background: var(--soft);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
}

.program-features i {
    font-size: 14px;
}

.arrow-large {
    padding: 14px 24px !important;
    font-size: 1rem !important;
    margin-top: 0 !important;
}

.featured-card .program-desc {
    flex: 1;
}

/* Secondary Cards Grid */
.program-secondary-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.secondary-card {
    padding: 32px 28px !important;
    text-align: left !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Dark mode for secondary cards */
[data-theme="dark"] .secondary-card,
.dark .secondary-card {
    border: 1px solid rgba(35, 209, 153, 0.3);
}

[data-theme="dark"] .secondary-card:hover,
.dark .secondary-card:hover {
    border-color: var(--brand);
}

.secondary-card .program-icon {
    margin: 0 0 20px 0 !important;
}

.secondary-card .program-title {
    font-size: 1.1rem !important;
}

.secondary-card .program-desc {
    font-size: 0.92rem !important;
    margin-bottom: 18px !important;
    flex: 1;
}

.secondary-card .arrow {
    margin-top: auto;
}

/* Stats Section */
.program-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 40px 0 0;
    border-top: 2px dashed var(--line);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--brand);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c5a4b, #23d199);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.stat-content h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.stat-content p {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.2;
}

.card-link {
    text-decoration: none;
}

.section-head.text-center {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 10px;
    background-color: rgba(12, 90, 75, 0.08);
    transition: all 0.3s ease;
    color: var(--brand);
}

.arrow:hover {
    background-color: var(--brand);
    color: white;
}

.arrow i {
    transition: transform 0.3s ease;
}

.program-card:hover .arrow i {
    transform: translateX(4px);
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-content {
    padding: 16px;
    background: var(--card);
}

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 40px 0 32px;
        min-height: auto;
    }

    .hero-content-wrapper {
        padding: 0 16px;
    }

    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .hero-text-left {
        text-align: center;
        align-items: center;
    }

    .hero-mascot-section {
        min-height: 300px;
        order: -1;
    }

    .mascot-wrapper {
        height: 300px;
    }

    .mascot-character {
        width: 150px;
        height: 150px;
    }

    .mascot-icon {
        font-size: 70px;
    }

    .mascot-books {
        width: 60px;
        height: 60px;
        bottom: -15px;
        right: -15px;
    }

    .mascot-books i {
        font-size: 30px;
    }

    .float-card {
        width: 50px;
        height: 50px;
    }

    .float-card i {
        font-size: 22px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
    }

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

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }

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

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

    .section {
        padding: 60px 0;
    }

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

    /* Program Modern Grid Responsive */
    .program-modern-grid {
        grid-template-columns: 1fr;
    }

    .program-secondary-grid {
        grid-template-rows: auto auto;
    }

    .program-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Philosophy Responsive */
    .philosophy-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-visual {
        order: -1;
    }

    /* Visi Misi Responsive */
    .visi-hero-card {
        padding: 36px 28px;
    }

    .visi-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .misi-grid-modern {
        grid-template-columns: 1fr;
    }

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

    .vm-panel {
        min-height: auto;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-wrap: wrap;
        gap: 32px;
        padding: 36px 0 20px;
    }

    .f-blog {
        max-width: 100%;
        order: 2;
    }

    .f-contact {
        order: 3;
    }

    .ts-btn.prev {
        left: 10px;
    }

    .ts-btn.next {
        right: 10px;
    }

    .filo-card {
        padding: 32px 24px;
    }

    .vm-panel {
        padding: 24px;
    }
}

@media (max-width: 680px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-purple-gradient .hero-title {
        font-size: 28px;
    }

    .section-head h2 {
        font-size: 24px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }

    .glass-card {
        grid-template-columns: 50px 1fr;
        padding: 20px;
    }

    .big-icon {
        font-size: 28px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 28px;
    }

    .f-blog {
        order: 2;
    }

    .f-contact {
        order: 3;
    }

    .ts-card {
        padding: 24px 20px;
    }

    .ts-btn {
        padding: 10px 14px;
    }

    .filo-card {
        padding: 24px 20px;
    }

    .mascot-character {
        width: 120px;
        height: 120px;
    }

    .mascot-icon {
        font-size: 60px;
    }

    .mascot-books {
        width: 50px;
        height: 50px;
    }

    .mascot-books i {
        font-size: 24px;
    }

    .mascot-wrapper {
        height: 250px;
    }

    .hero-mascot-section {
        min-height: 250px;
    }

    .hero-features {
        margin-top: 24px;
    }

    /* Program Stats Mobile */
    .program-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 16px;
    }

    /* Philosophy Mobile */
    .philosophy-icon-wrapper {
        width: 200px;
        height: 200px;
    }

    .philosophy-main-icon {
        width: 110px;
        height: 110px;
        font-size: 55px;
    }

    .orbit-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    /* Visi Misi Mobile */
    .visi-hero-card {
        padding: 28px 20px;
    }

    .visi-icon-large {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }

    .misi-grid-modern {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* === NAVBAR MOBILE: Clean light style like Siswa page === */
@media (max-width: 1000px) {

    /* Header wrapper - light glassmorphism */
    header.bk-nav {
        background: rgba(255, 255, 255, 0.92) !important;
        backdrop-filter: blur(12px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(180%) !important;
        border-bottom: 1px solid #e2e8f0 !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02) !important;
        padding: 0 !important;
    }

    .bk-nav .bk-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0;
        width: 100%;
    }

    /* Nav shell - clean white card style */
    .nav-shell,
    .nav-inner.glass-nav {
        background: rgba(255, 255, 255, 0.95) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0.75rem 1rem !important;
    }

    /* Brand - hide text on mobile */
    .nav-shell .brand span,
    .nav-inner.glass-nav .brand span {
        display: none !important;
    }

    /* Bolder border for logo on mobile */
    .nav-shell .brand .brand-logo,
    .nav-inner.glass-nav .brand .brand-logo {
        height: 36px;
        border: 2px solid rgba(12, 90, 75, 0.25);
    }

    /* Bolder border for Daftar button on mobile */
    .nav-shell .btn-ghost,
    .nav-inner.glass-nav .btn-ghost {
        border-width: 2px !important;
    }

    /* Hamburger button - move to far right, after dark toggle */
    .hamburger {
        display: flex !important;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: #f9fafb !important;
        border-radius: 12px !important;
        transition: all 0.3s ease;
        order: 1; /* Push to end, after dark toggle */
    }

    .hamburger:hover {
        background: #e2e8f0 !important;
    }

    .hamburger span {
        background: #0f172a !important;
    }

    /* Dark toggle - keep in normal position */
    .nav-shell .dark-toggle,
    .nav-inner.glass-nav .dark-toggle {
        background: #f9fafb !important;
        color: var(--ink) !important;
        border-radius: 10px !important;
        order: 0; /* Before hamburger */
    }

    .nav-shell .dark-toggle:hover,
    .nav-inner.glass-nav .dark-toggle:hover {
        background: #e2e8f0 !important;
    }

    /* Primary button - green gradient */
    .nav-shell .btn-primary,
    .nav-inner.glass-nav .btn-primary {
        background: linear-gradient(135deg, var(--brand) 0%, #23d199 100%) !important;
        color: #fff !important;
        border: none !important;
        padding: 0.5rem 1rem !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 8px rgba(12, 90, 75, 0.25) !important;
        font-size: 0.875rem !important;
    }

    .nav-shell .btn-primary:hover,
    .nav-inner.glass-nav .btn-primary:hover {
        background: linear-gradient(135deg, #0a4a3b 0%, var(--brand) 100%) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(12, 90, 75, 0.3) !important;
    }

    /* Ghost button - outline style */
    .nav-shell .btn-ghost,
    .nav-inner.glass-nav .btn-ghost {
        background: transparent !important;
        border: 2px solid rgba(12, 90, 75, 0.25) !important;
        color: var(--ink) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 10px !important;
        font-size: 0.875rem !important;
    }

    .nav-shell .btn-ghost:hover,
    .nav-inner.glass-nav .btn-ghost:hover {
        background: #f9fafb !important;
        border-color: var(--brand) !important;
        color: var(--brand) !important;
    }

    /* Hide desktop nav links on mobile */
    .nav-links {
        display: none !important;
    }

    /* === DARK MODE Mobile Header === */
    [data-theme="dark"] header.bk-nav,
    .dark header.bk-nav {
        background: rgba(13, 21, 19, 0.95) !important;
        border-bottom-color: rgba(140, 253, 191, 0.1) !important;
    }

    [data-theme="dark"] .nav-shell,
    [data-theme="dark"] .nav-inner.glass-nav,
    .dark .nav-shell,
    .dark .nav-inner.glass-nav {
        background: rgba(13, 21, 19, 0.98) !important;
    }

    [data-theme="dark"] .nav-shell .brand i,
    [data-theme="dark"] .nav-inner.glass-nav .brand i,
    .dark .nav-shell .brand i,
    .dark .nav-inner.glass-nav .brand i {
        color: #8cfdbf !important;
    }

    [data-theme="dark"] .hamburger,
    .dark .hamburger {
        background: rgba(140, 253, 191, 0.1) !important;
    }

    [data-theme="dark"] .hamburger:hover,
    .dark .hamburger:hover {
        background: rgba(140, 253, 191, 0.2) !important;
    }

    [data-theme="dark"] .hamburger span,
    .dark .hamburger span {
        background: #dff8ef !important;
    }

    [data-theme="dark"] .nav-shell .btn-ghost,
    [data-theme="dark"] .nav-inner.glass-nav .btn-ghost,
    .dark .nav-shell .btn-ghost,
    .dark .nav-inner.glass-nav .btn-ghost {
        border-color: rgba(140, 253, 191, 0.3) !important;
        color: #dff8ef !important;
    }

    [data-theme="dark"] .nav-shell .btn-ghost:hover,
    [data-theme="dark"] .nav-inner.glass-nav .btn-ghost:hover,
    .dark .nav-shell .btn-ghost:hover,
    .dark .nav-inner.glass-nav .btn-ghost:hover {
        background: rgba(140, 253, 191, 0.1) !important;
        border-color: #8cfdbf !important;
        color: #8cfdbf !important;
    }

    [data-theme="dark"] .nav-shell .btn-primary,
    [data-theme="dark"] .nav-inner.glass-nav .btn-primary,
    .dark .nav-shell .btn-primary,
    .dark .nav-inner.glass-nav .btn-primary {
        background: linear-gradient(135deg, #8cfdbf, #59f0c0) !important;
        color: #064e3b !important;
    }

    [data-theme="dark"] .nav-shell .dark-toggle,
    [data-theme="dark"] .nav-inner.glass-nav .dark-toggle,
    .dark .nav-shell .dark-toggle,
    .dark .nav-inner.glass-nav .dark-toggle {
        background: rgba(140, 253, 191, 0.1) !important;
        color: #dff8ef !important;
    }

    [data-theme="dark"] .nav-shell .dark-toggle:hover,
    [data-theme="dark"] .nav-inner.glass-nav .dark-toggle:hover,
    .dark .nav-shell .dark-toggle:hover,
    .dark .nav-inner.glass-nav .dark-toggle:hover {
        background: rgba(140, 253, 191, 0.2) !important;
    }
}

/* Floating Go Up Button */
.go-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0c5a4b;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(12, 90, 75, 0.4);
    transition: all 0.3s ease;
    font-size: 18px;
    /* Hide button initially */
    opacity: 0;
    visibility: hidden;
}

.go-up-btn:hover {
    background: var(--brand2);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(12, 90, 75, 0.5);
}

.go-up-btn:active {
    transform: translateY(0);
}

.go-up-btn i {
    transition: transform 0.3s ease;
}

.go-up-btn:hover i {
    transform: translateY(-2px);
}

/* Show button when scrolled */
.go-up-btn.show {
    opacity: 1;
    visibility: visible;
}

.preload * {
    transition: none !important;
}

/* ==============================
   FLOATING GLASS NAVBAR (PATCH)
   Tempel di paling bawah CSS
================================ */

/* 1) Bikin header sticky tapi “floating” (bukan full-width bar) */
header.bk-nav{
  position: sticky;
  top: 14px;                  /* jarak dari atas biar terlihat melayang */
  z-index: 1000;
  background: transparent !important;  /* header wrapper transparan */
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* 2) Container navbar jadi card glass yang melayang */
header.bk-nav .bk-container{
  width: min(1240px, 92%);
  margin: 0 auto;
  padding: 0;
}

/* 3) “Nav card” glass: apply ke .nav-shell (utama kamu) */
header.bk-nav .nav-shell{
  /* floating card */
  border-radius: 999px; /* kalau mau lebih kotak: 22px */
  padding: 0.70rem 0.85rem;
  margin: 0 auto;

  /* glassmorphism */
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.66),
    rgba(255,255,255,.46)
  ) !important;

  border: 1px solid rgba(12, 90, 75, .14) !important;

  backdrop-filter: blur(var(--blur)) saturate(165%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(165%);

  /* floating shadow */
  box-shadow:
    0 18px 45px rgba(3, 20, 17, .14),
    0 6px 18px rgba(3, 20, 17, .08) !important;

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* hover “naik dikit” */
header.bk-nav .nav-shell:hover{
  transform: translateY(-1px);
  box-shadow:
    0 22px 58px rgba(3, 20, 17, .18),
    0 10px 26px rgba(3, 20, 17, .10) !important;
  border-color: rgba(12, 90, 75, .22) !important;
}

/* 4) Link hover state biar nyatu sama glass */
header.bk-nav .nav-links a:hover,
header.bk-nav .nav-links a.active{
  background: rgba(12, 90, 75, 0.08) !important;
  border: 1px solid rgba(12, 90, 75, 0.10);
}

/* garis underline jangan nabrak karena nav jadi rounded */
header.bk-nav .nav-links a::after{
  bottom: -6px;
}

/* 5) Tombol biar berasa glass juga (optional, tapi cakep) */
header.bk-nav .btn-ghost{
  background: rgba(255,255,255,.45);
  border-color: rgba(12, 90, 75, .18);
  backdrop-filter: blur(10px);
}
header.bk-nav .btn-ghost:hover{
  background: rgba(12, 90, 75, .08);
}

header.bk-nav .dark-toggle{
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(12, 90, 75, .12);
  backdrop-filter: blur(10px);
}
header.bk-nav .dark-toggle:hover{
  background: rgba(12, 90, 75, .08);
}

/* 6) DARK MODE versi floating glass */
[data-theme="dark"] header.bk-nav,
.dark header.bk-nav{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] header.bk-nav .nav-shell,
.dark header.bk-nav .nav-shell{
  background: linear-gradient(
    180deg,
    rgba(12, 20, 18, .62),
    rgba(12, 20, 18, .42)
  ) !important;
  border: 1px solid rgba(140, 253, 191, .18) !important;
  box-shadow:
    0 22px 60px rgba(0,0,0,.55),
    0 10px 26px rgba(0,0,0,.30) !important;
}

[data-theme="dark"] header.bk-nav .nav-shell:hover,
.dark header.bk-nav .nav-shell:hover{
  border-color: rgba(140, 253, 191, .28) !important;
  box-shadow:
    0 26px 72px rgba(0,0,0,.62),
    0 12px 30px rgba(0,0,0,.34) !important;
}

[data-theme="dark"] header.bk-nav .nav-links a:hover,
[data-theme="dark"] header.bk-nav .nav-links a.active,
.dark header.bk-nav .nav-links a:hover,
.dark header.bk-nav .nav-links a.active{
  background: rgba(140, 253, 191, 0.10) !important;
  border-color: rgba(140, 253, 191, 0.12);
}

[data-theme="dark"] header.bk-nav .dark-toggle,
.dark header.bk-nav .dark-toggle{
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(140,253,191,.16) !important;
}

/* 7) MOBILE: tetap floating + radius, tapi aman */
@media (max-width: 1000px){
  header.bk-nav{
    top: 10px;
  }

  header.bk-nav .bk-container{
    width: min(1240px, 94%);
  }

  header.bk-nav .nav-shell{
    border-radius: 18px !important; /* biar gak kepanjangan di mobile */
    padding: 0.70rem 0.85rem !important;
  }

  /* Mobile-menu posisinya menyesuaikan header floating */
  .mobile-menu{
    inset: 84px 10px auto 10px; /* sebelumnya 64px */
  }
}

/* =========================================================
   PRICING / BIAYA (Reguler + Bundling)
   Mengikuti theme customhome2.css (var --bg, --card, --ink, --muted, --brand, --brand2, --line, --soft, --accent)
========================================================= */

.section.pricing-section{
  padding: 72px 0;
}

.section-head{
  margin-bottom: 22px;
}

.section-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62));
  border: 1px solid rgba(12,90,75,.14);
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(3,20,17,.08);
  backdrop-filter: blur(var(--blur));
}

.section-badge i{ color: var(--brand2); }

.section-badge--bundling{
  border-color: rgba(242,184,43,.26);
  color: var(--ink);
}
.section-badge--bundling i{ color: var(--accent); }

.section-head h2,
.section-head h3{
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
  color: var(--ink);
}

.section-head .lead{
  color: var(--muted);
  max-width: 860px;
  margin: 0 auto;
}

/* Controls */
.pricing-controls{
  margin: 18px 0 18px;
  padding: 16px 16px;
  border-radius: 18px;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(35,209,153,.14), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(242,184,43,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 18px 45px rgba(2,6,23,.10);
  backdrop-filter: blur(10px);

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: center;
}

@media (max-width: 920px){
  .pricing-controls{ grid-template-columns: 1fr; }
}

.pc-label{
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.pc-select-wrap{
  position: relative;
  display: flex;
  align-items: center;
}

.pc-select-wrap i{
  position: absolute;
  left: 14px;
  color: var(--brand);
  opacity: .9;
}

.pc-select{
  width: 100%;
  appearance: none;
  border: 1px solid rgba(12,90,75,.18);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 14px 12px 44px;
  font-weight: 700;
  outline: none;
  transition: .18s ease;
  box-shadow: 0 10px 22px rgba(3,20,17,.06);
}

.pc-select:focus{
  border-color: rgba(35,209,153,.55);
  box-shadow: 0 0 0 4px rgba(35,209,153,.14), 0 12px 26px rgba(3,20,17,.10);
}

.pc-hint{
  margin-top: 10px;
  color: var(--muted);
  font-size: .95rem;
}

.pc-summary{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 920px){
  .pc-summary{ justify-content: flex-start; }
}

.pc-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(12,90,75,.12);
  color: var(--ink);
  font-weight: 700;
  font-size: .92rem;
}
.pc-pill i{ color: var(--brand2); }

/* Grid */
.pricing-grid{
  display:grid;
  gap: 16px;
  margin-top: 14px;
}

.pricing-grid--4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px){
  .pricing-grid--4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .pricing-grid--4{ grid-template-columns: 1fr; }
}

.pricing-grid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 820px){
  .pricing-grid--2{ grid-template-columns: 1fr; }
}

/* Card */
.price-card{
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(12,90,75,.12);
  box-shadow: 0 16px 38px rgba(3,20,17,.10);
  overflow:hidden;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.price-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(3,20,17,.14);
  border-color: rgba(35,209,153,.28);
}

.price-card.is-featured{
  border-color: rgba(242,184,43,.45);
  box-shadow: 0 22px 60px rgba(242,184,43,.18), 0 18px 44px rgba(3,20,17,.12);
}

.price-top{
  padding: 18px 18px 14px;
  background:
    radial-gradient(880px 360px at 12% 0%, rgba(35,209,153,.16), transparent 55%),
    radial-gradient(800px 420px at 88% 0%, rgba(242,184,43,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.74));
  border-bottom: 1px solid rgba(12,90,75,.10);
}

.price-label{
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.price-amount{
  font-weight: 950;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  margin-top: 10px;
  color: var(--brand);
}

.price-name{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
}

.price-tag{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--ink);
  background: rgba(35,209,153,.14);
  border: 1px solid rgba(35,209,153,.26);
}

.price-card.is-featured .price-tag{
  background: rgba(242,184,43,.16);
  border-color: rgba(242,184,43,.40);
}

.price-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .86rem;
  color: #1b1400;
  background: linear-gradient(180deg, rgba(242,184,43,.95), rgba(242,184,43,.70));
  border: 1px solid rgba(242,184,43,.55);
  box-shadow: 0 14px 26px rgba(242,184,43,.22);
}

.price-sub{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(12,90,75,.12);
  color: var(--ink);
  font-weight: 750;
  font-size: .9rem;
}
.chip i{ color: var(--accent); }

/* List */
.price-list{
  padding: 16px 18px 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.price-list li{
  list-style:none;
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  font-weight: 650;
}

.price-list .tick{
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(35,209,153,.14);
  border: 1px solid rgba(35,209,153,.20);
  flex: 0 0 auto;
}
.price-list .tick i{ color: var(--brand); }

.price-list .txt b{
  color: var(--ink);
  font-weight: 900;
}

/* List grid for bundling */
.price-list--grid{
  display:grid;
  grid-template-columns: 1fr;
}
.price-list--grid .tick{
  background: rgba(242,184,43,.12);
  border-color: rgba(242,184,43,.22);
}
.price-list--grid .tick i{ color: var(--accent); }

/* Action */
.price-action{
  padding: 0 18px 18px;
}

.price-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration:none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #0a4a3b);
  box-shadow: 0 16px 30px rgba(12,90,75,.18);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.price-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(12,90,75,.22);
  filter: brightness(1.02);
}

.price-btn--accent{
  color: #1b1400;
  background: linear-gradient(135deg, var(--accent), #ffd36a);
  box-shadow: 0 18px 36px rgba(242,184,43,.22);
}

.price-btn--accent:hover{
  box-shadow: 0 24px 52px rgba(242,184,43,.26);
}

/* Empty */
.pricing-empty{
  margin-top: 12px;
}
.feature-card{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 16px 18px;
}
.feature-card .big-icon{
  font-size: 1.4rem;
  color: var(--brand2);
}

/* Bundling divider + head */
.bundling-divider{
  margin: 34px 0 16px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(12,90,75,.18), transparent);
}

.bundling-head{
  margin-top: 6px;
}

/* Bundling card tweaks */
.price-card--bundling .price-amount{
  color: var(--ink);
}
.price-card--bundling .price-top{
  background:
    radial-gradient(880px 360px at 12% 0%, rgba(242,184,43,.14), transparent 55%),
    radial-gradient(800px 420px at 88% 0%, rgba(35,209,153,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
}

/* Extra info */
.bundling-extra{
  margin-top: 16px;
  padding: 16px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(12,90,75,.10);
  box-shadow: 0 14px 30px rgba(3,20,17,.08);
}

.bundling-extra__title{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 950;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.bundling-extra__title .pin{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background: rgba(242,184,43,.14);
  border: 1px solid rgba(242,184,43,.26);
}
.bundling-extra__title .pin i{ color: var(--accent); }

.bundling-extra__items{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 820px){
  .bundling-extra__items{ grid-template-columns: 1fr; }
}

.extra-item{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(12,90,75,.10);
}

.extra-label{
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}

.extra-value{
  color: var(--muted);
  font-weight: 650;
}
.extra-note{
  display:inline-block;
  margin-left: 6px;
  font-weight: 650;
  opacity: .95;
}

/* Dark mode adjustments */
[data-theme="dark"] .pricing-controls,
.dark .pricing-controls{
  background: linear-gradient(180deg, rgba(12,20,18,.72), rgba(12,20,18,.56));
  border-color: rgba(255,255,255,.08);
}

[data-theme="dark"] .pc-select,
.dark .pc-select{
  background: rgba(12,20,18,.78);
  border-color: rgba(255,255,255,.10);
  color: var(--ink);
}

[data-theme="dark"] .price-card,
.dark .price-card{
  background: linear-gradient(180deg, rgba(12,20,18,.78), rgba(12,20,18,.62));
  border-color: rgba(255,255,255,.08);
}

[data-theme="dark"] .price-top,
.dark .price-top{
  border-bottom-color: rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(12,20,18,.78), rgba(12,20,18,.62));
}

[data-theme="dark"] .chip,
.dark .chip,
[data-theme="dark"] .pc-pill,
.dark .pc-pill,
[data-theme="dark"] .bundling-extra,
.dark .bundling-extra,
[data-theme="dark"] .extra-item,
.dark .extra-item{
  background: rgba(12,20,18,.72);
  border-color: rgba(255,255,255,.08);
}

/* =========================
   Floating WhatsApp (Right Bottom)
========================= */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px; /* ✅ kanan bawah */
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  text-decoration: none;

  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.wa-float i{
  font-size: 22px;
  line-height: 1;
}

.wa-float .wa-text{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
}

.wa-float:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
}

/* ✅ Go Up button: geser ke atas supaya gak numpuk sama WA */
.go-up-btn{
  right: 18px;
  bottom: 86px;
}

/* Responsive */
@media (max-width: 520px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    padding: 11px 12px;
  }
  .wa-float .wa-text{ display: none; }
  .wa-float i{ font-size: 24px; }

  .go-up-btn{
    right: 14px;
    bottom: 78px;
  }
}
