/* ==============================================
   SERVICES PAGE — Intro
   ============================================== */

.services-intro {
    background-color: #0F3350;
    padding: 5rem 2rem;
    text-align: center;
}

.services-intro-inner {
    max-width: 52rem;
    width: 100%;
    margin: 0 auto;
}

.services-intro h1 {
    color: #E5E4E2;
}

.services-intro p {
    color: #ACB6BD;
}

.services-intro-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 32rem) {
    .services-intro-cta {
        grid-template-columns: 1fr 1fr;
        max-width: 28rem;
    }
}

.services-intro-cta > .btn {
    display: flex;
    width: 100%;
}

/* ==============================================
   SERVICES PAGE — Hosting Panel (#hosting)
   ============================================== */

.hosting-cost-panel {
    background-color: #D6E0EF;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
}

.hosting-panel-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1A2530;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    text-align: center;
}

.hosting-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hosting-panel-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 0.0625rem solid #D3D3D3;
}

.hosting-panel-item--sep {
    border-top: 0.125rem solid #496580;
    border-bottom: none;
    margin-top: 0.25rem;
}

.hosting-panel-label {
    font-size: 1rem;
    color: #0B0B45;
}

.hosting-panel-value {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1A2530;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hosting-panel-note {
    font-size: 0.8125rem;
    color: #737F87;
    line-height: 1.5;
    margin-top: 1rem;
}

#hosting .float-image--right {
    float: none;
    width: 100%;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

@media (min-width: 40.625rem) {
    #hosting .float-image--right {
        float: right;
        width: auto;
        max-width: clamp(22rem, 36vw, 28rem);
        margin-left: 2.5rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* ==============================================
   SERVICES PAGE — Maintenance Panel (#maintenance)
   ============================================== */

.maintenance-panel {
    background-color: #9DBFB2;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
}

.maintenance-panel .maintenance-panel-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1A2530;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    text-align: center;
}

.maintenance-rate-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.maintenance-rate-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 0.0625rem solid #0000001A;
}

.maintenance-rate-label {
    font-size: 0.875rem;
    color: #0B0B45;
}

.maintenance-rate-value {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #8B4100;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


#maintenance .float-image--left {
    float: none;
    width: 100%;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

@media (min-width: 40.625rem) {
    #maintenance .float-image--left {
        float: left;
        width: auto;
        max-width: clamp(22rem, 36vw, 28rem);
        margin-right: 2.5rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

/* ==============================================
   SERVICES PAGE — Knowledge Base Flow Panel
   ============================================== */

.kb-flow-panel {
    background-color: #D6E0EF;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
}

.kb-flow-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1A2530;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    text-align: center;
}

.kb-flow-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.kb-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.kb-step-num {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #2D6FA3;
    color: #E5E4E2;
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.kb-step-content {
    min-width: 0;
}

.kb-step-label {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #1A2530;
    line-height: 1.3;
}

.kb-step-desc {
    font-size: 0.875rem;
    color: #496580;
    line-height: 1.5;
    margin-top: 0.25rem;
}

#knowledge-base-updates .float-image--right {
    float: none;
    width: 100%;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

@media (min-width: 40.625rem) {
    #knowledge-base-updates .float-image--right {
        float: right;
        width: auto;
        max-width: clamp(22rem, 36vw, 28rem);
        margin-left: 2.5rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* ==============================================
   SERVICES PAGE — Data Analysis Panel (#data-analysis)
   ============================================== */

.data-panel {
    background-color: #E0BFAB;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 100%;
}

.data-panel-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background-color: #00000014;
}

.data-panel-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.data-panel-dot--lightblue  { background-color: #549CCB; }
.data-panel-dot--green      { background-color: #008080; }
.data-panel-dot--blue       { background-color: #7393B3; }
.data-panel-dot--darkblue       { background-color: #0B0B45; }

.data-panel-label {
    font-size: 1rem;
    color: #000000;
    font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin-left: 0.375rem;
}

.data-panel-chart {
    padding: 1.25rem 1.25rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.data-chart-row {
    display: grid;
    grid-template-columns: 2.5rem 1fr 3rem;
    align-items: center;
    gap: 0.625rem;
}

.data-chart-month {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #0B0B45;
    text-align: right;
}

.data-chart-bar-wrap {
    background-color: #0000001A;
    border-radius: 0.125rem;
    height: 0.875rem;
    overflow: hidden;
}

.data-chart-bar {
    height: 100%;
    background-color: #2D6FA3;
    border-radius: 0.125rem;
}

.data-chart-bar--w38 { width: 38%; }
.data-chart-bar--w52 { width: 52%; }
.data-chart-bar--w65 { width: 65%; }
.data-chart-bar--w71 { width: 71%; }
.data-chart-bar--w84 { width: 84%; }
.data-chart-bar--w91 { width: 91%; }

.data-chart-val {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1A2530;
}

.data-panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0.0625rem solid #0000001A;
    padding: 0.875rem 1.25rem;
    gap: 0.5rem;
}

.data-panel-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.data-panel-stat-val {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1A2530;
}

.data-panel-stat-label {
    font-size: 0.6875rem;
    color: #496580;
    text-align: center;
    line-height: 1.3;
}

#data-analysis .float-image--left {
    float: none;
    width: 100%;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

@media (min-width: 40.625rem) {
    #data-analysis .float-image--left {
        float: left;
        width: clamp(22rem, 44vw, 32rem);
        margin-right: 2.5rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

/* ==============================================
   SERVICES PAGE — Data Examples List
   ============================================== */

.data-examples-block p {
    color: #E5E4E2;
}

.data-examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.data-examples-list li {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #E5E4E2;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.data-examples-list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: #D4A017;
    font-weight: 700;
}

.data-examples-list li strong {
    color: #E5E4E2;
    font-weight: 600;
}

/* ==============================================
   SERVICES PAGE — Closing Section
   ============================================== */

.services-closing p {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
