/* === YOUR FULL ORIGINAL CSS BELOW === */

#sw-final-wrapper {
    --sw-bg: #f8fafc;
    --sw-text-main: #1e293b;
    --sw-text-muted: #64748b;
    --sw-accent: #0ea5e9;
    --sw-danger: #ef4444;
    --sw-card-bg: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(to bottom, #f1f5f9 0%, #cbd5e1 100%);
    color: var(--sw-text-main);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}
#sw-final-wrapper * { box-sizing: border-box; }

/* Typography */
#sw-final-wrapper h1, #sw-final-wrapper h2, #sw-final-wrapper h3, #sw-final-wrapper h4 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 0;
}
#sw-final-wrapper h1 { font-size: 3.5rem; letter-spacing: -1.5px; }
#sw-final-wrapper h2 { font-size: 2.25rem; letter-spacing: -1px; }
#sw-final-wrapper h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
#sw-final-wrapper h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
#sw-final-wrapper p { font-size: 1.1rem; color: var(--sw-text-muted); margin-bottom: 1.5rem; }

/* Layout */
.sw-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 5; }
.sw-section { padding: 100px 0; border-bottom: 1px solid rgba(255,255,255,0.5); position: relative; z-index: 5; }
.sw-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.sw-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* Logo */
.sw-top-logo {
    position: absolute; top: 30px; left: 40px; z-index: 200;
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-weight: 800; font-size: 1.1rem; color: #0f172a;
    letter-spacing: -0.5px; transition: opacity 0.2s;
}
.sw-top-logo:hover { opacity: 0.8; }
.sw-logo-icon { width: 24px; height: 24px; color: var(--sw-accent); }

/* Buttons */
.sw-btn {
    display: inline-block;
    background: #0f172a; color: white;
    padding: 14px 32px; border-radius: 6px;
    text-decoration: none; font-weight: 600;
    transition: all 0.2s ease; border: 1px solid #0f172a;
    cursor: pointer; position: relative; z-index: 20;
}
.sw-btn:hover { background: #334155; transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(0,0,0,0.2); }
.sw-btn-outline { background: transparent; color: #0f172a; }
.sw-btn-outline:hover { background: white; }

/* Cards & badges */
.sw-card {
    background: var(--sw-card-bg); padding: 40px; border-radius: 12px;
    border: 1px solid white; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    backdrop-filter: blur(12px);
}
.sw-badge {
    background: white; color: var(--sw-accent); padding: 6px 12px; border-radius: 4px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid #bae6fd; display: inline-block; margin-bottom: 20px;
}

/* Modals */
.sw-modal-backdrop {
    position: fixed; inset: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(8px);
    z-index: 9999; display: none;
    align-items: center; justify-content: center;
}
.sw-modal-box {
    background: white; padding: 40px; border-radius: 12px; max-width: 450px; width: 90%;
    text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative;
    max-height: 90vh; overflow-y: auto;
}
.sw-close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: #94a3b8; }

/* Captcha & email reveal */
.sw-captcha-container { background: #f1f5f9; padding: 20px; border-radius: 6px; border: 1px solid #cbd5e1; margin: 20px 0; display: flex; align-items: center; gap: 15px; justify-content: center; }
.sw-email-reveal { display: none; background: #f0f9ff; border: 1px solid #bae6fd; padding: 20px; border-radius: 8px; margin-top: 20px; }

/* Dashboard, process boxes, arrows, etc. — the rest of your original CSS */
.sw-dashboard { background: #0f172a; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px -5px rgba(0,0,0,0.3); font-family: monospace; font-size: 0.8rem; border: 1px solid #334155; }
/* … keep pasting everything you originally had inside the <style> tag until the very last } */

/* Responsive */
@media (max-width: 768px) {
    #sw-final-wrapper h1 { font-size: 2.5rem; }
    #sw-final-wrapper h2 { font-size: 1.8rem; }
    .sw-section { padding: 60px 0; }
    .sw-grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .sw-grid-3 { grid-template-columns: 1fr; }
    .sw-top-logo { left: 20px; top: 20px; font-size: 1rem; }
}