:root {
    --services-ink: #111827;
    --services-navy: #17212b;
    --services-muted: #596873;
    --services-line: #dfe5e9;
    --services-soft: #f7f9fa;
    --services-green: #4caf50;
    --services-green-dark: #388e3c;
    --services-white: #ffffff;
}

html { background: var(--services-white); }

body.services-page {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--services-ink);
    background: var(--services-white);
    font-family: "Space Grotesk", Arial, Helvetica, sans-serif !important;
    -webkit-font-smoothing: antialiased;
}

body.services-page .container {
    width: min(1180px, calc(100% - 48px));
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

body.services-page .bl-header {
    position: relative;
    inset: auto;
    background: var(--services-white) !important;
    border-bottom: 1px solid rgba(17, 24, 39, .08);
    box-shadow: none;
}

body.services-page .bl-container { max-width: 1320px; height: 68px; }
body.services-page .bl-nav-list { gap: 36px; }
body.services-page .bl-actions .bl-search-btn { display: none !important; }
body.services-page .bl-nav-link { color: var(--services-ink) !important; }
body.services-page .bl-nav-link:hover,
body.services-page .bl-nav-link.active,
body.services-page .bl-dropdown:hover .bl-nav-link { color: var(--services-green) !important; }

body.services-page main { background: var(--services-white); }

body.services-page .inner-hero {
    min-height: 0;
    padding: 32px 0 30px;
    overflow: hidden;
    text-align: center;
    background: var(--services-white);
    border-bottom: 1px solid #eef2f4;
}

body.services-page .inner-hero::before,
body.services-page .inner-hero::after,
body.services-page .inner-content::before { display: none; }

body.services-page .inner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 11px;
    color: var(--services-green-dark);
    background: rgba(255, 255, 255, .82);
    border: 1px solid #dfe8e2;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.services-page .inner-kicker i { color: var(--services-green); font-size: 8px; }

body.services-page .inner-title {
    margin: 0 0 14px;
    color: var(--services-ink);
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.065em;
}

body.services-page .inner-subtitle {
    max-width: 650px;
    margin: 0 auto;
    color: var(--services-muted);
    font-size: 13px;
    line-height: 1.35;
}

body.services-page .inner-content {
    position: relative;
    padding: 34px 0 94px;
    background: var(--services-soft);
}

body.services-page .services-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 22px;
    color: var(--services-muted);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

body.services-page .services-intro p { margin: 0; }
body.services-page .services-intro-line {
    display: none;
}

body.services-page .modern-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.services-page .modern-service-card {
    min-height: 312px;
    padding: 22px 24px 24px;
    background: var(--services-white);
    border: 1px solid var(--services-line);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(31, 72, 43, .035);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.services-page .modern-service-card:hover {
    transform: translateY(-4px);
    border-color: #b9d8bc;
    box-shadow: 0 16px 34px rgba(31, 72, 43, .09);
}

body.services-page .modern-service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

body.services-page .modern-service-number {
    padding-top: 5px;
    color: #779087;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

body.services-page .modern-service-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: var(--services-green-dark);
    background: #eaf5e9;
    border: 1px solid #d8ebd9;
    border-radius: 50%;
    font-size: 17px;
}

body.services-page .modern-service-card h2 {
    margin: 0 0 11px;
    color: var(--services-navy);
    font-size: 20px;
    line-height: 1.22;
    letter-spacing: -.035em;
}

body.services-page .modern-service-card > p {
    min-height: 62px;
    margin: 0 0 19px;
    color: var(--services-muted);
    font-size: 13px;
    line-height: 1.55;
}

body.services-page .modern-service-features {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid #edf1f2;
    list-style: none;
}

body.services-page .modern-service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4f5f68;
    font-size: 12px;
    line-height: 1.35;
}

body.services-page .modern-service-features i {
    color: var(--services-green);
    font-size: 11px;
}

body.services-page .inner-cta {
    margin-top: 30px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: var(--services-white);
    background: #727f72;
    border: 1px solid #727f72;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(65, 78, 68, .12);
}

body.services-page .services-cta-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .76);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

body.services-page .inner-cta h2 {
    margin: 0 0 7px;
    color: var(--services-white);
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.03em;
}

body.services-page .inner-cta p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
}

body.services-page .inner-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 19px;
    color: #1d2933;
    background: var(--services-white);
    border-radius: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

body.services-page .inner-cta a:hover { color: #1d2933; background: #f7faf8; }

body.services-page .footer {
    padding-top: 62px;
    color: var(--services-navy);
    background: var(--services-white);
    border-top: 1px solid var(--services-line);
}

body.services-page .footer-column h3,
body.services-page .footer-logo-icon,
body.services-page .footer-logo-text { color: var(--services-navy); }
body.services-page .footer-description,
body.services-page .footer-links a,
body.services-page .footer-contact-text,
body.services-page .footer-contact-link,
body.services-page .footer-copyright,
body.services-page .footer-legal a { color: #727c91 !important; }
body.services-page .footer-contact-icon i { color: var(--services-green); }
body.services-page .social-icon { color: var(--services-green); background: #e6f4e7; }
body.services-page .social-icon:hover { color: var(--services-white); background: var(--services-green); }
body.services-page .footer-bottom { border-color: var(--services-line); }
body.services-page .footer-links a:hover,
body.services-page .footer-legal a:hover { color: var(--services-green) !important; }

@media (max-width: 960px) {
    body.services-page .modern-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    body.services-page .container { width: min(100% - 32px, 1180px); }
    body.services-page .inner-hero { padding: 28px 0 26px; }
    body.services-page .inner-content { padding: 30px 0 76px; }
    body.services-page .inner-cta { align-items: flex-start; flex-direction: column; padding: 26px 24px; }
    body.services-page .inner-cta a { width: 100%; }
}

@media (max-width: 560px) {
    body.services-page .container { width: calc(100% - 30px); }
    body.services-page .inner-hero { padding: 26px 0 24px; }
    body.services-page .inner-title { font-size: 28px; }
    body.services-page .inner-subtitle { font-size: 12px; }
    body.services-page .services-intro { align-items: flex-start; text-align: left; }
    body.services-page .modern-services-grid { grid-template-columns: 1fr; gap: 14px; }
    body.services-page .modern-service-card { min-height: 0; padding: 20px; }
    body.services-page .modern-service-card > p { min-height: 0; }
}
