/* ====================== */
/* === CSS VARIABLES === */
/* ====================== */
:root {
    --color-bg: #0a0718;
    --color-surface: rgba(18, 14, 33, 0.7);
    --color-text: #eae9f2;
    --color-text-light: #a6a2c9;
    --color-primary: #8b5cf6;
    --color-primary-light: #b89aff;
    --color-secondary: #d946ef;
    --color-accent: #f472b6;
    --color-accent-alt: #fcd34d;
    --color-pastel-green: #2dd4bf;
    --color-pastel-pink: #f9a8d4;
    --color-pastel-purple: #a78bfa;
    --color-pastel-yellow: #fcd34d;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-soft: 0 20px 60px rgba(139, 92, 246, 0.25);
    --font-serif: 'Space Grotesk', sans-serif;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ====================== */
/* === RESET & BASE === */
/* ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(217, 70, 239, 0.1) 0%, transparent 40%);
}

::selection {
    background-color: var(--color-primary-light);
    color: #000;
}

/* ====================== */
/* === TYPOGRAPHY === */
/* ====================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.3em;
    background: linear-gradient(90deg, var(--color-pastel-purple), var(--color-secondary));
    z-index: -1;
    border-radius: 2px;
    opacity: 0.4;
}

/* ====================== */
/* === DECORATIVE ELEMENTS === */
/* ====================== */
.decorative-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-pastel-purple);
    top: 10%;
    right: 5%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 20%;
    left: 5%;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--color-pastel-green);
    top: 50%;
    right: 15%;
}

.floating-sticker {
    position: absolute;
    font-size: 2rem;
    animation: float 15s infinite ease-in-out alternate;
    opacity: 0.3;
}

.sticker-1 {
    top: 20%;
    left: 5%;
}

.sticker-2 {
    top: 60%;
    right: 10%;
}

.sticker-3 {
    bottom: 10%;
    left: 15%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* ====================== */
/* === NAVIGATION UPDATED === */
/* ====================== */
.navbar {
    background: transparent !important; /* Transparant saat di atas */
    backdrop-filter: none;
    padding: 1.25rem 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 7, 24, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Brand */
.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    font-size: 1.3rem;
}

.brand-icon {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    transform: rotate(90deg);
}

/* Navbar Nav Container */
.navbar-nav {
    background: transparent;
    padding: 0 !important;
    border-radius: 0;
    border: none;
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

/* Nav Links */
.nav-link {
    font-family: var(--font-mono) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-full) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    position: relative !important;
    overflow: hidden !important;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(139, 92, 246, 0.15) !important;
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Dropdown Toggle */
.nav-link.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.nav-link.dropdown-toggle:hover::after {
    transform: translateY(2px);
}

.dropdown.show .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Menu - Glassmorphism */
.dropdown-menu {
    background: transparent !important;
    border: none !important;
    padding: 0.5rem !important;
    margin-top: 0.5rem !important;
    min-width: 240px;
}

.glass-dropdown {
    background: rgba(18, 14, 33, 0.8) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.2) inset !important;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    font-family: var(--font-sans) !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 1rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border-radius: var(--radius-md) !important;
    transition: all 0.2s ease !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.2) !important;
    color: white !important;
    transform: translateX(5px);
}

.dropdown-divider {
    border-top: 1px solid rgba(139, 92, 246, 0.3) !important;
    margin: 0.5rem 0 !important;
}

/* Underline animation for desktop */
@media (min-width: 992px) {
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
        transform: translateX(-50%);
        transition: width 0.3s ease;
        opacity: 0;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 70%;
        opacity: 1;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%);
        width: 6px;
        height: 6px;
        background: var(--color-primary);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.2);
    }
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar {
        background: transparent !important;
    }
    
    .navbar.scrolled {
        background: rgba(10, 7, 24, 0.95) !important;
    }

    .navbar-nav {
        background: rgba(10, 7, 24, 0.8) !important;
        backdrop-filter: blur(16px) !important;
        flex-direction: column !important;
        padding: 80px 1rem 1.5rem !important;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
        border: 1px solid rgba(139, 92, 246, 0.2);
        margin-top: 0.5rem !important;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        z-index: 1000;
    }

    .nav-item {
        width: 100%;
        margin: 0.25rem 0 !important;
        position: relative;
    }

    .nav-link {
        font-size: 1rem !important;
        padding: 0.75rem 1rem !important;
        width: 100%;
        text-align: left;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(139, 92, 246, 0.1);
        border-radius: var(--radius-md) !important;
    }

    /* Dropdown Toggle Styling */
    .nav-link.dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-link.dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.5em;
        vertical-align: middle;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        transition: transform 0.3s ease;
        float: none;
        margin-top: 0;
    }

    .nav-link.dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    /* Dropdown Menu Styling - FIXED VERSION */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        padding: 0 0 0 1rem !important;
        margin: 0.25rem 0 !important;
        box-shadow: none !important;
        display: none;
        transition: none;
        width: 100%;
        float: none;
    }

    .dropdown-menu.show {
        display: block !important;
    }

    /* Glass Dropdown Styling */
    .glass-dropdown {
        background: rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(8px) !important;
        border: 1px solid rgba(139, 92, 246, 0.2) !important;
        border-radius: var(--radius-md) !important;
        padding: 0.5rem !important;
        width: 100%;
    }

    .dropdown-item {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        border-radius: var(--radius-sm) !important;
        transition: all 0.2s ease !important;
        white-space: normal;
        word-break: break-word;
    }

    .dropdown-item:hover {
        background: rgba(139, 92, 246, 0.3) !important;
        color: white !important;
        transform: translateX(5px);
    }

    .dropdown-divider {
        border-top: 1px solid rgba(139, 92, 246, 0.3) !important;
        margin: 0.5rem 0 !important;
    }

    /* Navbar Toggler */
    .navbar-toggler {
        border: none !important;
        padding: 0.5rem !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: var(--radius-md) !important;
        background: rgba(139, 92, 246, 0.15) !important;
        transition: all 0.3s ease !important;
    }

    .navbar-toggler:hover {
        background: rgba(139, 92, 246, 0.3) !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3) !important;
        outline: none !important;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* Small mobile adjustments */
    @media (max-width: 576px) {
        .navbar-brand {
            font-size: 1.2rem;
        }
        
        .brand-icon {
            font-size: 1rem;
        }
        
        .dropdown-item {
            padding: 0.6rem 0.8rem !important;
            font-size: 0.85rem !important;
        }
    }
}

/* Small mobile adjustments */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        font-size: 1rem;
    }
}

/* ====================== */
/* === CONTAINER === */
/* ====================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

/* ====================== */
/* === GLASS CARD STYLE === */
/* ====================== */
.glass-card {
    background: rgba(18, 14, 33, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.7);
}

/* ====================== */
/* === HERO SECTION - NEW MODERN LAYOUT === */
/* ====================== */
.hero {
    min-height: 100vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(217, 70, 239, 0.08) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 5;
}

/* ====================== */
/* === HERO CONTENT === */
/* ====================== */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Badge with pulse animation */
.hero-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}

.badge-icon {
    font-size: 1rem;
    animation: float 3s infinite ease-in-out;
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    filter: blur(8px);
    opacity: 0.3;
    animation: pulse 2s infinite;
    z-index: 1;
}

/* Title with gradient text */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #d946ef, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(217, 70, 239, 0.3));
    filter: blur(4px);
    border-radius: 4px;
    z-index: -1;
}

/* Description with animated line */
.hero-description-wrapper {
    margin-bottom: var(--space-md);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 550px;
}

.hero-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    margin-top: var(--space-sm);
    animation: expandLine 2s infinite alternate;
}

@keyframes expandLine {
    0% { width: 80px; opacity: 0.5; }
    100% { width: 120px; opacity: 1; }
}

/* Info badges */
.hero-info-badges {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.info-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.1);
}

.info-badge i {
    color: var(--color-primary);
    font-size: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* CTA Buttons */
.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(139, 92, 246, 0.6);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
}

.btn-glow:hover .btn-shine {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(139, 92, 246, 0.5);
    position: relative;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: var(--radius-full);
}

.btn-outline:hover {
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-hover-slide {
    position: relative;
    overflow: hidden;
}

/* Social proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    overflow: hidden;
    margin-right: -10px;
    transition: transform 0.3s ease;
}

.avatar-item:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-count {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 5px;
    border: 2px solid white;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.social-proof-text strong {
    color: white;
}

/* ====================== */
/* === HERO SECTION - CLEAN VERSION WITH CODE SNIPPET === */
/* ====================== */
.hero {
    min-height: 100vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(217, 70, 239, 0.08) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 5;
}

/* ====================== */
/* === HERO CONTENT === */
/* ====================== */
.hero-content {
    position: relative;
    z-index: 10;
}

/* Badge with pulse animation */
.hero-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}

.badge-icon {
    font-size: 1rem;
    animation: float 3s infinite ease-in-out;
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-full);
    background: var(--color-primary);
    filter: blur(8px);
    opacity: 0.3;
    animation: pulse 2s infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* Title with gradient text - SHORTER */
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(217, 70, 239, 0.2));
    filter: blur(4px);
    border-radius: 4px;
    z-index: -1;
}

/* Description with animated line */
.hero-description-wrapper {
    margin-bottom: var(--space-md);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.5;
    max-width: 500px;
}

.hero-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    margin-top: var(--space-sm);
    animation: expandLine 3s infinite alternate;
}

@keyframes expandLine {
    0% { width: 60px; opacity: 0.5; }
    100% { width: 100px; opacity: 1; }
}

/* Info badges */
.hero-info-badges {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.info-badge:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.1);
}

.info-badge i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* CTA Buttons - SLIGHTLY SMALLER */
.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(139, 92, 246, 0.6);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(139, 92, 246, 0.5);
    position: relative;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: var(--radius-full);
}

.btn-outline:hover {
    border-color: transparent;
    color: white;
}

.btn-outline:hover::before {
    width: 100%;
}

/* Social proof - SMALLER */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    overflow: hidden;
    margin-right: -10px;
    transition: transform 0.3s ease;
}

.avatar-item:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 10;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 5px;
    border: 2px solid white;
}

.social-proof-text {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.social-proof-text strong {
    color: white;
}

/* ====================== */
/* === HERO VISUAL - SMALLER IMAGE WITH CODE SNIPPET === */
/* ====================== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* MADE SMALLER */
    margin: 0 auto;
}

.image-main {
    position: relative;
    z-index: 5;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 5;
    animation: floatImage 6s infinite ease-in-out;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.image-glow {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--color-pastel-purple), var(--color-secondary));
    border-radius: var(--radius-xl);
    filter: blur(40px);
    opacity: 0.25;
    z-index: 1;
    animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.2; filter: blur(30px); }
    100% { opacity: 0.35; filter: blur(45px); }
}

/* ====================== */
/* === CODE SNIPPET - PRESERVED === */
/* ====================== */
.code-snippet {
    position: absolute;
    bottom: -20px;
    left: -15px;
    background: rgba(10, 7, 24, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: 12px;
    z-index: 15;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    width: 200px;
    animation: floatCode 7s infinite ease-in-out;
}

@keyframes floatCode {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(8px) translateY(-8px); }
}

.code-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.code-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f56;
}

.code-dots span:nth-child(2) {
    background: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background: #27c93f;
}

.code-snippet pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: #a6a2c9;
}

.code-snippet code {
    color: #b89aff;
}

/* ====================== */
/* === SCROLL INDICATOR === */
/* ====================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 50px; opacity: 1; }
    100% { height: 0; opacity: 0; transform: translateY(15px); }
}

/* ====================== */
/* === PARTICLES - SUBTLE === */
/* ====================== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat 15s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 20s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-duration: 25s;
    width: 5px;
    height: 5px;
    background: var(--color-secondary);
}

.particle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-duration: 18s;
    background: var(--color-accent);
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ====================== */
/* === RESPONSIVE === */
/* ====================== */
@media (max-width: 1200px) {
    .hero-grid {
        gap: var(--space-lg);
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-info-badges {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    /* Hide code snippet on tablet */
    .code-snippet {
        display: none;
    }
    
    .image-wrapper {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-info-badges {
        flex-direction: column;
        align-items: center;
    }

    .scroll-indicator {
        display: none;
    }
    
    .image-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 130px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .avatar-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 10px;
    }
    
    .image-wrapper {
        max-width: 250px;
    }
}

/* ====================== */
/* === CLIENTS / TECH STACK SECTION === */
/* ====================== */
.clients {
    padding: var(--space-xl) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: center;
}

.clients-content {
    position: relative;
}

.clients-badge {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.clients-title {
    margin-bottom: var(--space-sm);
    color: white;
}

.clients-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 300px;
}

.clients-slider-container {
    position: relative;
    overflow: hidden;
    padding: var(--space-md) 0;
}

.clients-swiper {
    overflow: hidden;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.clients-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: 0 var(--space-sm);
}

.client-item {
    background: rgba(18, 14, 33, 0.5);
    backdrop-filter: blur(8px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.client-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.client-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-image {
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: var(--transition-base);
}

.client-item:hover .client-image {
    filter: grayscale(0%);
    opacity: 1;
}

.clients-swiper .swiper-pagination,
.clients-swiper .swiper-button-next,
.clients-swiper .swiper-button-prev {
    display: none !important;
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .clients-content {
        text-align: center;
    }

    .clients-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

    .clients-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-group {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .client-item {
        height: 120px;
        padding: var(--space-md);
    }

    .client-image {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-item {
        height: 100px;
        padding: var(--space-sm);
    }

    .client-image {
        max-height: 50px;
    }
}

/* ====================== */
/* === ABOUT ME SECTION === */
/* ====================== */
.about {
    padding: var(--space-xl) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.about-description {
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.about-text.lead {
    font-size: 1.25rem;
    color: var(--color-text);
    font-weight: 500;
}

.about-quote {
    position: relative;
    background: rgba(139, 92, 246, 0.05);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--color-primary);
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-primary-light);
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.2;
}

.about-quote p {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text);
    position: relative;
    z-index: 1;
    margin: 0;
}

.about-expertise {
    margin-bottom: var(--space-lg);
}

.about-expertise h4 {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.expertise-tag {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    padding: var(--space-xs) var(--space-md);
    background: rgba(18, 14, 33, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-text);
    transition: all var(--transition-base);
    cursor: default;
}

.expertise-tag:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.about-cta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    margin-bottom: var(--space-xl);
}

.about-image-main {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-base);
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image-glow {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, 
        var(--color-pastel-purple), 
        var(--color-secondary));
    border-radius: var(--radius-xl);
    filter: blur(30px);
    opacity: 0.3;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(18, 14, 33, 0.8);
    backdrop-filter: blur(8px);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.3);
    z-index: 3;
    animation: floatBadge 6s infinite ease-in-out;
}

.badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.875rem;
    color: var(--color-text);
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ====================== */
/* === CLIENTS GRID 3 KOLOM (dalam about) === */
/* ====================== */
.about-clients {
    margin-top: var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 3;
    background: rgba(18, 14, 33, 0.4);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.clients-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.clients-label span {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.label-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.client-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.client-card {
    background: rgba(18, 14, 33, 0.6);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100%;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.client-card:hover .client-logo-wrapper img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.clients-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: var(--space-md);
    font-style: italic;
}

@media (max-width: 1024px) {
    .about-grid {
        gap: var(--space-lg);
    }
    
    .floating-badge {
        display: none;
    }
    
    .client-card {
        height: 90px;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-image-main {
        max-width: 350px;
    }
    
    .about-cta {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .about {
        padding: var(--space-lg) 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text.lead {
        font-size: 1.125rem;
    }
    
    .expertise-tags {
        gap: var(--space-xs);
    }
    
    .expertise-tag {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .about-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .about-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .client-grid-3col {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }
    
    .client-card {
        height: 80px;
        padding: var(--space-sm);
    }
}

@media (max-width: 640px) {
    .client-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================== */
/* === FEATURES / EXPERTISE SECTION (3x2 Grid) === */
/* ====================== */
.features {
    padding: var(--space-xl) 0;
    background: transparent;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.section-badge {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-card {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.5rem;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    color: var(--color-text-light);
}

.feature-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--color-pastel-purple);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* ====================== */
/* === CREATIVE / CTA SECTION === */
/* ====================== */
.creative {
    padding: var(--space-xl) 0;
    background: transparent;
}

.creative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.creative-badge {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.creative h2 {
    margin-bottom: var(--space-md);
}

.creative-highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.creative-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.3em;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    z-index: -1;
    border-radius: 2px;
    opacity: 0.3;
}

.creative-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-xs);
}

.creative-visual {
    position: relative;
    height: 400px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-item {
    position: absolute;
    background: rgba(18, 14, 33, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.visual-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.item-1 {
    width: 180px;
    height: 120px;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--color-pastel-purple), var(--color-primary));
    transform: rotate(-5deg);
}

.item-2 {
    width: 200px;
    height: 140px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(3deg);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
}

.item-3 {
    width: 160px;
    height: 100px;
    bottom: 0;
    left: 40%;
    transform: rotate(-2deg);
    background: linear-gradient(135deg, var(--color-pastel-green), var(--color-primary-light));
}

.visual-label {
    font-family: var(--font-mono);
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.visual-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--color-pastel-purple);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media (max-width: 1024px) {
    .creative-grid {
        gap: var(--space-lg);
    }

    .creative-visual {
        height: 350px;
    }

    .visual-item {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .creative-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .creative-visual {
        height: 300px;
        order: -1;
    }

    .visual-item {
        transform: scale(0.8);
    }

    .creative-stats {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}

/* ====================== */
/* === PROCESS SECTION === */
/* ====================== */
.process {
    padding: var(--space-xl) 0;
    background: transparent;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.process-card {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    transition: var(--transition-base);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 30px rgba(139, 92, 246, 0.3);
}

.process-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.process-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.process-tags span {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.process-cta {
    text-align: center;
    margin-top: var(--space-lg);
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* === ACHIEVMENTS SECTION === */
/* ====================== */
/* Achievements Section */
.achievements {
    padding: var(--space-xl) 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.achievement-card {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    transition: var(--transition-base);
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 25px rgba(139, 92, 246, 0.2);
}

.achievement-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.achievement-content h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: white;
}

.achievement-org {
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.achievement-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(18, 14, 33, 0.4);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievement-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ====================== */
/* === OPEN SOURCE SECTION === */
/* ====================== */
/* Open Source Section */
.opensource {
    padding: var(--space-xl) 0;
}

.opensource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.repo-card {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-decoration: none;
    transition: var(--transition-base);
    display: block;
}

.repo-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 30px rgba(139, 92, 246, 0.3);
}

.repo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.repo-header i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.repo-name {
    font-weight: 600;
    color: white;
    flex: 1;
}

.repo-stars {
    font-size: 0.8rem;
    color: var(--color-accent-alt);
}

.repo-desc {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
}

.repo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.repo-tags span {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.opensource-footer {
    text-align: center;
    margin-top: var(--space-lg);
}

@media (max-width: 1024px) {
    .opensource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .opensource-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* === FAQ SECTION - SMOOTH ANIMATION === */
/* ====================== */
.faq {
    padding: var(--space-xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: var(--space-lg) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.faq-question {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 2;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    flex: 1;
    padding-right: 15px;
}

.faq-item:hover .faq-question h3 {
    color: var(--color-primary);
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(135deg);
    background: var(--color-primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    padding: 0 var(--space-md);
    overflow: hidden;
    color: var(--color-text-light);
    border-top: 0 solid rgba(139, 92, 246, 0.2);
    will-change: max-height, padding, border;
    line-height: 1.6;
    transition: none; /* GSAP akan handle animasi */
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Active state styling */
.faq-item.active {
    border-color: var(--color-primary);
    background: rgba(18, 14, 33, 0.8);
}

/* ====================== */
/* === BLOG LAYOUT WITH SIDEBAR === */
/* ====================== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

/* Main Blog Grid */
.blog-main {
    width: 100%;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

/* Featured Post (first post bisa dibuat lebih besar) */
.insight-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.insight-card.featured .insight-image {
    height: 100%;
    min-height: 300px;
}

.insight-card.featured .insight-content {
    padding: var(--space-lg);
}

.insight-card.featured h3 {
    font-size: 1.5rem;
}

/* Insight Card Enhancements */
.insight-card {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    position: relative;
}

.insight-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 30px rgba(139, 92, 246, 0.3);
}

.insight-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.insight-card.featured .insight-image {
    height: 100%;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

/* Badges */
.insight-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.insight-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    z-index: 2;
}

.insight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: all var(--transition-base);
    backdrop-filter: blur(4px);
    border: 2px solid white;
    z-index: 2;
}

.insight-card:hover .insight-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Content */
.insight-content {
    padding: var(--space-md);
}

.insight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.insight-meta i {
    margin-right: 4px;
    font-size: 0.7rem;
}

.insight-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: white;
    line-height: 1.4;
}

.insight-content p {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Tags */
.insight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--space-md);
}

.tag {
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Link */
.insight-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

.insight-link i {
    transition: transform var(--transition-fast);
}

.insight-card:hover .insight-link i {
    transform: translateX(5px);
}

.link-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.insight-card:hover .link-glow {
    width: 100%;
}

/* ====================== */
/* === SIDEBAR STYLES === */
/* ====================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.sidebar-widget {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: white;
    position: relative;
    display: inline-block;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

/* Search Widget */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.9rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.search-form button {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-form button:hover {
    background: var(--color-secondary);
    transform: scale(1.05);
}

/* Categories Widget */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    padding-bottom: 8px;
}

.category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.category-list a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.category-list .count {
    font-size: 0.8rem;
    color: var(--color-text-light);
    background: rgba(139, 92, 246, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.tag-cloud:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.recent-post {
    display: flex;
    gap: var(--space-sm);
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.recent-post:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(5px);
}

.recent-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-content {
    flex: 1;
}

.recent-content h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: white;
    line-height: 1.3;
}

.recent-date {
    font-size: 0.7rem;
    color: var(--color-text-light);
}

/* Newsletter Widget */
.newsletter-widget p {
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-newsletter input {
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-text);
}

.sidebar-newsletter input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.subscribe-btn {
    width: 100%;
    justify-content: center;
}

.newsletter-note {
    font-size: 0.7rem !important;
    margin-top: 8px !important;
    color: var(--color-text-light) !important;
    opacity: 0.7;
}

.blog-newsletter-message {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-newsletter-message.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.blog-newsletter-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Author Widget */
.author-widget {
    text-align: center;
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-sm);
    border: 3px solid var(--color-primary);
    padding: 3px;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.author-bio {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
}

.author-social {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
}

.author-social .social-link {
    width: 36px;
    height: 36px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.author-social .social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* Archive Select Container */
.archive-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all var(--transition-fast);
}

/* Hover State */
.archive-select:hover {
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Focus State */
.archive-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

/* Active/Open State */
.archive-select:active {
    transform: scale(0.98);
}

/* Disabled State */
.archive-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(139, 92, 246, 0.1);
}

/* Option Styling - Note: Limited browser support for option styling */
.archive-select option {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 10px;
    font-family: var(--font-sans);
}

.archive-select option:hover,
.archive-select option:focus,
.archive-select option:checked,
.archive-select option:selected {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
}

/* For Firefox */
.archive-select option:checked {
    background: var(--color-primary);
    color: white;
}

/* Custom dropdown arrow for better cross-browser support */
@supports not (background-image: url("data:image/svg+xml,%3Csvg...%3E")) {
    .archive-select {
        background-image: none;
        padding-right: 30px;
        position: relative;
    }
    
    /* Fallback arrow using pseudo-element */
    .sidebar-widget:has(.archive-select) {
        position: relative;
    }
    
    .sidebar-widget:has(.archive-select)::after {
        content: '▼';
        font-size: 0.8rem;
        color: var(--color-primary);
        position: absolute;
        right: 30px;
        bottom: 30px;
        pointer-events: none;
    }
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-lg);
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 14, 33, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination-item:hover,
.pagination-item.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.pagination-dots {
    color: var(--color-text-light);
    padding: 0 4px;
}

.pagination-next {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 40px;
    background: rgba(18, 14, 33, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination-next:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateX(5px);
}

/* ====================== */
/* === RESPONSIVE === */
/* ====================== */
@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr 280px;
        gap: var(--space-md);
    }
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insight-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .insight-card.featured .insight-image {
        height: 200px;
    }
    
    .blog-pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .insight-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    .pagination-item {
        width: 35px;
        height: 35px;
    }
    
    .pagination-next {
        padding: 0 12px;
    }
}

/* ====================== */
/* === PROJECTS SECTION === */
/* ====================== */
.projects {
    padding: var(--space-xl) 0;
    background: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.project-card {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 30px rgba(139, 92, 246, 0.3);
}

.project-large {
    grid-column: span 2;
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-large .project-image {
    height: 380px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: var(--color-primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: var(--space-sm);
    align-self: flex-start;
}

.project-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.project-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.project-meta {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.project-meta i {
    transition: transform var(--transition-fast);
}

.project-card:hover .project-meta i {
    transform: translate(4px, -4px);
}

.projects-footer {
    text-align: center;
    margin-top: var(--space-xl);
}

@media (max-width: 1024px) {
    .project-large {
        grid-column: span 1;
    }

    .project-large .project-image {
        height: 280px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 250px;
    }

    .project-title {
        font-size: 1.3rem;
    }
}

/* ====================== */
/* === TESTIMONIALS SECTION === */
/* ====================== */
.testimonials {
    padding: var(--space-xl) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    margin-top: var(--space-lg);
    position: relative;
}

.testimonial-item {
    padding: var(--space-xs);
    height: auto;
}

.testimonial-card {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 30px rgba(139, 92, 246, 0.2);
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-primary-light);
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.15;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: var(--space-sm);
    color: var(--color-accent-alt);
    font-size: 0.9rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding-top: var(--space-md);
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--color-text);
}

.author-info p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin: 0;
}

.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: var(--space-sm) 0;
}

.owl-item {
    opacity: 0.3;
    transition: var(--transition-base);
}

.owl-item.active {
    opacity: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-lg);
}

.owl-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.owl-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: var(--color-text-light) !important;
    opacity: 0.3 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.owl-dot.active {
    width: 30px !important;
    border-radius: 20px !important;
    background: var(--color-primary) !important;
    opacity: 1 !important;
}

.owl-dot:hover {
    opacity: 0.8 !important;
    background: var(--color-primary-light) !important;
}

.owl-nav,
.nav-btn,
.prev-btn,
.next-btn,
.testimonial-nav,
.owl-carousel .owl-nav,
.owl-carousel .owl-nav button {
    display: none !important;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-height: 260px;
        padding: var(--space-md);
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
}

/* ====================== */
/* === CONTACT SECTION === */
/* ====================== */
.contact {
    padding: var(--space-lg) 0;
    background: transparent;
}

.contact-header-compact {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.contact-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 16px;
    border-radius: var(--radius-full);
}

.contact-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
    color: white;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 450px;
    margin: 0 auto;
}

.contact-grid-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: stretch;
}

.contact-info-compact,
.contact-form-compact {
    background: rgba(18, 14, 33, 0.6);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.quick-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.quick-contact-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.2s ease;
}

.quick-contact-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--color-primary);
}

.quick-icon {
    width: 36px;
    height: 36px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.quick-detail {
    flex: 1;
}

.quick-detail h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.quick-detail p {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

.mini-copy {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--color-text-light);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mini-copy:hover {
    background: var(--color-primary);
    color: white;
}

.social-links-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xs);
    margin: var(--space-md) 0;
}

.social-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.social-compact i {
    font-size: 0.8rem;
}

.social-compact:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.response-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: rgba(139, 92, 246, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    color: var(--color-primary);
    border: 1px dashed rgba(139, 92, 246, 0.3);
}

.form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group-compact {
    margin-bottom: var(--space-sm);
}

.form-group-compact input,
.form-group-compact select,
.form-group-compact textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-text);
    transition: all 0.2s ease;
    font-family: var(--font-sans);
}

.form-group-compact input:focus,
.form-group-compact select:focus,
.form-group-compact textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group-compact textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
}

.form-group-compact select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
}

.contact-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.contact-message.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.contact-message.error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-message.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .contact-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: var(--space-md) 0;
    }
    
    .quick-contact-row {
        grid-template-columns: 1fr;
    }
    
    .social-links-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row-compact {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* === FOOTER === */
/* ====================== */
.footer {
    position: relative;
    padding: var(--space-lg) 0 var(--space-md);
    background: rgba(10, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.brand-wrapper {
    margin-bottom: var(--space-xs);
}

.brand-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-block;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}

.brand-dot {
    color: var(--color-secondary);
    font-size: 2.5rem;
    line-height: 1;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
    max-width: 280px;
    margin: 0;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: var(--space-xs);
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    color: var(--color-text-light);
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 1rem;
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.footer-newsletter {
    margin-top: var(--space-xs);
}

.newsletter-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    align-items: center;
    max-width: 260px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    padding: 4px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    color: var(--color-text);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--color-text-light);
    opacity: 0.5;
}

.newsletter-form button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-form button:hover {
    background: var(--color-secondary);
    transform: rotate(90deg);
}

.newsletter-message {
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.newsletter-message.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.newsletter-message.error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.link-group {
    display: flex;
    flex-direction: column;
}

.link-group h4 {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-group li {
    margin: 0;
    padding: 0;
}

.link-group a {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.link-group a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--color-primary);
}

.link-group a:hover {
    color: var(--color-primary);
    transform: translateX(15px);
}

.link-group a:hover::before {
    opacity: 1;
    left: -5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: var(--space-sm);
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin: 0;
}

.divider {
    color: var(--color-primary);
    font-size: 0.8rem;
    opacity: 0.5;
}

.crafted {
    font-size: 0.8rem;
    color: var(--color-text-light);
    opacity: 0.7;
    font-style: italic;
}

.bottom-right {
    display: flex;
    align-items: center;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.back-to-top:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.back-to-top i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-brand-section {
        text-align: center;
        align-items: center;
    }
    
    .footer-tagline {
        max-width: 100%;
    }
    
    .footer-newsletter {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        text-align: center;
    }
    
    .link-group {
        align-items: center;
    }
    
    .link-group h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .bottom-left {
        flex-direction: column;
        gap: 4px;
    }
    
    .divider {
        display: none;
    }
}

/* ====================== */
/* === WAVE BACKGROUND (tidak diubah) === */
/* ====================== */
.wave-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* ====================== */
/* === SCROLL ANIMATIONS === */
/* ====================== */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-scroll].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================== */
/* === CUSTOM SCROLLBAR === */
/* ====================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* ====================== */
/* === LOADING ANIMATION === */
/* ====================== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ====================== */
/* === CUSTOM CURSOR === */
/* ====================== */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* ====================== */
/* === GLOBAL RESPONSIVE === */
/* ====================== */
@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-lg: 3rem;
        --space-md: 1.5rem;
    }

    .container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    :root {
        --space-xl: 3rem;
        --space-lg: 2rem;
        --space-md: 1rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }
}