/* ==========================================================================
   SOFTWARE SOLUTIONS - MODERN REDESIGN (ULTRA-PREMIUM)
   ========================================================================== */

:root {
    --sw-bg: #030816;
    --sw-bg-rgb: 3, 8, 22;
    --sw-accent: #59e00a; /* Brand Green */
    --sw-accent-rgb: 89, 224, 10;
    --sw-glass: rgba(255, 255, 255, 0.03);
    --sw-glass-border: rgba(255, 255, 255, 0.1);
    --sw-text: #e2e8f0;
}

.software-modern-page {
    background-color: var(--sw-bg);
    color: var(--sw-text);
    font-family: 'Inter', sans-serif;
}

/* --- Hero Section --- */
.sw-hero {
    position: relative;
    padding: 200px 0 150px;
    background: url('assets/software-hero.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.sw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(var(--sw-bg-rgb), 0.7) 0%, var(--sw-bg) 90%);
    z-index: 1;
}

.sw-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.sw-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.sw-hero h1 span {
    color: var(--sw-accent);
}

.sw-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
}

/* --- Types Grid --- */
.sw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 80px 0;
}

.sw-card {
    background: var(--sw-glass);
    border: 1px solid var(--sw-glass-border);
    border-radius: 2rem;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.sw-card:hover {
    transform: translateY(-10px);
    border-color: var(--sw-accent);
    background: rgba(var(--sw-accent-rgb), 0.05);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.sw-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--sw-accent-rgb), 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-accent);
    margin-bottom: 2rem;
}

.sw-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.sw-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sw-card-features {
    list-style: none;
    padding: 0;
}

.sw-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.sw-card-features li svg {
    color: var(--sw-accent);
}

/* --- Features Section --- */
.sw-features-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.sw-features-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.sw-features-row:nth-child(even) {
    flex-direction: row-reverse;
}

.sw-feature-content {
    flex: 1;
}

.sw-feature-image {
    flex: 1;
    background: var(--sw-glass);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid var(--sw-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.sw-feature-content p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* --- Process Section --- */
.sw-process {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--sw-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
}

.step-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 0.875rem;
    color: #64748b;
}

/* --- Shared Utility Styles --- */
.section-tag {
    color: var(--sw-accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.section-title-modern {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.section-title-modern span {
    color: var(--sw-accent);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-modern li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.feature-list-modern li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sw-accent);
    font-weight: 800;
}

/* Support Box (Reusing pattern) */
.support-box {
    background: var(--sw-glass);
    border-radius: 3rem;
    padding: 5rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    border: 1px solid var(--sw-glass-border);
}

.support-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.support-content h2 span {
    color: var(--sw-accent);
}

@media (max-width: 992px) {
    .sw-features-row {
        flex-direction: column !important;
        text-align: center;
    }

    .support-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem;
    }
}
