/* ============================================
   YUK WEBSITE.ID - CUSTOM STYLES
   Color Palette:
   - Biru Tua: #171F7B
   - Biru Muda: #6BA1FD
   - Putih: #FFFFFF
   - Hitam: #000000
   ============================================ */

/* Reset & Base */
:root {
    --primary-dark: #171F7B;
    --primary-light: #6BA1FD;
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    --gradient-primary: linear-gradient(135deg, #171F7B 0%, #6BA1FD 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #171F7B 100%);
    --gradient-light: linear-gradient(135deg, #6BA1FD 0%, #93C5FD 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(107, 161, 253, 0.3);
    
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--primary-light);
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-5 { margin-top: 48px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(23, 31, 123, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-yuk {
    color: var(--white);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: -0.5px;
    z-index: 2;
}

.logo-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    bottom: 8px;
    right: 8px;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-tld {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link:hover::after {
    width: 100%;
}

/* YUK Button */
.btn-yuk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(23, 31, 123, 0.3);
}

.btn-yuk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 31, 123, 0.4);
}

.btn-yuk i {
    font-size: 18px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    position: relative;
    transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-toggle.active .hamburger {
    background: transparent;
}

.mobile-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-yuk {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--gray-50);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    top: -200px;
    right: -100px;
    animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-dark);
    bottom: -100px;
    left: -100px;
    animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(23, 31, 123, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 31, 123, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-grid-yuk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-yuk {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-desc-yuk {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-stats-yuk {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    width: fit-content;
}

.stat-item-yuk {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.hero-cta-yuk {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-primary-yuk {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(23, 31, 123, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-yuk:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(23, 31, 123, 0.4);
}

.btn-secondary-yuk {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--gray-200);
}

.btn-secondary-yuk:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    transform: translateY(-3px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-left: -12px;
    border: 3px solid var(--white);
}

.hero-trust p {
    font-size: 14px;
    color: var(--gray-600);
}

.hero-trust strong {
    color: var(--primary-dark);
}

/* Hero Visual */
.hero-visual-yuk {
    position: relative;
}

.browser-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    position: relative;
}

.browser-header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #10B981; }

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-menu {
    color: var(--gray-400);
}

.browser-body {
    padding: 24px;
    background: var(--gray-50);
    min-height: 320px;
}

.site-hero {
    height: 120px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.site-content {
    space-y: 12px;
}

.site-line {
    height: 12px;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.site-line.short {
    width: 60%;
}

.site-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.site-card {
    height: 80px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    animation: float-badge 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-light);
    font-size: 18px;
}

.fb-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.fb-2 {
    bottom: 20%;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.revamp-indicator {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.revamp-arrow {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.revamp-text {
    display: flex;
    gap: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-full);
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header-yuk {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    background: rgba(23, 31, 123, 0.1);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-yuk {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc-yuk {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-yuk {
    padding: 120px 0;
    background: var(--white);
}

.services-grid-yuk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card-yuk {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-yuk:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.service-card-yuk.featured {
    border-color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(23, 31, 123, 0.02) 0%, rgba(107, 161, 253, 0.05) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon-yuk {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.icon-bg {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    filter: blur(20px);
    z-index: 1;
    transition: opacity 0.3s;
}

.service-card-yuk:hover .icon-glow {
    opacity: 0.6;
}

.service-card-yuk h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card-yuk > p {
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--primary-light);
    font-size: 16px;
}

.service-price {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-price strong {
    display: block;
    font-size: 28px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-top: 4px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-yuk {
    padding: 120px 0;
    background: var(--gray-50);
}

.portfolio-showcase {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
    border: 1px solid var(--gray-200);
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.showcase-before,
.showcase-after {
    flex: 1;
    position: relative;
}

.showcase-label {
    position: absolute;
    top: -12px;
    left: 16px;
    background: var(--gray-800);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.showcase-after .showcase-label {
    background: var(--primary-light);
}

.showcase-screen {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.showcase-screen.old {
    background: var(--gray-200);
    filter: grayscale(0.5);
}

.old-header {
    height: 20%;
    background: var(--gray-300);
}

.old-content {
    padding: 16px;
}

.old-block {
    height: 40px;
    background: var(--gray-300);
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
}

.showcase-screen.new {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.new-header {
    height: 15%;
    background: var(--gradient-primary);
}

.new-hero {
    height: 35%;
    background: linear-gradient(135deg, rgba(107, 161, 253, 0.2) 0%, rgba(23, 31, 123, 0.1) 100%);
    margin: 16px;
    border-radius: var(--radius-sm);
}

.new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px 16px;
}

.new-card {
    height: 60px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

.showcase-arrow {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 31, 123, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(23, 31, 123, 0); }
}

.portfolio-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.portfolio-info > p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: rgba(23, 31, 123, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.portfolio-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.thumb-content {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
}

.thumb-content.ecommerce {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.thumb-content.service {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
}

.thumb-content.corporate {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 31, 123, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--white);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform 0.3s;
}

.portfolio-card:hover .btn-view {
    transform: translateY(0);
}

.portfolio-meta {
    padding: 20px;
}

.portfolio-meta h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.portfolio-meta p {
    font-size: 14px;
    color: var(--gray-500);
}

.btn-outline-yuk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-yuk:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-yuk {
    padding: 120px 0;
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-weight: 600;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--primary-dark);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: var(--shadow);
}

input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.pricing-grid-yuk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-yuk {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card-yuk:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-yuk.popular {
    border-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card-yuk.hidden {
    display: none;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-400);
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-light);
    font-size: 16px;
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-features li.disabled i {
    color: var(--gray-300);
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gray-100);
    color: var(--primary-dark);
    padding: 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-pricing:hover,
.btn-pricing.popular {
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 800px;
    margin: 48px auto 0;
    padding: 20px 24px;
    background: rgba(23, 31, 123, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-dark);
}

.pricing-note i {
    color: var(--primary-dark);
    font-size: 20px;
    margin-top: 2px;
}

.pricing-note p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-yuk {
    padding: 120px 0;
    background: var(--gray-50);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-dark), var(--primary-light));
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px var(--gray-50);
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(107, 161, 253, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-yuk {
    padding: 120px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question i {
    color: var(--primary-light);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-yuk {
    padding: 120px 0;
    background: var(--gray-50);
}

.cta-box-yuk {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box-yuk::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-content-yuk {
    position: relative;
    z-index: 1;
}

.cta-content-yuk h2 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content-yuk > p {
    color: var(--gray-300);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons-yuk {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-300);
    font-size: 14px;
}

.cta-guarantee i {
    color: var(--primary-light);
}

.cta-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.cta-illustration {
    position: relative;
    width: 200px;
    height: 200px;
}

.illustration-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-cta 3s infinite;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.cta-illustration i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-yuk {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid-yuk {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 64px;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-yuk p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-links-yuk h4,
.footer-contact-yuk h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links-yuk ul {
    list-style: none;
}

.footer-links-yuk li {
    margin-bottom: 12px;
}

.footer-links-yuk a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-yuk a:hover {
    color: var(--primary-light);
}

.footer-contact-yuk p {
    color: var(--gray-400);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-contact-yuk i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom-yuk {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ============================================
   FLOATING ACTION BUTTON
   ============================================ */
.fab-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.fab-wa:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--gray-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.fab-wa:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid-yuk {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content-yuk {
        order: 2;
    }

    .hero-visual-yuk {
        order: 1;
    }

    .hero-desc-yuk {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats-yuk {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-yuk {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .services-grid-yuk,
    .pricing-grid-yuk {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card-yuk.popular {
        transform: scale(1);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-item {
        flex-direction: column;
    }

    .showcase-arrow {
        transform: rotate(90deg);
    }

    .cta-box-yuk {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px;
    }

    .cta-buttons-yuk {
        justify-content: center;
    }

    .footer-grid-yuk {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s;
        border-top: 1px solid var(--gray-200);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-cta {
        margin-top: 8px;
    }

    .hero-title-yuk {
        font-size: 36px;
    }

    .hero-stats-yuk {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-title-yuk {
        font-size: 28px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        padding-left: 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .footer-grid-yuk {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-yuk {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-box-yuk {
        padding: 40px 24px;
    }

    .cta-content-yuk h2 {
        font-size: 28px;
    }

    .cta-buttons-yuk {
        flex-direction: column;
    }

    .fab-wa {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .fab-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-yuk {
        font-size: 28px;
    }

    .hero-cta-yuk {
        flex-direction: column;
    }

    .btn-primary-yuk,
    .btn-secondary-yuk {
        width: 100%;
        justify-content: center;
    }

    .floating-badge {
        display: none;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
   PORTFOLIO REAL - UPDATED STYLES
   ============================================ */

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.portfolio-grid-real {
    display: grid;
    gap: 48px;
}

.portfolio-item-real {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s;
}

.portfolio-item-real:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Comparison Layout */
.portfolio-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: var(--gray-900);
    position: relative;
}

.comparison-before,
.comparison-after {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.comparison-before:hover img,
.comparison-after:hover img {
    transform: scale(1.05);
}

.comparison-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.comparison-label.before {
    background: #EF4444;
    color: white;
}

.comparison-label.after {
    background: #10B981;
    color: white;
}

.comparison-overlay-old,
.comparison-overlay-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.old-stats,
.new-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.old-stats span,
.new-stats span {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-stats i {
    color: #EF4444;
}

.new-stats i {
    color: #10B981;
}

.comparison-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    gap: 8px;
    min-width: 120px;
}

.comparison-arrow i {
    font-size: 24px;
    animation: bounce-right 2s infinite;
}

.comparison-arrow span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.3;
}

@keyframes bounce-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Showcase Single (for new websites) */
.portfolio-showcase-single {
    background: var(--gray-900);
    padding: 40px;
}

.showcase-browser {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.browser-top {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #10B981; }

.browser-address {
    flex: 1;
    background: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    font-family: monospace;
}

.showcase-browser img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-badge {
    position: absolute;
    top: 60px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    animation: pulse-badge 2s infinite;
}

/* Portfolio Info */
.portfolio-info-real {
    padding: 32px;
}

.portfolio-meta-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.client-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    object-fit: cover;
}

.portfolio-meta-header h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.client-industry {
    font-size: 14px;
    color: var(--gray-500);
}

.portfolio-desc {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
}

/* Results Stats */
.portfolio-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.result-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

/* Tags */
.portfolio-tags-real {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.portfolio-tags-real span {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
}

.portfolio-tags-real .tag-revamp {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.portfolio-tags-real .tag-baru {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* Actions */
.portfolio-actions {
    display: flex;
    gap: 12px;
}

.btn-view-real,
.btn-similar {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-view-real {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-view-real:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 31, 123, 0.3);
}

.btn-similar {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-similar:hover {
    border-color: var(--primary-light);
    color: var(--primary-dark);
    background: var(--white);
}

/* Modal */
.portfolio-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 40px 20px;
    overflow-y: auto;
}

.portfolio-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modal-in 0.3s ease;
}

@keyframes modal-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: #EF4444;
    color: white;
    transform: rotate(90deg);
}

/* Modal Content Styles */
.modal-header {
    padding: 40px 40px 0;
}

.modal-header img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.modal-body {
    padding: 0 40px 40px;
}

.modal-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.modal-stat {
    text-align: center;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.modal-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
}

.modal-stat-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 4px;
}

.modal-section {
    margin-bottom: 24px;
}

.modal-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.modal-section p,
.modal-section ul {
    color: var(--gray-600);
    line-height: 1.7;
}

.modal-section ul {
    list-style: none;
    padding-left: 0;
}

.modal-section li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.modal-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

.modal-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

/* Responsive Portfolio */
@media (max-width: 1024px) {
    .portfolio-comparison {
        grid-template-columns: 1fr;
    }

    .comparison-arrow {
        padding: 16px;
        flex-direction: row;
        gap: 12px;
    }

    .comparison-arrow i {
        transform: rotate(90deg);
        animation: bounce-down 2s infinite;
    }

    @keyframes bounce-down {
        0%, 100% { transform: rotate(90deg) translateX(0); }
        50% { transform: rotate(90deg) translateX(5px); }
    }

    .portfolio-results {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .result-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .portfolio-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .portfolio-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .portfolio-info-real {
        padding: 24px;
    }

    .modal-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-cta {
        flex-direction: column;
    }
}
/* ============================================
   HERO VISUAL - REAL WEBSITE MOCKUP
   ============================================ */

.hero-visual-yuk {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
}

/* Browser Mockup */
.browser-mockup-real {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 25px 80px rgba(23, 31, 123, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    animation: float-browser 6s ease-in-out infinite;
}

@keyframes float-browser {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

/* Browser Top Bar */
.browser-top-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f5f5f7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.traffic-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.light.red { background: #ff5f57; }
.light.yellow { background: #febc2e; }
.light.green { background: #28c840; }

.browser-address-bar {
    flex: 1;
    background: #ffffff;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.browser-address-bar i {
    color: #10b981;
    font-size: 12px;
}

.browser-address-bar .bookmark {
    color: #f59e0b;
    margin-left: auto;
}

.browser-refresh {
    color: #6b7280;
    font-size: 14px;
}

/* Browser Viewport - Website Content */
.browser-viewport {
    padding: 0;
    background: #ffffff;
    min-height: 400px;
}

/* Site Header Mockup */
.site-header-mockup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #f3f4f6;
}

.site-logo {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #171F7B 0%, #6BA1FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    color: #6b7280;
}

.site-nav span {
    cursor: pointer;
    transition: color 0.3s;
}

.site-nav span.active,
.site-nav span:hover {
    color: #171F7B;
    font-weight: 600;
}

.site-btn {
    background: #171F7B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.site-btn:hover {
    background: #6BA1FD;
    transform: translateY(-2px);
}

/* Site Hero Mockup */
.site-hero-mockup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-text p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.hero-buttons button {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #171F7B 0%, #6BA1FD 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(23, 31, 123, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 31, 123, 0.4);
}

.hero-buttons .btn-secondary {
    background: white;
    color: #171F7B;
    border: 2px solid #e2e8f0;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    height: 180px;
}

.chart-bar {
    width: 40px;
    background: linear-gradient(to top, #171F7B, #6BA1FD);
    border-radius: 6px 6px 0 0;
    animation: grow-bar 2s ease-out infinite alternate;
}

.chart-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.chart-bar:nth-child(2) { height: 85%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 100%; animation-delay: 0.4s; }

@keyframes grow-bar {
    from { transform: scaleY(0.8); }
    to { transform: scaleY(1); }
}

.floating-card-mockup {
    position: absolute;
    top: 20px;
    right: 0;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float-card 3s ease-in-out infinite;
}

.floating-card-mockup i {
    color: #10b981;
    font-size: 20px;
}

.floating-card-mockup span {
    font-weight: 800;
    color: #10b981;
    font-size: 18px;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Site Features Mockup */
.site-features-mockup {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: white;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: transform 0.3s;
}

.icon-circle.blue { 
    background: linear-gradient(135deg, #171F7B 0%, #3b82f6 100%);
    box-shadow: 0 8px 20px rgba(23, 31, 123, 0.3);
}

.icon-circle.purple { 
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.icon-circle.orange { 
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.icon-circle:hover {
    transform: translateY(-5px) scale(1.05);
}

.feature-box span {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

/* Floating Badges */
.floating-badge-real {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 10;
}

.floating-badge-real .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fb-seo {
    top: 80px;
    left: -40px;
    animation: float-left 4s ease-in-out infinite;
}

.fb-seo .badge-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.fb-speed {
    bottom: 100px;
    right: -40px;
    animation: float-right 4s ease-in-out infinite;
    animation-delay: 1s;
}

.fb-speed .badge-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.badge-text span {
    font-size: 12px;
    color: #64748b;
}

@keyframes float-left {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(10px) translateY(-10px); }
}

@keyframes float-right {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(-10px); }
}

/* Before/After Toggle */
.before-after-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active,
.toggle-btn:hover {
    background: #171F7B;
    border-color: #171F7B;
    color: white;
}

.toggle-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #171F7B 0%, #6BA1FD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    animation: pulse-arrow 2s infinite;
    box-shadow: 0 8px 20px rgba(23, 31, 123, 0.3);
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 20px rgba(23, 31, 123, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 12px 30px rgba(23, 31, 123, 0.5); }
}

/* Stats Bar */
.mockup-stats-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    padding: 16px 32px;
    background: rgba(23, 31, 123, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(23, 31, 123, 0.1);
}

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #171F7B;
}

.stat-bar-item i {
    font-size: 18px;
    color: #6BA1FD;
}

/* Before State Styles */
.browser-mockup-real.before-state .site-hero-mockup {
    filter: grayscale(0.8) blur(1px);
    opacity: 0.7;
}

.browser-mockup-real.before-state .floating-badge-real {
    display: none;
}

.browser-mockup-real.before-state .chart-bar {
    animation: none;
    height: 40% !important;
    background: #9ca3af;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual-yuk {
        min-height: auto;
        margin-top: 40px;
    }
    
    .floating-badge-real {
        display: none;
    }
    
    .site-hero-mockup {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .before-after-toggle {
        flex-wrap: wrap;
    }
    
    .mockup-stats-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .browser-mockup-real {
        transform: scale(0.9);
    }
    
    .site-header-mockup {
        flex-direction: column;
        gap: 16px;
    }
    
    .site-nav {
        gap: 16px;
    }
}
/* POSISI ALTERNATIF - LEBIH AMAN */
.fb-seo {
    top: 100px;
    left: 20px; /* Lebih masuk ke dalam */
}

.fb-speed {
    bottom: 120px;
    right: 20px; /* Lebih masuk ke dalam */
}
/* Responsive: sembunyikan badges di mobile */
@media (max-width: 1024px) {
    .hero-visual-yuk {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .mockup-wrapper {
        padding: 0 20px;
    }
    
    .floating-badge-real {
        display: none; /* Sembunyikan di tablet/mobile */
    }
}

@media (max-width: 768px) {
    .hero-visual-yuk {
        padding: 20px;
    }
    
    .mockup-wrapper {
        padding: 0;
    }
}
.back-to-hero {
    position: fixed;
    bottom: 100px; /* Di atas FAB WhatsApp */
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(23, 31, 123, 0.3);
    transition: all 0.3s;
    z-index: 998;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
}

.back-to-hero.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(23, 31, 123, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .back-to-hero {
        right: 20px;
        bottom: 80px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
/* ============================================
   LOGO PNG STYLES
   ============================================ */

/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

/* Logo Image Container */
.logo-img-container {
    width: 48px;
    height: 48px;
    border-radius: 12px; /* Bisa diubah: 50% untuk lingkaran, 12px untuk rounded */
    overflow: hidden;
    background: var(--gradient-primary); /* Fallback background */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(23, 31, 123, 0.2);
    transition: all 0.3s;
    flex-shrink: 0;
}

.logo-img-container:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(23, 31, 123, 0.3);
}

/* Logo Image */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* atau 'cover' tergantung bentuk logo */
    /* Jika logo PNG transparan, tambahkan: */
    /* background: white; */
    padding: 4px; /* Jika logo terlalu mepet */
}

/* Logo Text */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-tld {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 1px;
}

/* ============================================
   FOOTER LOGO
   ============================================ */

.logo-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px; /* Sedikit lebih besar untuk footer */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   VARIASI BENTUK LOGO
   ============================================ */

/* Opsi 1: Logo Lingkaran */
.logo-circle {
    border-radius: 50%;
}

/* Opsi 2: Logo Rounded Square */
.logo-rounded {
    border-radius: 16px;
}

/* Opsi 3: Logo Square */
.logo-square {
    border-radius: 8px;
}

/* Opsi 4: Logo dengan Border */
.logo-bordered {
    border: 3px solid var(--primary-light);
    border-radius: 12px;
}

/* Opsi 5: Logo dengan Background Putih */
.logo-white-bg {
    background: white;
    border-radius: 12px;
    padding: 4px;
}

/* Opsi 6: Logo Shadow Glow */
.logo-glow {
    box-shadow: 0 0 20px rgba(107, 161, 253, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .logo-img-container {
        width: 40px;
        height: 40px;
    }
    
    .logo-brand {
        font-size: 18px;
    }
    
    .logo-tld {
        font-size: 11px;
    }
    
    .footer-logo {
        width: 48px;
        height: 48px;
    }
}
