/* ============================================
   SINHASARI DEVELOPMENT — FULL GLASSMORPHISM
   All text: #000 (hitam pekat)
   Theme: Purple glassmorphism aesthetic
   ============================================ */

:root {
    --primary: #7c3aed;
    --primary-light: #a855f7;
    --primary-dark: #5b21b6;
    --secondary: #a855f7;
    --accent: #c084fc;
    --gradient: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    --gradient-hover: linear-gradient(135deg, #6d28d9, #9333ea);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-bg-strong: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-border-purple: rgba(168, 85, 247, 0.4);
    --glass-shadow: 0 8px 32px rgba(124, 58, 237, 0.2);
    --glass-shadow-lg: 0 20px 60px rgba(124, 58, 237, 0.25);
    --text-black: #000000;
    --text-dark: #111111;
    --text-mid: #1a1a1a;
    --font: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: #f5f0ff;
    color: var(--text-black);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Global purple gradient body background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(124, 58, 237, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(168, 85, 247, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 90%, rgba(192, 132, 252, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        linear-gradient(145deg, #ede9fe 0%, #f5f0ff 40%, #faf5ff 70%, #ede9fe 100%);
    z-index: -1;
    pointer-events: none;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utilities --- */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.text-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 40%, #FFD700 70%, #FFEC6E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section { padding: 100px 0; position: relative; }

.badge {
    background: var(--gradient);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.badge.success { background: linear-gradient(135deg, #7c3aed, #22c55e); }

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-top: 4px;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-black) !important;
    -webkit-text-fill-color: #000000 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    width: 100%;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--gradient);
    margin: 12px auto 50px;
    border-radius: 2px;
    position: relative;
}

.line::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: var(--secondary);
    right: -28px;
    top: 0;
    border-radius: 2px;
    opacity: 0.5;
}

/* --- Typewriter --- */
.typewriter { position: relative; display: inline-block; }
.typewriter.typing::after {
    content: '|';
    position: relative;
    margin-left: 2px;
    animation: blink-cursor 0.75s step-end infinite;
    color: var(--primary-light);
    font-weight: 300;
}
@keyframes blink-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* --- Glassmorphism Mixin Pattern --- */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(124, 58, 237, 0.5);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    font-size: 1.1rem;
    padding: 16px 42px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #128c7e; transform: scale(1.05); }

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(124, 58, 237, 0.1);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.logo img { height: 42px; }
.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#navbar ul { display: flex; gap: 32px; align-items: center; }

.nav-link {
    font-weight: 600;
    position: relative;
    color: var(--text-black);
    font-size: 0.95rem;
}
.nav-link:hover { color: var(--primary); }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background: var(--gradient);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }

.nav-link.cta-btn {
    background: var(--gradient);
    color: #fff;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
}
.nav-link.cta-btn::after { display: none; }
.nav-link.cta-btn:hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

.indonesia-map {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    pointer-events: none;
}
.indonesia-map svg {
    width: 100%;
    max-width: 1200px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.4));
}
.map-path {
    fill: none;
    stroke: var(--primary-light);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        rgba(255,255,255,0.15) 0%,
        rgba(245,240,255,0.4) 50%,
        rgba(237,233,254,0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: -30%; right: -15%;
    width: 70%; height: 160%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
    z-index: 0;
    animation: pulse-bg 12s infinite alternate;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 820px;
    position: relative;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-black);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

/* Glassmorphism floating cards in hero */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
    animation: float 6s ease-in-out infinite;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-black);
}
.floating-card i { font-size: 1.3rem; color: var(--primary); }
.c1 { top: 22%; left: 8%; animation-delay: 0s; }
.c2 { bottom: 22%; right: 8%; animation-delay: 2s; }
.c3 { top: 62%; left: 4%; animation-delay: 4s; }

/* --- About / Problem Cards Section --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

/* GLASSMORPHISM CARDS */
.problem-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 36px 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2), inset 0 1px 0 rgba(255,255,255,0.9);
}
.problem-card:hover::before { opacity: 1; }

.icon-box {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(124, 58, 237, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: var(--transition);
}
.icon-box.warning { background: rgba(124, 58, 237, 0.12); color: var(--primary); }
.problem-card:hover .icon-box {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.problem-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-black);
}
.problem-card p {
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.6;
}

.agitate-box {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    border-left: 4px solid var(--primary);
    max-width: 800px;
    margin: 0 auto;
}
.agitate-box h3 { color: var(--text-black); font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
.agitate-box p { color: var(--text-dark); }

/* --- Solution Section --- */
.dark-bg {
    background: rgba(124, 58, 237, 0.04);
    position: relative;
}
.dark-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

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

.text-col h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-black) !important;
    -webkit-text-fill-color: #000000 !important;
    background: none !important;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.text-col p { color: var(--text-dark); line-height: 1.8; }

.solution-list { margin: 28px 0; }
.solution-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-black);
    font-weight: 500;
}
.solution-list i {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.12);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.85rem;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
}
.glow-circle {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    z-index: 1;
}
.image-wrapper img { position: relative; z-index: 2; transition: transform 0.6s ease; }
.image-wrapper:hover img { transform: scale(1.05); }

/* --- Services Section --- */
.services-content {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(124, 58, 237, 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.svc-modal-header { text-align: center; margin-bottom: 28px; }
.svc-modal-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}
.svc-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 8px;
}
.svc-modal-header p { color: var(--text-dark); font-size: 1rem; }

.svc-cat-desc {
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 16px 0 24px;
}

/* Sub-tabs */
.svc-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.svc-tab {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--text-black);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font);
}
.svc-tab:hover, .svc-tab.active {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.svc-tab-pane { display: none; }
.svc-tab-pane.active { display: block; }

/* Pricing grid */
.svc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-umkm-grid { grid-template-columns: repeat(4, 1fr); }

.svc-price-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.svc-price-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.18);
    background: rgba(255, 255, 255, 0.65);
}
.svc-price-card.featured {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.2);
}

.svc-featured-badge {
    background: var(--gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 4px;
}

.svc-pkg-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-black);
}

.svc-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.svc-features { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
.svc-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-bottom: 7px;
    line-height: 1.4;
    font-weight: 500;
}
.svc-features i { color: var(--primary); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }

.svc-wa-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 11px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s;
}
.svc-wa-btn:hover { background: linear-gradient(135deg, #128c7e, #075e54); transform: translateY(-2px); }
.svc-wa-btn i { margin-right: 6px; }

.svc-kelola-cta { text-align: center; margin-bottom: 24px; }

.svc-wa-btn-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.svc-wa-btn-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.svc-custom-card {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(255, 255, 240, 0.45);
}

/* --- Service Cards Grid --- */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 48px auto 0;
    max-width: 950px;
}

.service-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}
.service-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.service-card-icon {
    width: 80px; height: 80px;
    background: rgba(124, 58, 237, 0.12);
    border: 1.5px solid rgba(124, 58, 237, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 4px;
    transition: var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.service-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-black); }
.service-card p { color: var(--text-dark); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; }

.btn-selengkapnya {
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
    width: 100%;
}
.btn-selengkapnya:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* --- Workflow Section --- */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.workflow-step:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.18);
    background: rgba(255, 255, 255, 0.55);
}

.workflow-center { grid-column: 2 / 3; }

.workflow-num {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.5);
}

.workflow-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 16px 0 12px;
}

.workflow-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 8px;
}
.workflow-step p {
    font-size: 0.88rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Portfolio Section --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}
.portfolio-item:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.25);
    transform: translateY(-4px);
}

.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover img { transform: scale(1.1); }

.overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top,
        rgba(88, 28, 235, 0.88) 0%,
        rgba(124, 58, 237, 0.4) 50%,
        transparent 100%);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.portfolio-item:hover .overlay { opacity: 1; }
.overlay h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(192, 132, 252, 0.6);
    margin-bottom: 6px;
}
.overlay p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; font-weight: 500; }

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(124, 58, 237, 0.04);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 32px;
    padding: 60px 48px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-black);
    letter-spacing: -0.5px;
}
.cta-content p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
}

.cta-buttons { margin: 28px 0 0; }

.pulse-effect { animation: pulse-btn 2s infinite; }
.limited-offer {
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- Footer (Glassmorphism) --- */
footer {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 70px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 -4px 30px rgba(124, 58, 237, 0.08);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-black);
    font-weight: 800;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a,
.footer-col ul li {
    color: var(--text-dark);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

.footer-col p {
    color: var(--text-dark);
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 500;
}

.social-links { margin-top: 20px; display: flex; gap: 12px; }
.social-links a {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--primary);
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.1);
}
.social-links a:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    padding-top: 20px;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* --- Portfolio Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background: rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show {
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    margin: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.8);
    width: 90%;
    max-width: 800px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 80px rgba(124, 58, 237, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}
.modal.show .modal-content { animation: modalScale 0.4s forwards; }

@keyframes modalScale {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    color: var(--text-black);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
    line-height: 1;
}
.close-modal:hover { color: var(--primary); transform: rotate(90deg) scale(1.1); }

.modal-body { display: flex; flex-direction: column; }

.modal-img-container {
    width: 100%; height: auto;
    max-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.05);
}
.modal-img-container img { width: 100%; height: 100%; object-fit: contain; }

.modal-text {
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
}
.modal-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.modal-text p { color: var(--text-dark); font-size: 1rem; font-weight: 500; }

/* --- Service Modal Overlay --- */
.svc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(88, 28, 235, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    overflow-y: auto;
    padding: 30px 16px;
}
.svc-modal-overlay.open {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.svc-modal {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    padding: 40px 36px;
    width: 100%;
    max-width: 1100px;
    position: relative;
    animation: modalIn 0.3s ease;
    box-shadow: 0 20px 80px rgba(124, 58, 237, 0.25);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.svc-modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--text-black);
    font-size: 1.5rem;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: var(--font);
}
.svc-modal-close:hover { background: rgba(124, 58, 237, 0.2); }

/* Pricing card in service modal */
.svc-price-card p { color: var(--text-dark); }

/* --- Pricing/Tab Section (if standalone) --- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    color: var(--text-black);
    border: 1px solid rgba(255, 255, 255, 0.65);
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font);
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(124, 58, 237, 0.08); }
.tab-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.tab-pane { display: none; animation: fadeIn 0.5s ease; }
.tab-pane.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.18);
    background: rgba(255, 255, 255, 0.6);
}
.pricing-card:hover::before { opacity: 1; }

.package-name { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--text-black); }

.price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient);
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 28px;
    border: none;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    cursor: pointer;
}
.btn-pricing:hover { box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5); transform: translateY(-2px); }

.pricing-features { list-style: none; padding: 0; margin: 0; }
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 500;
}
.pricing-features i { color: var(--primary); font-size: 0.9rem; margin-top: 3px; }

/* Featured property card */
.featured-property {
    border: 2px solid var(--primary) !important;
    background: rgba(124, 58, 237, 0.08) !important;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.15) !important;
    transform: scale(1.02);
}
.featured-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    animation: badge-glow 2s infinite alternate;
    z-index: 10;
}
@keyframes badge-glow {
    0% { box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4); }
    100% { box-shadow: 0 4px 25px rgba(168, 85, 247, 0.7), 0 0 40px rgba(124, 58, 237, 0.2); }
}

/* Property card styles */
.property-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
    transition: var(--transition);
}
.property-icon i { font-size: 1.4rem; color: #fff; }
.property-tagline { color: var(--text-dark); font-size: 0.88rem; margin-bottom: 18px; line-height: 1.5; font-style: italic; }

/* UMKM cards */
.umkm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.umkm-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.06);
}
.umkm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #00c853, #00e676, #69f0ae);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.umkm-card:hover {
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 200, 83, 0.12);
    background: rgba(255, 255, 255, 0.6);
}
.umkm-card:hover::before { opacity: 1; }

.umkm-title { font-size: 1.25rem; font-weight: 700; color: var(--text-black) !important; -webkit-text-fill-color: #000 !important; margin-bottom: 4px; }
.umkm-label { color: #00b341; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.umkm-desc { color: var(--text-dark); font-size: 0.85rem; line-height: 1.6; margin-bottom: 18px; min-height: 55px; }
.umkm-features li { color: var(--text-dark); }
.umkm-subtitle { color: var(--text-dark); font-size: 0.95rem; max-width: 650px; margin: 0 auto; line-height: 1.6; }

/* Tab button UMKM */
.tab-btn-umkm {
    background: linear-gradient(135deg, #00c853, #00e676) !important;
    color: #fff !important;
    border-color: #00c853 !important;
    font-weight: 700 !important;
    animation: umkm-pulse 2.5s infinite;
}
@keyframes umkm-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.5); }
    50% { box-shadow: 0 0 15px 5px rgba(0, 200, 83, 0.25); }
}

/* --- Floating Form Button --- */
.floating-form {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--gradient);
    color: white !important;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    animation: pulse-form 2s infinite;
}
.floating-form:hover {
    padding: 12px 24px 12px 18px;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
    animation: none;
}
.floating-form i { font-size: 28px; transition: transform 0.3s ease; color: white !important; }
.floating-form:hover i { transform: scale(1.1); }
.floating-form .form-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    font-weight: 600;
    font-size: 15px;
    margin-left: 0;
    color: white !important;
    transition: all 0.4s ease;
}
.floating-form:hover .form-text { max-width: 250px; opacity: 1; margin-left: 12px; }

/* --- Animation Keyframes --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes pulse-bg {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.15); opacity: 0.7; }
}

@keyframes pulse-btn {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-form {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

/* --- Scroll Animation Utilities --- */
.animate-up {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-slide-right {
    opacity: 0;
    transform: translateX(50px) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-scale {
    opacity: 0;
    transform: scale(0.9) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-flip {
    opacity: 0;
    transform: rotateY(90deg) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-zoom {
    opacity: 0;
    transform: scale(0.5) translateZ(0);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-fade {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.active-anim {
    opacity: 1 !important;
    transform: translate(0) scale(1) rotate(0) !important;
}

/* Force all text inside cards/sections to be black */
.section h2, .section h3, .section h4, .section p,
.section li, .section span:not(.badge):not(.svc-featured-badge):not(.featured-badge),
footer h4, footer p, footer li, footer a:not(.social-links a):not(.btn):not(.btn-primary):not(.btn-whatsapp):not(.svc-wa-btn):not(.svc-wa-btn-big) {
    color: var(--text-black);
}

/* Fix svc features color that was white before */
.svc-features li,
.pricing-features li,
.solution-list li,
.workflow-step p,
.workflow-step h4,
.umkm-features li { color: var(--text-dark) !important; }

/* Inline style overrides from HTML */
[style*="color: var(--muted-text)"],
[style*="color:var(--muted-text)"] { color: var(--text-dark) !important; }
[style*="color: var(--light-text)"],
[style*="color:var(--light-text)"] { color: var(--text-black) !important; }
[style*="color: var(--text-secondary)"],
[style*="color:var(--text-secondary)"] { color: var(--text-dark) !important; }
[style*="color: #fff"],
[style*="color:#fff"] { /* Keep white for buttons */ }
[style*="color: #aaa"],
[style*="color:#aaa"] { color: var(--text-dark) !important; }
[style*="color: #ccc"],
[style*="color:#ccc"] { color: var(--text-dark) !important; }
[style*="color: #888"],
[style*="color:#888"] { color: var(--text-dark) !important; }
[style*="color: #bbb"],
[style*="color:#bbb"] { color: var(--text-dark) !important; }

/* svc-cat-desc used purple already, keep */
.svc-cat-desc { color: var(--primary) !important; }

/* Inline style overrides for card texts */
.svc-price-card [style*="color: var(--light-text)"] { color: var(--text-black) !important; }
.svc-price-card [style*="color: var(--muted-text)"] { color: var(--text-dark) !important; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .svc-umkm-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
}

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

    #navbar {
        position: fixed;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        top: 72px; right: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        padding: 40px;
        transition: 0.5s;
        border-left: 1px solid rgba(255, 255, 255, 0.6);
    }
    #navbar.active { right: 0; }
    #navbar ul { flex-direction: column; gap: 20px; }

    .hero h1 { font-size: 2.2rem; }
    .section { padding: 70px 0; }
    .section-header h2 { font-size: 2rem; }
    .footer-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .cta-content { padding: 36px 24px; }
    .cta-content h2 { font-size: 2rem; }
    .service-cards-grid { grid-template-columns: 1fr; }
    .svc-pricing-grid { grid-template-columns: 1fr; }
    .svc-umkm-grid { grid-template-columns: 1fr; }
    .svc-modal { padding: 28px 18px; }
    .workflow-grid { grid-template-columns: 1fr 1fr; }
    .workflow-center { grid-column: auto; }
    .modal-content { width: 95%; margin: 10% auto; }
    .modal-text h3 { font-size: 1.5rem; }
    .pricing-tabs { flex-direction: column; align-items: stretch; }
    .umkm-card-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
    .workflow-grid { grid-template-columns: 1fr; }
    .workflow-center { grid-column: auto; }
}

/* ============================================
   CRITICAL: Force ALL body text to black
   Override any inline color declarations
   ============================================ */

/* Override all inline style colors to be black */
*:not(
    .btn, .btn-primary, .btn-outline, .btn-whatsapp,
    .svc-wa-btn, .svc-wa-btn-big, .btn-pricing, .btn-umkm,
    .floating-form, .badge, .svc-featured-badge, .featured-badge,
    .svc-tab.active, .tab-btn.active,
    .workflow-num, .property-icon i,
    .text-gold, .svc-price, .price,
    .overlay h3, .overlay p,
    .umkm-price-tag, .umkm-badge, .limited-offer
) {
    color: inherit;
}

/* Specifically target the problematic colored texts */
.problem-card h3,
.problem-card p,
.service-card h3,
.service-card p,
.agitate-box h3,
.agitate-box p,
.workflow-step h4,
.workflow-step p,
.svc-pkg-name,
.svc-modal-header h2,
.svc-modal-header p,
.svc-tab,
.pricing-card .package-name,
.pricing-features li,
.umkm-title,
.umkm-desc,
.umkm-subtitle,
.umkm-features li,
.footer-col h4,
.footer-col p,
.footer-col ul li,
.footer-col ul li a,
.footer-bottom p,
.modal-text p,
.cta-content h2,
.cta-content p,
.hero h1,
.hero p,
.text-col p {
    color: #000000 !important;
}

/* Also fix inline style for svc-price-card featured descriptions */
.svc-price-card p,
.svc-price-card h3 { color: #000000 !important; }

/* CTA section text fix */
.cta-content .text-gold { -webkit-text-fill-color: transparent !important; }
.cta-content .text-gold * { -webkit-text-fill-color: transparent !important; }

/* Hero h1 keep black, ensure text-gold child works */
.hero h1 { -webkit-text-fill-color: #000000 !important; }
.hero h1 .text-gold { -webkit-text-fill-color: transparent !important; }

/* section-header h2 gradient children (span.gradient-text) still work */
.section-header h2 .gradient-text {
    background: var(--gradient) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Typewriter h2 needs to be black while typing */
.typewriter { color: #000000; }

/* Nav links black */
.nav-link { color: #000000 !important; }
.nav-link.cta-btn { color: #fff !important; }

/* Footer links */
.footer-col ul li a { color: #000000 !important; }
.footer-col ul li a:hover { color: var(--primary) !important; }
.social-links a { color: var(--primary) !important; }
.social-links a:hover { color: #fff !important; }

/* svc-features items (was #ccc before) */
.svc-features li { color: #000000 !important; }

/* Keep icon colors purple */
.icon-box i,
.service-card-icon,
.workflow-icon i,
.svc-modal-header i,
.floating-card i { color: var(--primary) !important; }

/* solution-list items */
.solution-list li { color: #000000 !important; }
