/* ============================================================
   garrisonOne — Page enhancements
   Loaded on all service, compliance, and consulting pages
   ============================================================ */

/* Eyebrow label above H1 */
.go-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #51b7eb;
    margin-bottom: 10px;
}

/* Stats strip — sits in a dark section below the banner */
.go-stats-strip {
    background: #0a2540;
    padding: 28px 0;
}
.go-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 820px;
    margin: 0 auto;
}
.go-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}
.go-stat-n {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.go-stat-l {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.35;
}
@media (max-width: 600px) {
    .go-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Service card top-border accent — default blue */
.specific-services .content-inner {
    border-top: 3px solid #2881d3;
    border-radius: 0 0 8px 8px;
    padding-top: 14px;
}

/* Category tag above service card h4 */
.go-svc-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #2881d3;
    margin-bottom: 5px;
}
.go-svc-tag.t-amber  { color: #ba7517; }
.go-svc-tag.t-teal   { color: #0f6e56; }
.go-svc-tag.t-red    { color: #a32d2d; }
.go-svc-tag.t-purple { color: #534ab7; }
.specific-services .content-inner.t-amber  { border-top-color: #ba7517; }
.specific-services .content-inner.t-teal   { border-top-color: #0f6e56; }
.specific-services .content-inner.t-red    { border-top-color: #a32d2d; }
.specific-services .content-inner.t-purple { border-top-color: #534ab7; }

/* Process strip */
.go-process {
    background: #f5f8fc;
    padding: 44px 0 38px;
}
.go-process-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f2d4a;
    margin-bottom: 28px;
    text-align: center;
}
.go-steps {
    display: flex;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.go-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #d0dce8;
}
.go-step {
    flex: 1;
    text-align: center;
    padding: 0 8px;
}
.go-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f3d6e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
}
.go-step h5 {
    font-size: 12px;
    font-weight: 700;
    color: #0f2d4a;
    margin-bottom: 4px;
}
.go-step p {
    font-size: 10px;
    color: #6b7a8d;
    line-height: 1.45;
}
@media (max-width: 600px) {
    .go-steps { flex-wrap: wrap; }
    .go-steps::before { display: none; }
    .go-step { width: 50%; flex: none; margin-bottom: 16px; }
}
