:root { 
    --primary: #8B00C2; 
    --secondary: #FF007A;
    --tech-glow: rgba(139, 0, 194, 0.15);
}

body { 
    background-color: #ffffff; 
    color: #1a1a1a; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Background Grid */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(circle, #8B00C2 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.pill-nav {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(139, 0, 194, 0.2);
    border-radius: 999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(139, 0, 194, 0.1);
}
@media (min-width: 768px) { .pill-nav { padding: 10px 35px; gap: 35px; } }

/* Gradients */
.purple-gradient { background: linear-gradient(135deg, #8B00C2 0%, #FF007A 100%); }

/* Mesh Animation */
@keyframes meshMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.tech-mesh {
    background: radial-gradient(circle at 20% 30%, rgba(139, 0, 194, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 122, 0.05) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: meshMove 15s ease infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
.float-icon { animation: float 4s ease-in-out infinite; }

/* Cards */
.workflow-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(139, 0, 194, 0.08);
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(8px);
}
.workflow-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 0, 122, 0.3);
    box-shadow: 0 30px 60px -12px rgba(139, 0, 194, 0.12);
    background: #ffffff;
}
.workflow-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: #fdfaff; border-radius: 16px;
    margin-bottom: 1.5rem; color: #8B00C2;
    transition: all 0.4s ease;
}
.workflow-card:hover .workflow-icon {
    background: #8B00C2; color: white; transform: rotate(10deg);
}
.step-num-styled {
    background: linear-gradient(135deg, #8B00C2 0%, #FF007A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem; font-weight: 800;
    line-height: 1; opacity: 0.12;
}

/* Tabs */
.tab-btn.active { 
    color: #8B00C2 !important; 
    font-weight: 800;
    position: relative;
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 4px;
    background: #FF007A;
    border-radius: 10px;
}

/* FAQ */
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.4s ease; opacity: 0; }
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; padding-top: 1.25rem; }
.faq-item.active .icon-box { background-color: #FF007A; transform: rotate(180deg); }
.faq-item.active .icon-box i { color: white !important; }

.nav-btn {
    width: 48px; height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    background: white; color: #94a3b8;
}
.nav-btn:hover { border-color: #8B00C2; color: #8B00C2; box-shadow: 0 0 15px var(--tech-glow); }