/* ==================================================
   software-technology-solutions.css
================================================== */

.software-main-hero {
   position: relative;
   overflow: hidden;
   color: var(--site-body-color);
}

.software-main-hero::before {
   content: "";
   position: absolute;
   inset: 0 0 auto;
   height: 32rem;
   pointer-events: none;
   background:
       radial-gradient(circle at 15% 20%, rgba(var(--site-primary-rgb), .12), transparent 22rem),
       radial-gradient(circle at 85% 18%, rgba(var(--site-secondary-rgb), .16), transparent 20rem);
}

.software-main-hero .container {
   position: relative;
   z-index: 1;
}

.software-hero-title {
   max-width: 38rem;
   margin: 1rem 0 1.25rem;
   color: var(--site-dark);
   font-size: clamp(2.35rem, 5vw, 4.5rem);
   font-weight: 900;
   line-height: 1.08;
   letter-spacing: -.045em;
}

.software-hero-title span {
   color: var(--site-primary);
}

.software-hero-text {
   max-width: 36rem;
   color: rgba(var(--site-body-color-rgb), .72);
   font-size: 1.05rem;
   line-height: 1.8;
}

.software-hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: .85rem;
   margin-top: 1.5rem;
}

.software-hero-visual {
   position: relative;
   padding: 1rem;
   border-radius: 1.5rem;
   background: var(--site-white);
   box-shadow: var(--shadow-xs);
}

.software-hero-visual::after {
   content: "";
   position: absolute;
   right: -1.25rem;
   bottom: -1.25rem;
   z-index: -1;
   width: 8rem;
   height: 8rem;
   border-radius: 0 0 1.5rem 0;
   background: var(--site-secondary);
}

.software-category-link {
   height: 100%;
   min-height: 13rem;
   padding: 1.75rem;
   display: grid;
   align-content: start;
   gap: .9rem;
   border: 1px solid rgba(var(--site-dark-rgb), .08);
   border-radius: 1.35rem;
   color: var(--site-body-color);
   background: var(--site-white);
   box-shadow: var(--shadow-xs);
}

.software-category-link:hover {
   color: var(--site-body-color);
   border-color: rgba(var(--site-primary-rgb), .28);
   background: rgba(var(--site-primary-rgb), .045);
   transform: translateY(-4px);
}

.software-category-link i {
   width: 3.35rem;
   height: 3.35rem;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 1rem;
   color: var(--site-primary);
   background: rgba(var(--site-primary-rgb), .1);
   font-size: 1.45rem;
}

.software-category-link span {
   color: var(--site-dark);
   font-size: 1.1rem;
   font-weight: 900;
   line-height: 1.35;
}

.software-category-link small {
   color: rgba(var(--site-body-color-rgb), .66);
   font-size: .92rem;
   line-height: 1.65;
}

.software-scope-section {
   scroll-margin-top: 6rem;
}

.software-scope-section-alt {
   background:
       radial-gradient(circle at right top, rgba(var(--site-primary-rgb), .045), transparent 28rem),
       var(--site-bg-light);
}

.software-scope-header {
   display: grid;
   grid-template-columns: 4rem minmax(0, 1fr) 4.5rem;
   gap: 1.5rem;
   align-items: center;
   margin-bottom: 2rem;
}

.software-scope-header > i {
   width: 4.5rem;
   height: 4.5rem;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   justify-self: end;
   border-radius: 1.25rem;
   color: var(--site-primary);
   background: rgba(var(--site-primary-rgb), .1);
   font-size: 1.8rem;
}

.software-scope-count {
   color: rgba(var(--site-primary-rgb), .18);
   font-size: clamp(2.5rem, 5vw, 4rem);
   font-weight: 900;
   line-height: 1;
   letter-spacing: -.05em;
}

.software-scope-header h2 {
   margin-bottom: .75rem;
   color: var(--site-dark);
   font-size: clamp(1.9rem, 4vw, 3rem);
   font-weight: 900;
   line-height: 1.15;
   letter-spacing: -.04em;
}

.software-scope-header p {
   max-width: 44rem;
   margin: 0;
   color: rgba(var(--site-body-color-rgb), .68);
   line-height: 1.75;
}

.software-service-group {
   height: 100%;
   padding: 1.5rem;
   border: 1px solid rgba(var(--site-dark-rgb), .08);
   border-radius: 1.25rem;
   background: var(--site-white);
   box-shadow: var(--shadow-xs);
}

.software-service-group:hover {
   border-color: rgba(var(--site-primary-rgb), .24);
   transform: translateY(-4px);
}

.software-service-group h3 {
   margin-bottom: 1rem;
   color: var(--site-dark);
   font-size: 1.05rem;
   font-weight: 900;
   line-height: 1.35;
}

.software-service-group ul {
   display: grid;
   gap: .65rem;
   margin: 0;
   padding: 0;
   list-style: none;
}

.software-service-group li {
   position: relative;
   padding-left: 1.65rem;
   color: rgba(var(--site-body-color-rgb), .68);
   font-size: .92rem;
   line-height: 1.55;
}

.software-service-group li::before {
   content: "\f105";
   position: absolute;
   left: 0;
   top: .05rem;
   width: 1.1rem;
   height: 1.1rem;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   color: var(--site-primary);
   background: rgba(var(--site-primary-rgb), .1);
   font-family: "Font Awesome 7 Free";
   font-size: .65rem;
   font-weight: 900;
}

@media (max-width: 991.98px) {
   .software-hero-visual::after {
       display: none;
   }

   .software-scope-header {
       grid-template-columns: 1fr;
   }

   .software-scope-header > i {
       justify-self: start;
   }
}

@media (max-width: 575.98px) {
   .software-hero-actions {
       width: 100%;
   }

   .software-category-link,
   .software-service-group,
   .software-hero-visual {
       border-radius: 1.15rem;
   }

   .software-category-link,
   .software-service-group {
       padding: 1.35rem;
   }
}


/* ==================================================
   software-technology-solutions-coded-visuals.css
   Uses shared style.css components + page-specific coded visuals
================================================== */

.software-main-hero {
    position: relative;
    overflow: hidden;
    color: var(--site-body-color);
}

.software-main-hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 36rem;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(var(--site-primary-rgb), .12), transparent 22rem),
        radial-gradient(circle at 85% 18%, rgba(var(--site-secondary-rgb), .16), transparent 20rem);
}

.software-main-hero .container {
    position: relative;
    z-index: 1;
}

.software-hero-title {
    max-width: 38rem;
    margin: 1rem 0 1.25rem;
    color: var(--site-dark);
    font-size: clamp(2.35rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.software-hero-title span {
    color: var(--site-primary);
}

.software-hero-text {
    max-width: 36rem;
    color: rgba(var(--site-body-color-rgb), .72);
    font-size: 1.05rem;
    line-height: 1.8;
}

.software-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.5rem;
}

/* ==================================================
   HERO ADMIN DASHBOARD MOCKUP
================================================== */

.software-hero-dashboard {
    position: relative;
    min-height: 34rem;
    max-width: 72rem;
    margin-inline: auto;
    isolation: isolate;
}

.software-hero-dashboard::before {
    content: "";
    position: absolute;
    inset: 2rem 1rem 0;
    z-index: -2;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(var(--site-primary-rgb), .12), transparent 16rem),
        radial-gradient(circle at 80% 35%, rgba(var(--site-secondary-rgb), .16), transparent 18rem),
        linear-gradient(180deg, rgba(var(--site-white-rgb), .9), rgba(var(--site-bg-light-rgb), .45));
}

.software-hero-dashboard::after {
    content: "";
    position: absolute;
    left: 6rem;
    right: 6rem;
    bottom: 1.5rem;
    z-index: -1;
    height: 6rem;
    border-radius: 50%;
    background: rgba(var(--site-dark-rgb), .08);
    filter: blur(2.5rem);
}

.hero-dashboard-sidebar,
.hero-dashboard-main,
.hero-dashboard-calendar,
.hero-dashboard-mobile,
.hero-dashboard-float {
    position: absolute;
    border: 1px solid rgba(var(--site-dark-rgb), .06);
    background: rgba(var(--site-white-rgb), .92);
    box-shadow: 0 1.5rem 4rem rgba(var(--site-dark-rgb), .08);
    backdrop-filter: blur(16px);
}

.hero-dashboard-sidebar,
.hero-dashboard-main,
.hero-dashboard-calendar,
.hero-dashboard-mobile {
    border-radius: 1.35rem;
}

.hero-dashboard-sidebar {
    left: 2rem;
    top: 4.5rem;
    width: 12rem;
    min-height: 22rem;
    padding: 1.25rem;
    z-index: 2;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1.35rem;
    color: var(--site-dark);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.dashboard-logo span {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: .4rem;
    background: linear-gradient(135deg, var(--site-secondary), var(--site-primary));
}

.hero-dashboard-sidebar ul {
    display: grid;
    gap: .5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-dashboard-sidebar li {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 2.2rem;
    padding: .55rem .65rem;
    border-radius: .7rem;
    color: rgba(var(--site-body-color-rgb), .55);
    font-size: .78rem;
    font-weight: 700;
}

.hero-dashboard-sidebar li.active {
    color: var(--site-primary);
    background: rgba(var(--site-primary-rgb), .1);
}

.hero-dashboard-main {
    left: 10rem;
    top: 2rem;
    width: 23rem;
    min-height: 27rem;
    padding: 1.35rem;
    z-index: 3;
}

.dashboard-search {
    display: flex;
    align-items: center;
    gap: .7rem;
    height: 2.6rem;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
    border-radius: 999px;
    color: rgba(var(--site-body-color-rgb), .42);
    background: rgba(var(--site-bg-light-rgb), .85);
    font-size: .82rem;
    font-weight: 700;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.dashboard-title > span {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, var(--site-secondary), transparent 42%),
        var(--site-primary);
}

.dashboard-title strong,
.dashboard-title small,
.dashboard-card span,
.dashboard-card small,
.dashboard-progress span {
    display: block;
}

.dashboard-title strong {
    color: var(--site-dark);
    font-size: .95rem;
    font-weight: 900;
}

.dashboard-title small {
    color: rgba(var(--site-body-color-rgb), .48);
    font-size: .74rem;
    font-weight: 700;
}

.dashboard-card,
.dashboard-progress {
    padding: 1.1rem;
    margin-top: .85rem;
    border-radius: 1rem;
    background: var(--site-white);
    box-shadow: 0 .75rem 2rem rgba(var(--site-dark-rgb), .06);
}

.dashboard-card span,
.dashboard-progress span {
    margin-bottom: .45rem;
    color: rgba(var(--site-body-color-rgb), .52);
    font-size: .75rem;
    font-weight: 800;
}

.dashboard-card strong,
.dashboard-progress strong {
    display: block;
    color: var(--site-dark);
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1.1;
}

.dashboard-card small {
    margin-top: .35rem;
    color: var(--site-primary);
    font-size: .74rem;
    font-weight: 800;
}

.dashboard-progress div {
    height: .45rem;
    margin-top: .8rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(var(--site-primary-rgb), .12);
}

.dashboard-progress div i {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: var(--site-primary);
}

.hero-dashboard-calendar {
    right: 6rem;
    top: 1rem;
    width: 18.5rem;
    min-height: 26rem;
    padding: 1.35rem;
    z-index: 2;
}

.dashboard-panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-dashboard-calendar h3 {
    margin: 0;
    color: var(--site-dark);
    font-size: 1.15rem;
    font-weight: 900;
}

.hero-dashboard-calendar p {
    margin: .25rem 0 1.1rem;
    color: rgba(var(--site-body-color-rgb), .48);
    font-size: .78rem;
}

.mini-calendar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .45rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mini-calendar span,
.mini-calendar b {
    min-height: 1.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .45rem;
    font-size: .72rem;
}

.mini-calendar span {
    color: rgba(var(--site-body-color-rgb), .45);
    font-weight: 800;
}

.mini-calendar b {
    color: rgba(var(--site-body-color-rgb), .62);
    background: rgba(var(--site-bg-light-rgb), .7);
    font-weight: 800;
}

.mini-calendar b:nth-of-type(9) {
    color: var(--site-white);
    background: var(--site-primary);
}

.calendar-task {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-top: .65rem;
    padding: .7rem;
    border-radius: .85rem;
    background: rgba(var(--site-bg-light-rgb), .75);
}

.calendar-task i {
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background: var(--site-secondary);
}

.calendar-task strong,
.calendar-task span {
    display: block;
}

.calendar-task strong {
    color: var(--site-dark);
    font-size: .78rem;
    font-weight: 900;
}

.calendar-task span {
    color: rgba(var(--site-body-color-rgb), .5);
    font-size: .7rem;
}

.hero-dashboard-mobile {
    right: 1rem;
    top: 4rem;
    width: 9rem;
    min-height: 22rem;
    padding: 1rem .8rem;
    border-radius: 1.5rem;
    z-index: 4;
}

.mobile-notch {
    width: 2.8rem;
    height: .3rem;
    margin: 0 auto 1.1rem;
    border-radius: 999px;
    background: rgba(var(--site-dark-rgb), .16);
}

.mobile-tabs {
    display: flex;
    gap: .4rem;
    margin-bottom: 1rem;
}

.mobile-tabs span {
    flex: 1;
    height: 1.5rem;
    border-radius: 999px;
    background: rgba(var(--site-primary-rgb), .1);
}

.mobile-tabs span:first-child {
    background: var(--site-primary);
}

.mobile-row {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: .45rem;
    margin-bottom: .75rem;
    padding: .65rem .45rem;
    border-radius: .75rem;
    background: rgba(var(--site-bg-light-rgb), .75);
}

.mobile-row i {
    width: .75rem;
    height: .75rem;
    margin-top: .15rem;
    border-radius: 50%;
    background: var(--site-primary);
}

.mobile-row strong,
.mobile-row span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-row strong {
    color: var(--site-dark);
    font-size: .62rem;
    font-weight: 900;
}

.mobile-row span {
    color: rgba(var(--site-body-color-rgb), .45);
    font-size: .58rem;
    font-weight: 700;
}

.hero-dashboard-float {
    z-index: 5;
    border-radius: 1.15rem;
}

.hero-report-card {
    left: 0;
    top: 22rem;
    width: 8.5rem;
    min-height: 8.5rem;
    padding: 1.1rem;
    color: var(--site-white);
    background: linear-gradient(135deg, var(--site-secondary), var(--site-secondary-hover));
}

.hero-security-card {
    right: -1rem;
    bottom: 4rem;
    width: 9.5rem;
    min-height: 8.8rem;
    padding: 1.15rem;
    color: var(--site-white);
    background: linear-gradient(135deg, var(--site-primary), var(--site-primary-hover));
}

.hero-report-card i,
.hero-security-card i {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    background: rgba(var(--site-white-rgb), .2);
}

.hero-report-card strong,
.hero-report-card span,
.hero-security-card strong,
.hero-security-card span {
    display: block;
}

.hero-report-card strong,
.hero-security-card strong {
    margin-bottom: .3rem;
    font-size: .82rem;
    font-weight: 900;
}

.hero-report-card span,
.hero-security-card span {
    font-size: .68rem;
    line-height: 1.45;
}

.hero-report-card span {
    color: rgba(var(--site-white-rgb), .82);
}
.hero-security-card span {
    color: rgba(var(--site-white-rgb), .82);
}

/* ==================================================
   PROMO CODED VISUAL
================================================== */

.software-code-panel {
    width: 100%;
    padding: 1.25rem;
    border-radius: 1.4rem;
    background: rgba(var(--site-white-rgb), .94);
    box-shadow: var(--shadow-xs);
}

.code-window {
    display: flex;
    gap: .45rem;
    margin-bottom: 1rem;
}

.code-window span {
    width: .75rem;
    height: .75rem;
    border-radius: 50%;
    background: var(--site-secondary);
}

.code-window span:nth-child(2) {
    background: var(--site-primary);
}

.code-window span:nth-child(3) {
    background: rgba(var(--site-dark-rgb), .25);
}

.code-layout {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1rem;
}

.code-sidebar {
    min-height: 15rem;
    padding: 1rem .75rem;
    display: grid;
    align-content: start;
    gap: .65rem;
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(var(--site-primary-rgb), .18), transparent),
        rgba(var(--site-bg-light-rgb), .9);
}

.code-sidebar i {
    height: .75rem;
    border-radius: 999px;
    background: rgba(var(--site-primary-rgb), .24);
}

.code-content {
    min-height: 15rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
}

.code-stat,
.code-chart {
    border-radius: 1rem;
    background: rgba(var(--site-bg-light-rgb), .95);
}

.code-stat {
    min-height: 5rem;
    padding: 1rem;
}

.code-stat span {
    display: block;
    width: 2rem;
    height: .45rem;
    margin-bottom: .9rem;
    border-radius: 999px;
    background: rgba(var(--site-primary-rgb), .2);
}

.code-stat strong {
    color: var(--site-dark);
    font-size: 1.25rem;
    font-weight: 900;
}

.code-chart {
    grid-column: 1 / -1;
    min-height: 8rem;
    padding: 1rem;
    display: flex;
    align-items: end;
    gap: .65rem;
}

.code-chart i {
    flex: 1;
    border-radius: .45rem .45rem 0 0;
    background: var(--site-primary);
}

.code-chart i:nth-child(1) { height: 42%; }
.code-chart i:nth-child(2) { height: 76%; background: var(--site-secondary); }
.code-chart i:nth-child(3) { height: 58%; }
.code-chart i:nth-child(4) { height: 88%; background: var(--site-secondary); }
.code-chart i:nth-child(5) { height: 46%; }

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1199.98px) {
    .hero-dashboard-sidebar { left: 0; }
    .hero-dashboard-main { left: 6.5rem; }
    .hero-dashboard-calendar { right: 3rem; }
    .hero-dashboard-mobile { right: 0; }
}

@media (max-width: 991.98px) {
    .software-hero-dashboard {
        min-height: 31rem;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .software-hero-actions {
        width: 100%;
    }

    .software-hero-dashboard {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .software-hero-dashboard::before,
    .software-hero-dashboard::after {
        display: none;
    }

    .hero-dashboard-sidebar,
    .hero-dashboard-main,
    .hero-dashboard-calendar,
    .hero-dashboard-mobile,
    .hero-dashboard-float {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: auto;
    }

    .hero-dashboard-sidebar,
    .hero-dashboard-mobile,
    .hero-report-card,
    .hero-security-card {
        display: none;
    }

    .code-layout {
        grid-template-columns: 1fr;
    }

    .code-sidebar {
        display: none;
    }

    .code-content {
        grid-template-columns: 1fr;
    }
}


/* ==================================================
   ADMIN PANEL VISUAL REFINEMENTS
   Image-less management panel visuals for software page
================================================== */

.software-promo-primary .software-code-panel {
    min-width: 0;
}

.dashboard-card-soft {
    background: linear-gradient(135deg, rgba(var(--site-primary-rgb), .08), rgba(var(--site-secondary-rgb), .1));
}

.hero-dashboard-sidebar li i {
    width: 1rem;
    color: currentColor;
    font-size: .78rem;
    text-align: center;
}

.dashboard-panel-top > i {
    color: rgba(var(--site-body-color-rgb), .42);
}

.calendar-task:nth-of-type(3) i {
    background: var(--site-primary);
}

.calendar-task:nth-of-type(4) i {
    background: rgba(var(--site-dark-rgb), .24);
}

.software-code-panel {
    color: var(--site-body-color);
}

.software-promo-primary .section-label {
    color: var(--site-white);
    background: rgba(var(--site-white-rgb), .16);
}

@media (max-width: 575.98px) {
    .hero-dashboard-main,
    .hero-dashboard-calendar,
    .software-code-panel {
        border-radius: 1.15rem;
    }

    .hero-dashboard-main,
    .hero-dashboard-calendar {
        padding: 1rem;
    }
}
