/* SaaS Clean Theme Styling */
.nazsell-saas-wrapper {
    position: relative;
    background-color: #f7faff;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 30px 6%;
    min-height: 100vh;
    overflow: hidden;
}

/* Vector Curved Background */
.nazsell-bg-shape {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 600px;
    height: 700px;
    background: linear-gradient(135deg, #e0efff 0%, #edf4ff 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    z-index: 1;
}

/* Views & Switching */
.nazsell-view {
    display: none;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nazsell-view.active {
    display: block;
    opacity: 1;
}

/* Top Navbar */
.nazsell-saas-nav {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.nazsell-saas-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #2d3748;
    cursor: pointer;
}

.nazsell-saas-logo .logo-box {
    width: 22px;
    height: 22px;
    background-color: #3b82f6;
    border-radius: 6px;
}

.nazsell-saas-menu { display: flex; gap: 25px; }

.nazsell-saas-menu .nav-link {
    text-decoration: none;
    color: #718096;
    font-weight: 600;
    font-size: 15px;
}

.nazsell-saas-menu .nav-link.active { color: #2b6cb0; }

/* Buttons */
.btn-saas-pill {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-saas-primary { background-color: #3b82f6; color: #ffffff; }
.btn-saas-accent { background-color: #4299e1; color: #ffffff; }

.btn-saas-accent:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
}

.full-width { width: 100%; margin-top: 10px; }

/* Hero Layout */
.nazsell-hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 900;
    color: #2d3748;
    margin-bottom: 20px;
}

.hero-title span { color: #4a5568; font-weight: 700; }

.hero-subtext {
    font-size: 16px;
    line-height: 1.7;
    color: #718096;
    max-width: 450px;
    margin-bottom: 30px;
}

/* Vector Card Mockup */
.nazsell-hero-graphic { position: relative; display: flex; justify-content: center; }

.illustration-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.floating-badge {
    position: absolute;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.badge-store { top: 20px; right: 20px; border-left: 4px solid #48bb78; }
.badge-warehouse { top: 75px; left: -15px; border-left: 4px solid #4299e1; }

.vector-card { background: #f8fafc; border-radius: 12px; padding: 20px; border: 1px solid #e2e8f0; }
.card-line { height: 8px; background: #cbd5e0; border-radius: 4px; margin-bottom: 10px; }
.card-line.long { width: 70%; }
.card-line.short { width: 40%; }

.card-chart { display: flex; align-items: flex-end; gap: 10px; height: 70px; margin-top: 15px; }
.card-chart span { flex: 1; background: #3b82f6; border-radius: 4px; }
.card-chart span:nth-child(1) { height: 40%; opacity: 0.4; }
.card-chart span:nth-child(2) { height: 75%; opacity: 0.7; }
.card-chart span:nth-child(3) { height: 50%; opacity: 0.5; }
.card-chart span:nth-child(4) { height: 90%; }

/* Form Container Styling */
.nazsell-custom-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    max-width: 600px;
    margin: 0 auto;
}

.nazsell-login-box { max-width: 420px; }

.custom-field { margin-bottom: 18px; }
.custom-field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #4a5568; }
.custom-field input { width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 8px; background: #f8fafc; }

.nazsell-back-btn { background: none; border: none; color: #3b82f6; font-weight: 700; cursor: pointer; margin-bottom: 15px; }
.switch-link { text-align: center; margin-top: 15px; font-size: 14px; }