.services-page {
    background: #fff;
    padding-top: 96px;
    font-family: var(--font-body);
}

.services-page .site-header {
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom-color: rgba(15, 33, 74, 0.08) !important;
    box-shadow: 0 8px 24px rgba(8, 21, 61, 0.08) !important;
}

.services-page .site-header .header__nav a,
.services-page .site-header .lang-toggle {
    color: #0f1f3f !important;
}

.services-page .site-header .header__nav a:hover,
.services-page .site-header .header__nav a:focus-visible,
.services-page .site-header .header__nav a[href="/service/index.html"] {
    color: #0b65c6 !important;
}

.services-page .site-header .header__menu span {
    background: #0f1f3f !important;
}

.services-hero {
    position: relative;
    width: 100%;
    height: calc((350/1918) * 100vw);
    min-height: 280px;
    overflow: hidden;
    background: #dfeaf3;
}

.services-hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.services-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding-top: calc((30/1918) * 100vw);
    padding-bottom: calc((40/1918) * 100vw);
    padding-left: calc((94/1918) * 100vw);
    padding-right: calc((94/1918) * 100vw);
    box-sizing: border-box;
    align-items: center;
}

.services-tabs {
    display: flex;
    gap: calc((80/1918) * 100vw);
    border-bottom: 2px solid var(--brand-gray-light);
    justify-content: flex-start;
    width: 100%;
    margin-bottom: calc((80/1918) * 100vw);
}

.services-tab {
    border: 0;
    background: none;
    padding: calc((15/1918) * 100vw) 0;
    color: var(--text-gray-700);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: calc((24/1918) * 100vw);
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    letter-spacing: 0;
    transition: color 0.3s ease;
}

.services-tab.active {
    color: var(--brand-primary);
}

.services-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: var(--brand-primary);
}

.services-tab:hover {
    color: var(--brand-primary);
}

.services-panel[hidden] {
    display: none;
}

.services-qa-table {
    width: 100%;
}

.services-qa-head {
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    min-height: 46px;
    padding: 0 24px;
    color: #fff;
    background: var(--brand-primary);
    font-family: var(--font-body);
    font-size: calc((16/1918) * 100vw);
    font-weight: 600;
    line-height: 1.3;
}

.services-qa-head span:last-child {
    text-align: center;
}

.services-qa-item {
    border-bottom: 1px solid #e6e8ec;
}

.services-qa-question {
    width: 100%;
    min-height: 84px;
    border: 0;
    background: #fff;
    color: var(--text-gray-700);
    display: grid;
    grid-template-columns: 1fr 200px;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: calc((16/1918) * 100vw);
    font-weight: 500;
    line-height: 1.5;
}

.services-qa-question:hover {
    color: var(--brand-primary);
}

.services-qa-action {
    color: var(--brand-primary);
    text-align: center;
    font-size: calc((16/1918) * 100vw);
}

.services-qa-answer {
    max-width: 1320px;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px 0 50px;
    opacity: 0;
    color: var(--text-gray-500);
    font-family: var(--font-body);
    font-size: calc((16/1918) * 100vw);
    font-weight: 400;
    line-height: 1.8;
    transition: max-height 0.36s ease, padding-bottom 0.36s ease, opacity 0.24s ease;
}

.services-qa-item.is-open .services-qa-answer {
    padding-bottom: 34px;
    opacity: 1;
}

.services-qa-item.is-open .services-qa-action {
    visibility: hidden;
}

.services-request-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc((60/1918) * 100vw);
    align-items: start;
}

.services-request-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.services-request-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-form {
    width: 100%;
    font-family: var(--font-body);
}

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

.services-field {
    display: flex;
    flex-direction: column;
    color: var(--text-gray-700);
    font-family: var(--font-body);
    font-size: calc((16/1918) * 100vw);
    font-weight: 500;
    line-height: 1.25;
}

.services-field > span:first-child {
    margin-bottom: calc((8/1918) * 100vw);
}

.services-field--wide,
.services-field--phone {
    grid-column: 1 / -1;
}

.services-field input,
.services-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid var(--brand-gray-light);
    border-radius: calc((8/1918) * 100vw);
    color: var(--text-gray-700);
    background: var(--white);
    padding: calc((12/1918) * 100vw) calc((16/1918) * 100vw);
    font-family: var(--font-body);
    font-size: calc((16/1918) * 100vw);
    font-weight: 400;
    line-height: 1.45;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.services-field textarea {
    resize: vertical;
    min-height: calc((120/1918) * 100vw);
}

.services-field input:focus,
.services-field textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(80, 162, 111, 0.1);
}

.services-phone-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
}

.services-country-code {
    text-align: center;
}

.services-error {
    min-height: 17px;
    color: #c0392b;
    font-family: var(--font-body);
    font-size: calc((14/1918) * 100vw);
    font-weight: 500;
    line-height: 1.3;
}

.services-field.is-error input,
.services-field.is-error textarea {
    border-color: #c0392b;
}

.services-form-status {
    min-height: 22px;
    margin: 18px 0 14px;
    color: #2d7b37;
    font-family: var(--font-body);
    font-size: calc((16/1918) * 100vw);
    font-weight: 500;
    line-height: 1.4;
}

.services-form-status.is-error {
    color: #c0392b;
}

.services-submit {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: calc((12/1918) * 100vw) calc((40/1918) * 100vw);
    margin-top: calc((10/1918) * 100vw);
    border: 0;
    border-radius: calc((8/1918) * 100vw);
    color: #fff !important;
    background: var(--brand-primary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: calc((16/1918) * 100vw);
    font-weight: 500;
    line-height: 1;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.services-submit:hover,
.services-submit:focus-visible {
    background: var(--brand-primary-dark);
    transform: translateY(-1px);
    outline: none;
}

.services-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

@media (max-width: 1024px) {
    .services-main {
        padding-left: 20px;
        padding-right: 20px;
    }

    .services-request-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding-top: 76px;
    }

    .services-hero {
        height: 220px;
        min-height: 220px;
    }

    .services-tabs {
        gap: 30px;
        overflow-x: auto;
        margin-bottom: 36px;
    }

    .services-tab {
        white-space: nowrap;
        font-size: 18px;
        padding: 12px 0;
    }

    .services-qa-head {
        grid-template-columns: 1fr 100px;
        padding: 0 14px;
    }

    .services-qa-question {
        grid-template-columns: 1fr 90px;
        min-height: 74px;
        padding: 0 14px;
        gap: 12px;
        font-size: 14px;
    }

    .services-qa-answer {
        font-size: 14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .services-qa-item.is-open .services-qa-answer {
        padding-bottom: 24px;
    }

    .services-form-grid {
        grid-template-columns: 1fr;
    }

    .services-phone-row {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .services-field,
    .services-qa-head {
        font-size: 14px;
    }

    .services-field input,
    .services-field textarea {
        font-size: 16px;
        padding: 12px 16px;
    }

    .services-submit {
        font-size: 16px;
        padding: 14px 20px;
    }

    .services-error {
        font-size: 12px;
    }
}
