:root {
    --bg-color: #060b18;
    --primary-glow: #00d2ff;
    --secondary-glow: #0066ff;
    --text-color: #ffffff;
    --text-muted: #a0aec0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    
    /* Menggunakan gambar workstation baru */
    background-image: linear-gradient(to bottom, rgba(6, 11, 24, 0.75), rgba(6, 11, 24, 0.9)), url('background_bit.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Header */
header {
    width: 100%;
    max-width: 1200px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-glow);
    text-shadow: 0 0 10px var(--secondary-glow);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.nav-links {
    font-size: 0.9rem;
    color: var(--text-muted);
    word-spacing: 5px;
}

.nav-links span {
    color: var(--text-color);
}

/* Main Container */
.container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    text-align: center;
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 24px;
    border-radius: 50px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid var(--secondary-glow);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.title span {
    color: var(--primary-glow);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 10px;
    font-weight: 400;
}

.description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Bar */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

.progress-bar-outer {
    flex: 1;
    height: 26px;
    border-radius: 50px;
    border: 1px solid var(--secondary-glow);
    background: rgba(0, 0, 0, 0.4);
    padding: 2px;
    overflow: hidden;
}

.progress-bar-inner {
    width: 70%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--secondary-glow), var(--primary-glow));
    box-shadow: 0 0 10px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.progress-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Grid Layanan / Kategori */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.service-card:hover {
    border-color: var(--primary-glow);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.2);
}

.service-card i {
    font-size: 1.8rem;
    color: var(--primary-glow);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.8rem;
    font-weight: 600;
}

/* Stay Tuned Box */
.stay-tuned-box {
    background: rgba(6, 15, 37, 0.7);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 650px;
    margin: 0 auto 40px auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stay-tuned-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.envelope-icon {
    position: relative;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid var(--secondary-glow);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-glow);
}

.envelope-icon::after {
    content: '1';
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff3366;
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.stay-tuned-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.stay-tuned-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.subscribe-form {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    align-items: center;
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.9rem;
}

.subscribe-form input::placeholder {
    color: #4a5568;
}

.subscribe-btn {
    background: linear-gradient(90deg, var(--secondary-glow), #00a2ff);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
    transition: opacity 0.2s;
}

.subscribe-btn:hover {
    opacity: 0.9;
}

/* Pillars / Fitur Bawah */
.pillars-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pillar-tag {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 8px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.pillar-tag i {
    font-size: 0.9rem;
}
.pillar-tag.blue i { color: #00a2ff; }
.pillar-tag.yellow i { color: #ffbb00; }
.pillar-tag.purple i { color: #b300ff; }
.pillar-tag.green i { color: #00ff66; }

/* Quotes */
.quote-section {
    font-style: italic;
    color: #cbd5e1;
    max-width: 500px;
    margin: 0 auto 50px auto;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.quote-section span {
    color: var(--primary-glow);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Footer */
footer {
    width: 100%;
    border-top: 1px solid var(--card-border);
    padding: 30px 20px;
    background: rgba(4, 8, 19, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-info strong {
    color: white;
}

.social-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.social-icons a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--primary-glow);
}

.copyright {
    font-size: 0.75rem;
    color: #4a5568;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .title { font-size: 2.3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    header { flex-direction: column; gap: 15px; text-align: center; }
    .subscribe-form { flex-direction: column; border-radius: 20px; padding: 15px; gap: 10px; }
    .subscribe-btn { width: 100%; justify-content: center; }
    .subscribe-form input { text-align: center; width: 100%; }
}