/* ============================================
   VOLTCREW - Modern Tech Theme (FIXED CENTER)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;700&display=swap');

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a192f;
    color: #ccd6f6;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #e6f1ff;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #64ffda;
    border-radius: 2px;
    margin: 12px auto 0;
}

.section-subtitle {
    color: #8892b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid #64ffda;
    color: #64ffda;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.15);
}

.btn-solid {
    background: #64ffda;
    color: #0a192f;
    border: 1px solid #64ffda;
}

.btn-solid:hover {
    background: transparent;
    color: #64ffda;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #64ffda;
    opacity: 0.3;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(2, 12, 27, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #e6f1ff;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.logo span.highlight { color: #64ffda; }

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    color: #ccd6f6;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover { color: #64ffda; }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #64ffda;
    transition: width 0.3s ease;
    border-radius: 1px;
}

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

.nav-menu a.active { color: #64ffda; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #64ffda;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-greeting {
    font-family: 'JetBrains Mono', monospace;
    color: #64ffda;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-greeting::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #64ffda;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #e6f1ff;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero-title .highlight {
    color: #64ffda;
    text-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

.hero-tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: #8892b0;
    font-style: italic;
    margin-bottom: 24px;
    min-height: 2em;
}

.hero-tagline .cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: #64ffda;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-desc {
    color: #8892b0;
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #8892b0;
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid #8892b0;
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #64ffda;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; position: relative; }

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

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual .electric-circle {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: rotate 20s linear infinite;
}

.about-visual .electric-circle::before,
.about-visual .electric-circle::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(100, 255, 218, 0.1);
    border-radius: 50%;
}

.about-visual .electric-circle::before {
    width: 380px;
    height: 380px;
    animation: rotate 25s linear infinite reverse;
}

.about-visual .electric-circle::after {
    width: 460px;
    height: 460px;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-visual .bolt-icon {
    font-size: 6rem;
    color: #ffd700;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #e6f1ff;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text p {
    color: #8892b0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #64ffda;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #8892b0;
    margin-top: 4px;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: #112240;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(100, 255, 218, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #0a192f;
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #64ffda;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(2, 12, 27, 0.6);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon { transform: scale(1.2); }

.service-card h3 {
    color: #e6f1ff;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us { padding: 100px 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(100, 255, 218, 0.2);
    background: rgba(17, 34, 64, 0.8);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    color: #ffd700;
}

.feature-text h4 {
    color: #e6f1ff;
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-text p {
    color: #8892b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: #112240;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #e6f1ff;
    margin-bottom: 20px;
}

.contact-info p {
    color: #8892b0;
    margin-bottom: 16px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding: 16px;
    background: #0a192f;
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateX(5px);
}

.contact-item-icon {
    font-size: 1.5rem;
    color: #64ffda;
}

.contact-item-text {
    color: #ccd6f6;
    font-size: 0.95rem;
}

.contact-item-text a { color: #64ffda; }
.contact-item-text a:hover { text-decoration: underline; }

.contact-form {
    background: #0a192f;
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    padding: 36px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    color: #ccd6f6;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #112240;
    border: 1px solid rgba(100, 255, 218, 0.15);
    border-radius: 6px;
    color: #e6f1ff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: #020c1b;
    border-top: 1px solid rgba(100, 255, 218, 0.08);
    padding: 40px 0 30px;
    text-align: center;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e6f1ff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-logo .highlight { color: #64ffda; }

.footer-tagline {
    color: #8892b0;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8892b0;
    font-size: 0.9rem;
}

.footer-links a:hover { color: #64ffda; }

.footer-copy {
    color: #8892b0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(100, 255, 218, 0.08);
    padding-top: 20px;
    margin-top: 20px;
}

/* ===== BISNISPEDIA ===== */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #0a192f 0%, #112240 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #e6f1ff;
    margin-bottom: 12px;
    font-weight: 800;
}

.page-header p {
    color: #64ffda;
    font-size: 1.1rem;
    font-style: italic;
}

.bisnispedia-content { padding: 60px 0 100px; }

.materi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.materi-card {
    background: #112240;
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.materi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #64ffda;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.materi-card:hover::before { transform: scaleY(1); }

.materi-card:hover {
    border-color: rgba(100, 255, 218, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(2, 12, 27, 0.5);
}

.materi-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #64ffda;
    margin-bottom: 12px;
    display: block;
}

.materi-card h2 {
    color: #e6f1ff;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.materi-card p {
    color: #8892b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.materi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.materi-tag {
    display: inline-block;
    background: rgba(100, 255, 218, 0.08);
    color: #64ffda;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.15);
}

.materi-placeholder {
    margin-top: 20px;
    padding: 16px;
    background: rgba(10, 25, 47, 0.6);
    border: 1px dashed rgba(100, 255, 218, 0.2);
    border-radius: 6px;
    color: #8892b0;
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid,
    .contact-wrapper { grid-template-columns: 1fr; }

    .about-visual .electric-circle { width: 220px; height: 220px; }
    .about-visual .electric-circle::before { width: 280px; height: 280px; }
    .about-visual .electric-circle::after { width: 340px; height: 340px; }
    .about-visual .bolt-icon { font-size: 4rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 25, 47, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(100, 255, 218, 0.1);
    }

    .nav-menu.active { right: 0; }
    .nav-menu a { font-size: 1.1rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
    .about-stats { grid-template-columns: 1fr; }
    .services-grid,
    .features-grid,
    .materi-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 16px 60px; }
    .about, .services, .why-us, .contact, .bisnispedia-content { padding: 60px 0; }
    .service-card, .materi-card { padding: 28px 20px; }
}


/* ============================================
   BISNISPEDIA PAGE - White Theme (D&DKits Style)
   ============================================ */

body.bisnispedia-page {
    background: #f8f9fa;
    color: #333;
}

body.bisnispedia-page .navbar {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

body.bisnispedia-page .navbar.scrolled {
    background: rgba(255,255,255,0.98);
}

body.bisnispedia-page .logo {
    color: #1a1a2e;
}

body.bisnispedia-page .nav-menu a {
    color: #495057;
}

body.bisnispedia-page .nav-menu a:hover,
body.bisnispedia-page .nav-menu a.active {
    color: #0a192f;
}

body.bisnispedia-page .nav-menu a::after {
    background: #0a192f;
}

body.bisnispedia-page .menu-toggle span {
    background: #0a192f;
}

/* Page Header Bisnispedia */
.page-header-bisnispedia {
    padding: 140px 0 40px;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.page-header-bisnispedia h1 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: #1a1a2e;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-header-bisnispedia .accent-line {
    display: inline-block;
    width: 4px;
    height: 40px;
    background: #dc3545;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Tugas Grid */
.tugas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 40px 0 80px;
}

/* Tugas Card */
.tugas-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tugas-card:hover {
    border-color: #0a192f;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.tugas-card h2 {
    color: #1a1a2e;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tugas-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tugas-link {
    color: #0a192f;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.tugas-link:hover {
    color: #64ffda;
    gap: 8px;
}

/* CTA Section */
.cta-section {
    background: #0a192f;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #e6f1ff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: #8892b0;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

/* Footer untuk bisnispedia page */
body.bisnispedia-page .footer {
    background: #fff;
    border-top: 1px solid #e9ecef;
}

body.bisnispedia-page .footer-logo {
    color: #1a1a2e;
}

body.bisnispedia-page .footer-tagline {
    color: #6c757d;
}

body.bisnispedia-page .footer-links a {
    color: #6c757d;
}

body.bisnispedia-page .footer-links a:hover {
    color: #0a192f;
}

body.bisnispedia-page .footer-copy {
    color: #adb5bd;
    border-top-color: #e9ecef;
}

/* Responsive */
@media (max-width: 768px) {
    .tugas-grid {
        grid-template-columns: 1fr;
    }

    .page-header-bisnispedia {
        padding: 120px 0 30px;
    }

    .page-header-bisnispedia h1 {
        font-size: 1.5rem;
    }

    .page-header-bisnispedia .accent-line {
        height: 32px;
    }

    .tugas-card {
        padding: 24px;
    }
}
