.softrak-page {
    --p-accent: #2fae66;
    --p-accent-hover: #269656;
}

/* Screen Reader Only Utility */
.softrak-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Global Buttons & Focus States */
.softrak-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.softrak-btn:focus-visible {
    outline: 3px solid var(--p-accent);
    outline-offset: 3px;
}

.softrak-btn-primary {
    background-color: var(--p-accent);
    color: #03140d;
}

.softrak-btn-primary:hover {
    background-color: var(--p-accent-hover);
}

.softrak-btn-emerald {
    background-color: #0d4a30;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.softrak-btn-emerald:hover {
    background-color: #12603f;
}

/* 1. Breadcrumbs */
.breadcrumb-nav {
    padding: 36px 0 50px 0;
}

.breadcrumb-nav .list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.breadcrumb-nav .list li {
    color: var(--text-muted-light);
}

.breadcrumb-nav .list li + li::before {
    content: "/";
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-nav .list li a {
    color: var(--text-muted-light);
    text-decoration: none;
}

.breadcrumb-nav .list li a:hover,
.breadcrumb-nav .list li a:focus-visible {
    color: var(--p-accent);
    text-decoration: underline;
}

.breadcrumb-nav .list li[aria-current="page"] {
    color: var(--p-accent);
    font-weight: 600;
    text-transform: uppercase;
}

/* 2. HERO SECTION */
.hero-section {
    padding: 0 0 64px;
}

.hero-section .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-section .badge {
    border: 1px solid #556437;
    color: var(--text-muted-light);
    margin-bottom: 20px;
}

.hero-section .title {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 1.4;
    margin-bottom: 20px;
}

.hero-section .subtitle {
    font-size: 16px;
    color: #a4b3ca;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-section .widget {
    background: #0f5d3c;
    border: 1px solid #226a4b;
    border-radius: 8px;
    padding: 36px 40px;
}

.hero-section .widget .header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.hero-section .widget .header .dots {
    display: flex;
    gap: 12px;
}

.hero-section .widget .header .dot {
    --size: 14px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
}

.hero-section .widget .header .dot.red { background-color: #e07a5f; }
.hero-section .widget .header .dot.yellow { background-color: #7ed9a3; }
.hero-section .widget .header .dot.green { background-color: #7ed9a3; }

.hero-section .widget .header .widget-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #d9f0e3;
}

.hero-section .widget .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.hero-section .widget .stats .item {
    background: #0a4a30;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.hero-section .widget .stats .item .label {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-muted-light);
    margin-bottom: 4px;
}

.hero-section .widget .stats .item .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--p-accent);
}

.hero-section .widget .stats .item .value.warning { color: #f59e0b; }
.hero-section .widget .stats .item .value.danger { color: #ef4444; }

.hero-section .widget .chart {
    background: #0a4a30;
    border-radius: 6px;
    padding: 14px;
}

.hero-section .widget .chart .label {
    font-size: 10px;
    color: var(--text-muted-light);
    display: block;
    margin-bottom: 12px;
}

.hero-section .widget .chart .bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 52px;
}

.hero-section .widget .chart .bars .bar {
    flex: 1;
    background-color: #7ed9a3;
    opacity: 0.75;
    border-radius: 3px 3px 0 0;
}

/* Hero - Key Metrics */
.hero-section .metrics {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding-top: 48px;
    max-width: 560px;
}

.hero-section .metrics .item .number {
    font-size: 28px;
    font-weight: 800;
    color: var(--p-accent);
    display: block;
    margin-bottom: 4px;
}

.hero-section .metrics .item .label {
    font-size: 12px;
    color: var(--text-muted-light);
    line-height: 1.4;
}
@media (max-width: 991px) {
    .hero-section .hero-grid{grid-template-columns: 1fr;}
}

/* 3. Applications Grid Section */
.softrak-applications-section {
    background-color: #f3f8f5;
    padding: 64px 0;
    color: #3c4859;
}

.softrak-apps-group {
    margin-bottom: 48px;
}

.softrak-apps-group:last-child {
    margin-bottom: 0;
}

.softrak-group-tag {
    font-size: 14px;
    font-weight: 700;
    color: #0f5d3c;
    display: block;
    margin-bottom: 20px;
}

.softrak-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.softrak-apps-grid.softrak-grid-two {
    grid-template-columns: repeat(2, 1fr);
}

.softrak-app-card {
    background: white;
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}
.softrak-app-card.no-bg{background: transparent;}
.softrak-app-card.v2{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 20px;
    border: solid 1px #e5e7eb;
}
.softrak-app-card.v2 .softrak-app-title{display: flex; align-items: center; gap: 10px; margin-bottom: 10px;}

.softrak-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.softrak-app-icon {
    --size: 48px;
    background: #0f5d3c;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size); height: var(--size);
    color: white;
}

.softrak-status-badge {
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    border: 0;
}

.softrak-status-live {
    background-color: #e5f4ec;
    color: #1f7a4c;
}

.softrak-status-request {
    background-color: #f3ede1;
    color: #0f5d5b;
}

.softrak-app-title {
    font-size: 18px;
    font-weight: 700;
    color: #083b2a;
    margin-bottom: 4px;
}

.softrak-app-category {
    font-size: 12px;
    font-weight: 700;
    color: #0f5d3c;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: block;
}

.softrak-app-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.softrak-app-desc p{margin-bottom: 20px;}
.softrak-app-desc p:last-child{margin-bottom: 0;}

.softrak-feature-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid; gap: 10px;
}

.softrak-feature-checklist li {
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}

.softrak-feature-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--p-accent);
    font-weight: bold;
}

.softrak-app-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: #0f5d3c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.softrak-app-link:hover,
.softrak-app-link:focus-visible {
    text-decoration: underline;
    outline-offset: 2px;
}

/* 4. Why Softrak Section */
.softrak-why-section {
    padding: 80px 0;
}
.softrak-why-section .badge{margin-bottom: 16px;}

.softrak-section-header.softrak-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.softrak-section-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin: 30px 0 20px;
}

.softrak-section-subtitle {
    color: #aebbcf;
    line-height: 1.6;
}

.softrak-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 10px;
    overflow: hidden;
}

.softrak-feature-card {
    background: #0f5d3c;
    border: 1px solid #1b4a3b;
    padding: 24px;
    transition: background-color 0.2s ease;
}

.softrak-feature-icon {
    font-size: 16px;
    margin-bottom: 22px;
    color: white;
    background: rgb(1 101 59);
    width: max-content;
}

.softrak-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.softrak-feature-card p {
    font-size: 13px;
    color: var(--text-muted-light);
    line-height: 1.55;
}

/* 5. Workflow Section */
.softrak-workflow-section {
    padding: 80px 0;
    background-color: #f3f8f5;
    color: var(--body-color);
}
.softrak-workflow-section .tagline{color: #5b6577;}
.softrak-workflow-section .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.softrak-workflow-section .steps .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: #0f5d3c;
    color: var(--text-muted-light);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}
.softrak-workflow-section .steps h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.softrak-workflow-section .steps p {
    font-size: 14px;
    line-height: 1.6;
}

/* 6. Credentials & CTA Section */
.softrak-credentials-section {
    padding: 80px 0;
}

.softrak-credentials-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    margin-bottom: 72px;
}

.softrak-cred-tag {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--p-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.softrak-cred-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
}
.softrak-cred-info .desc p {
    font-size: 14px;
    color: #a9bbcf;
    line-height: 1.6;
    margin-bottom: 16px;
}
.softrak-cred-info .desc p:last-child{margin-bottom: 0;}

.softrak-inline-link {
    color: var(--p-accent);
    text-decoration: underline;
}

.softrak-inline-link:focus-visible {
    outline: 2px solid var(--p-accent);
}

.softrak-value-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid; gap: 16px;
}

.softrak-value-list li {
    display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: flex-start;
    position: relative; list-style-type: none;
}
.softrak-value-list li .icon{--size: 46px; color: #7ed9a3; border-radius: 10px; width: var(--size); height: var(--size); background: #254a2f; display: flex; align-items: center; justify-content: center;}
.softrak-value-list strong {
    display: block;
    font-size: 16px;
    color: white;
    margin-bottom: 2px;
}

.softrak-value-list span {
    font-size: 14px;
    color: var(--text-muted-light);
}

.softrak-cred-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.softrak-cred-stat-box {
    background: #0f5d3c;
    border: 1px solid #226a4b;
    border-radius: 12px;
    padding: 24px;
}

.softrak-stat-num {
    font-size: 30px;
    font-weight: 800;
    color: #2fae66;
    display: block;
    margin-bottom: 6px;
}

.softrak-cred-stat-box strong {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
    color: white;
}

.softrak-cred-stat-box p {
    font-size: 14px;
    color: var(--text-muted-light);
    margin: 0;
    line-height: 1.4;
}

/* Banner CTA */
.softrak-cta-banner {
    background: linear-gradient(135deg, #0f4a30 0%, #062b1a 100%);
    border: 1px solid rgba(47, 174, 102, 0.25);
    border-radius: 12px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.softrak-cta-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.softrak-cta-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.softrak-cta-banner .softrak-btn-emerald {
    flex-shrink: 0;
}

/* ==========================================
MEDIA QUERIES (Flat Breakpoints)
========================================== */

@media (max-width: 992px) {
    .softrak-hero-grid,
    .softrak-credentials-grid {
        grid-template-columns: 1fr;
    }

    .softrak-apps-grid,
    .softrak-apps-grid.softrak-grid-two {
        grid-template-columns: 1fr;
    }

    .softrak-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .softrak-workflow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .softrak-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
    }
}

@media (max-width: 576px) {
    .softrak-hero-title {
        font-size: 32px;
    }

    .softrak-features-grid,
    .softrak-workflow-steps {
        grid-template-columns: 1fr;
    }
}



/* Desktop only (min-width: 1024px) Softrak Page first item shown into full width*/
/* @media screen and (min-width: 1024px) {
  .softrak-grid-two .softrak-app-card:only-child {
    grid-column: 1 / -1;
    max-width: 100%;
    justify-self: center;
    width: 100%;
  }
} */



/* Desktop only (min-width: 1024px) Softrak Page Center the last item when it's alone (odd count)*/
/* @media screen and (min-width: 1024px) {
.softrak-apps-grid .softrak-app-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
    width: 100%;
}
} */