body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #f7f9fc;
    color: #142033;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1200px, calc(100% - 64px));
    margin: 0 auto;
}


.services-page {
    overflow: hidden;
}

.services-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-overlay {
    width: 100%;
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(90deg, rgba(8, 22, 45, 0.72) 0%, rgba(8, 22, 45, 0.46) 45%, rgba(8, 22, 45, 0.18) 100%),
        linear-gradient(180deg, rgba(8, 22, 45, 0.12) 0%, rgba(8, 22, 45, 0.26) 100%); */
}

.services-hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:linear-gradient(180deg,rgba(0,0,0,.55) 100%,rgba(0,0,0,.28) 40%,rgba(0,0,0,.45) 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding-top: 140px;
    padding-bottom: 60px;
    max-width: 780px;
}

.services-kicker {
    margin: 0 0 18px;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d5e8ff;
}

.services-hero h1 {
    margin: 0 0 22px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 650;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.services-description {
    margin: 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.services-intro {
    padding: 100px 0;
    background: #f7f9fc;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 34px;
    align-items: stretch;
}

.section-label {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #2e83ff;
}

.services-intro-copy h2,
.section-heading h2,
.services-cta-box h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #142033;
}

.services-intro-copy p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #415168;
}

.services-intro-copy h1 {
    color: #3266ce;
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    max-width: 760px;
}

.services-intro-card {
    background: #ffffff;
    border: 1px solid #dbe7f6;
    border-radius: 28px;
    padding: 34px 32px;
    box-shadow: 0 18px 40px rgba(16, 42, 84, 0.08);
}

.services-intro-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: #33445d;
    line-height: 1.9;
    font-size: 16px;
}

.services-list-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 42px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-detail-card {
    background: #f7f9fc;
    border: 1px solid #dbe7f6;
    border-radius: 28px;
    padding: 32px;
    min-height: 320px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(18, 53, 106, 0.08);
    border-color: #bfd8f7;
}

.service-detail-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.service-number {
    margin: 0;
    min-width: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #2e83ff;
}

.service-detail-card h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    color: #142033;
    letter-spacing: -0.02em;
}

.service-summary {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #52627a;
}

.service-points {
    margin: 0;
    padding-left: 18px;
    color: #33445d;
}

.service-points li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.services-cta-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.services-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(135deg, #0d2e63 0%, #1f5db8 100%);
    border-radius: 32px;
    padding: 44px;
    color: #ffffff;
}

.services-cta-box h2,
.services-cta-box .section-label {
    color: #ffffff;
}

.services-cta-box p {
    margin: 0;
    max-width: 650px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.services-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #2e83ff;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(46, 131, 255, 0.28);
}

.btn-primary:hover {
    background: #1f73ee;
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
    .services-intro-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .services-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, 1200px);
    }

    .site-header {
        padding: 16px 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        gap: 18px;
        flex-wrap: wrap;
    }

    .services-hero {
        min-height: 64vh;
    }

    .services-hero-content {
        padding-top: 140px;
    }

    .services-hero h1 {
        font-size: clamp(38px, 10vw, 56px);
    }

    .services-description {
        font-size: 16px;
    }

    .services-intro,
    .services-list-section,
    .services-cta-section {
        padding: 80px 0;
    }

    .services-intro-copy h2,
    .section-heading h2,
    .services-cta-box h2 {
        font-size: 34px;
    }

    .service-detail-card h3 {
        font-size: 26px;
    }

    .services-cta-box {
        padding: 30px 24px;
        border-radius: 24px;
    }
}
