:root {
    --sw-dark: #1e1b4b; /* Deep Indigo */
    --sw-primary: #6366f1; /* Indigo */
    --sw-accent: #a855f7; /* Purple */
    --sw-text: #334155;
    --sw-bg: #f8fafc;
}

body { background-color: var(--sw-bg); font-family: 'Plus Jakarta Sans', sans-serif; color: var(--sw-text); }

/* 1. HERO SECTION (Tech & Speed Focused) */
.software-hero {
    position: relative; padding: 160px 0 120px; text-align: center;
    background: radial-gradient(circle at bottom, #312e81 0%, #0f172a 100%);
    color: white; overflow: hidden;
}

/* Animated Grid Background */
.hero-grid-bg {
    position: absolute; inset: 0; 
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.3;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    animation: grid-move 20s linear infinite;
}
@keyframes grid-move { 0% { transform: perspective(500px) rotateX(60deg) translateY(0) scale(2); } 100% { transform: perspective(500px) rotateX(60deg) translateY(40px) scale(2); } }

.sw-badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: linear-gradient(90deg, var(--sw-primary), var(--sw-accent));
    color: white; font-size: 0.8rem; font-weight: 800; margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); text-transform: uppercase; letter-spacing: 1px;
}
.sw-title {
    font-size: 3rem; lg:font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #c7d2fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sw-lead { font-size: 1.2rem; color: #a5b4fc; max-w-3xl mx-auto; line-height: 1.6; }

/* 2. STATS BAR */
.stats-bar {
    margin-top: -50px; position: relative; z-index: 10; padding: 0 20px;
}
.stats-container {
    max-width: 1000px; margin: 0 auto; background: white; border-radius: 20px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1); border: 1px solid #e2e8f0;
    display: grid; grid-template-columns: repeat(3, 1fr); padding: 30px; text-align: center;
}
.stat-item { border-right: 1px solid #f1f5f9; }
.stat-item:last-child { border: none; }
.stat-val { font-size: 2.5rem; font-weight: 800; color: var(--sw-primary); margin-bottom: 5px; }
.stat-label { font-size: 0.9rem; font-weight: 600; color: #64748b; text-transform: uppercase; }

/* 3. FEATURE SECTIONS (Wide Panels) */
.feature-panel { padding: 100px 0; }
.fp-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.fp-title { font-size: 2.5rem; font-weight: 800; color: var(--sw-dark); margin-bottom: 15px; }
.fp-desc { font-size: 1.1rem; color: #64748b; }

.feature-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
.feat-card {
    background: white; padding: 40px; border-radius: 24px; border: 1px solid #e2e8f0;
    transition: 0.3s; position: relative; overflow: hidden;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.15); border-color: var(--sw-primary); }

.fc-icon {
    width: 60px; height: 60px; background: #e0e7ff; color: var(--sw-primary);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin-bottom: 25px; transition: 0.3s;
}
.feat-card:hover .fc-icon { background: var(--sw-primary); color: white; transform: scale(1.1); }

.fc-title { font-size: 1.5rem; font-weight: 800; color: var(--sw-dark); margin-bottom: 15px; }
.fc-text { font-size: 1rem; color: #475569; line-height: 1.6; margin-bottom: 25px; }

.fc-list { list-style: none; padding: 0; }
.fc-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #334155; margin-bottom: 10px; font-size: 0.9rem; }
.fc-list i { color: var(--sw-accent); }

/* 4. SPEED SECTION (Dark Highlight) */
.speed-section {
    background: #0f172a; color: white; padding: 100px 0; position: relative; overflow: hidden;
}
.speed-content {
    position: relative; z-index: 10; text-align: center; max-width: 800px; margin: 0 auto;
}
.speed-meter {
    font-size: 6rem; font-weight: 900; background: linear-gradient(to right, #4ade80, #22d3ee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 20px 0;
    display: block; letter-spacing: -3px;
}

/* 5. FAQ (Clean) */
.faq-clean { max-width: 800px; margin: 0 auto 100px; }
.faq-row { border-bottom: 1px solid #e2e8f0; }
.faq-q {
    padding: 25px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 1.1rem; color: var(--sw-dark);
}
.faq-q:hover { color: var(--sw-primary); }
.faq-a { max-height: 0; overflow: hidden; transition: 0.3s; color: #64748b; padding-bottom: 0; }
.faq-row.active .faq-a { max-height: 200px; padding-bottom: 25px; }
.faq-row.active .faq-q { color: var(--sw-primary); }

@media (max-width: 1024px) {
    .sw-title { font-size: 2.5rem; }
    .stats-container { grid-template-columns: 1fr; gap: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid #f1f5f9; padding-bottom: 20px; }
    .stat-item:last-child { border: none; padding-bottom: 0; }
    .feature-grid { grid-template-columns: 1fr; }
}