:root {
    /* Color Palette - Vibrant Purple & White */
    --primary-purple: #7B2CBF;
    --dark-purple: #3C096C;
    --light-purple: #E0AAFF;
    --accent-purple: #9D4EDD;
    --white: #FFFFFF;
    --text-dark: #10002B;
    --text-muted: #5a4b75;
}

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

body {
    font-family: 'Outfit', sans-serif;
    /* Desktop constraint */
    width: 100vw;
    height: 100vh;
    overflow: hidden; 
    background-color: var(--white);
    color: var(--text-dark);
}

.split-container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

/* ============================
   KIRI: Area Putih
   ============================ */
.split.left {
    flex: 1;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

/* Glass/Glow Effect background for left */
.background-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.split.left .content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 550px;
    width: 100%;
    animation: fadeSlideRight 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(123, 44, 191, 0.3);
}

.logo-name {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.hero-title span {
    color: var(--primary-purple);
}

.vision-mission {
    background: rgba(157, 78, 221, 0.04);
    border-left: 4px solid var(--primary-purple);
    padding: 2rem;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    position: relative;
}

.badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-purple);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 400;
}


/* ============================
   KANAN: Area Ungu
   ============================ */
.split.right {
    flex: 1;
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

/* Ornamen */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.circle-1 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -200px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 20%;
}

.right-content {
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeSlideLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.features-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--light-purple);
    border-radius: 2px;
}

.features-list {
    list-style: none;
    margin-bottom: 3.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.features-list li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    background: rgba(224, 170, 255, 0.15);
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: var(--light-purple);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

/* ============================
   Action & Buttons
   ============================ */
.action-section {
    margin-top: 2rem;
}

.action-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 2rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    flex: 1;
    text-align: center;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-purple);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: var(--white);
}


/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ============================
   RESPONSIVE MOBILE (Adjust rapih saja)
   ============================ */
@media screen and (max-width: 992px) {
    body {
        overflow-y: auto; /* Allow scroll on mobile */
        height: auto;
    }

    .split-container {
        flex-direction: column;
        height: auto;
    }

    .split {
        width: 100vw;
        min-height: 100vh;
        padding: 4rem 2rem;
    }

    .split.left {
        padding-top: 5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 1rem;
    }
}
