.services-page-bg {
    background-color: #10222C;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 14px);
    min-height: 100vh;
    padding-top: 60px;
}
.services-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.services-wrap .page-header { text-align: center; margin-bottom: 50px; }
.services-wrap .title-line-wrap { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 16px; }
.services-wrap .title-line { width: 180px; max-width: 20vw; height: 1px; background: rgba(255,255,255,0.4); }
.services-wrap .page-header h1 { color: #FFFFFF; font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0; white-space: nowrap; }
.services-wrap .page-header p { color: #A9C2CE; font-size: 16px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
.pricing-card {
    background: #1B3A4B;
    border-top: 3px solid #2E8B7A;
    border-radius: 12px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.pricing-card.featured { border-top-color: #4FB3A0; background: #142A38; }
.pricing-card h3 { color: #4FB3A0; font-size: 18px; margin-bottom: 12px; }
.pricing-card .price { color: #FFFFFF; font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.pricing-card .price-note { color: #8FA89C; font-size: 12px; font-style: italic; margin-bottom: 14px; }
.pricing-card .pricing-desc { color: #C9D9DE; font-size: 14px; line-height: 1.5; }

.pricing-note {
    text-align: center;
    color: #A9C2CE;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 40px;
}
.pricing-cta { text-align: center; }
.services-wrap-btn {
    display: inline-block;
    background: #F4F8FA;
    color: #1B3A4B;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
}
.services-wrap-btn:hover { background: #4FB3A0; color: #FFFFFF; }

@media (max-width: 600px) {
    .services-wrap .title-line { width: 40px; }
    .services-wrap .page-header h1 { font-size: 24px; white-space: normal; }
}