@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #0085ff;
    --color1: #496395;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

img[src*="/assets/vector/"] {
    filter: brightness(0) saturate(100%);
}

img[src*="/assets/vector/phone.svg"],
img[src*="/assets/vector/pin.svg"],
img[src*="/assets/vector/glob.svg"],
img[src*="/assets/vector/mail.svg"] {
    filter: brightness(0) saturate(100%) invert(40%) sepia(89%) saturate(3152%) hue-rotate(193deg) brightness(101%) contrast(101%);
}

body.home #page {
    padding-top: 0;
}

.home-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero__slides {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.home-hero__slide.is-active {
    opacity: 1;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .48);
}

.home-hero__content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: var(--site-header-height, 0px);
    padding-bottom: 3.6rem;
    padding-left: 8rem;
    padding-right: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-hero__content {
    max-width: 780px;
    color: #fff;
    text-align: center;
    margin: 0 auto;
}

.home-hero__content h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.7rem);
    line-height: 1.16;
    margin-bottom: .6rem;
    font-weight: 800;
    text-wrap: balance;
}

.home-hero__content h1 strong,
.home-hero__content h1 b {
    color: var(--primary);
    font-weight: 800;
}

.home-hero__accent {
    color: var(--primary);
}

.home-hero__content p {
    font-size: clamp(.95rem, 1.1vw, 1.08rem);
    line-height: 1.55;
    margin-bottom: .35rem;
    max-width: 700px;
    color: rgba(225, 230, 240, .85);
}

@media (min-width: 769px) {
    .home-hero__content h1 {
        max-width: 38ch;
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__content p {
        margin-left: auto;
        margin-right: auto;
    }
}

.home-hero__cta {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero__indicators {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    width: max-content;
    margin-top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
}

.home-hero__indicator {
    border: 0;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    transition: width .28s ease, background-color .28s ease, opacity .28s ease;
    opacity: .55;
}

.home-hero__indicator.is-active {
    width: 34px;
    background: rgba(255, 255, 255, .52);
    opacity: .8;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .7rem 1.25rem;
    border-radius: .45rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: filter .2s ease, transform .2s ease, background-color .2s ease, color .2s ease;
}

.home-hero__btn--primary {
    background: var(--primary);
    color: #fff;
}

.home-hero__btn--primary:hover {
    filter: brightness(1.08);
}

.home-services {
    width: 100%;
    background: #fff;
    padding: 5rem 8rem;
}

.home-services__container {
    max-width: 1280px;
    margin: 0 auto;
}

.home-services__heading,
.home-about__heading {
    text-align: center;
    margin-bottom: 2rem;
}

.home-services__tagline,
.home-about__tagline {
    display: block;
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
}

.home-services__heading h2,
.home-about__heading h2 {
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    line-height: 1.2;
    color: #111827;
    margin-bottom: 0;
}

.home-services__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    min-height: 640px;
}

.home-services__column {
    display: grid;
    gap: 1.2rem;
    height: 100%;
}

.home-services__column--left {
    grid-template-rows: 1fr 1fr;
}

.home-services__column--right {
    grid-template-rows: .85fr 1.15fr;
}

.home-services__card {
    position: relative;
    border-radius: .45rem;
    overflow: hidden;
    display: flex;
    min-height: 250px;
}

.home-services__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-services__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .6) 100%);
}

.home-services__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.35rem;
    color: #fff;
    width: 100%;
    height: 100%;
}

.home-services__text {
    align-self: flex-start;
    max-width: min(92%, 560px);
}

.home-services__content h3 {
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    line-height: 1.25;
    margin-bottom: .6rem;
    font-weight: 700;
    color: #fff;
}

.home-services__content p {
    font-size: 1rem;
    line-height: 1.72;
    color: #fff;
}

.home-services__price {
    margin-top: auto;
    align-self: flex-end;
    display: inline-flex;
    align-items: baseline;
    gap: .28rem;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.home-services__price-prefix {
    font-size: .88rem;
    color: #fff;
}

.home-services__price-value {
    font-size: 44px;
    line-height: 1;
    letter-spacing: -.01em;
    color: #fff;
}

.home-services__price-currency {
    font-size: 20px;
    line-height: 1;
    color: #fff;
}

.home-services__actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.home-services__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .72rem 1.35rem;
    border-radius: .45rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    background: var(--primary);
    color: #fff;
    transition: filter .2s ease;
}

.home-services__btn:hover {
    filter: brightness(1.08);
}

.home-about {
    width: 100%;
    background: #fff;
    padding: 0 8rem 5rem;
}

.home-about__container {
    max-width: 1280px;
    margin: 0 auto;
}

.home-about__row {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.4rem;
    align-items: stretch;
}

.home-about__text {
    padding: .3rem .45rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.home-about__text p {
    color: #1f2937;
    font-size: clamp(1.08rem, 1.2vw, 1.24rem);
    line-height: 1.78;
    text-align: left;
}

.home-about__text p strong,
.home-about__text p b,
.home-about__text p strong {
    color: inherit;
    font-weight: 700;
}

.home-about__text p b {
    color: var(--primary);
    font-weight: 700;
}

.home-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .72rem 1.35rem;
    border-radius: .45rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    background: var(--primary);
    color: #fff;
    transition: filter .2s ease;
    margin-top: 1.25rem;
}

.home-about__btn:hover {
    filter: brightness(1.08);
}

.home-about__media {
    border-radius: .45rem;
    overflow: hidden;
    min-height: 360px;
}

.home-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-cta-1 {
    width: 100%;
    background: linear-gradient(
        115deg,
        var(--primary) 0%,
        color-mix(in srgb, var(--primary) 88%, #ffffff 12%) 56%,
        color-mix(in srgb, var(--primary) 78%, #ffffff 22%) 100%
    );
    position: relative;
    overflow: hidden;
}

.home-cta-1__inner {
    width: 100%;
    min-height: 200px;
    padding: 2.2rem 8rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4.2rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.home-cta-1__left,
.home-cta-1__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-cta-1__left {
    align-items: flex-start;
    text-align: left;
}

.home-cta-1__line {
    color: #fff;
}

.home-cta-1__line--main {
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
    line-height: 1.2;
    font-weight: 800;
}

.home-cta-1__line--sub {
    margin-top: .45rem;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    line-height: 1.5;
    font-weight: 500;
    color: rgba(244, 248, 255, .95);
}

.home-cta-1__right {
    align-items: flex-end;
    position: relative;
    z-index: 1;
    padding-left: 1.8rem;
}

.home-cta-1__phone {
    color: #fff;
    text-decoration: none;
    font-size: clamp(2.15rem, 4.15vw, 4.15rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
    white-space: nowrap;
}

.home-cta-1__phone:hover {
    text-decoration: underline;
}

.home-reviews {
    width: 100%;
    background: #fff;
    padding: 5rem 8rem;
}

.home-reviews__container {
    max-width: 1280px;
    margin: 0 auto;
}

.home-reviews__heading {
    text-align: center;
    margin-bottom: 2rem;
}

.home-reviews__tagline {
    display: block;
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
}

.home-reviews__heading h2 {
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    line-height: 1.2;
    color: #111827;
    margin-bottom: 0;
}

.home-reviews__widget {
    width: 100%;
}

.home-reviews__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.home-reviews__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .72rem 1.35rem;
    border-radius: .45rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    background: var(--primary);
    color: #fff;
    transition: filter .2s ease;
}

.home-reviews__btn:hover {
    filter: brightness(1.08);
}

.home-faq {
    width: 100%;
    background: #fff;
    padding: 5rem 8rem;
}

.home-faq__container {
    max-width: 1280px;
    margin: 0 auto;
}

.home-faq__heading {
    text-align: center;
    margin-bottom: 2rem;
}

.home-faq__tagline {
    display: block;
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
}

.home-faq__heading h2 {
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    line-height: 1.2;
    color: #111827;
    margin-bottom: .65rem;
}

.home-faq__subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: #334155;
    font-size: 1rem;
    line-height: 1.55;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-faq__subtitle a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    transition: color .2s ease;
}

.home-faq__subtitle a:hover {
    color: var(--primary);
}

.home-faq__accordion {
    display: grid;
    gap: .9rem;
    max-width: 760px;
    margin: 0 auto;
}

.home-faq__item {
    background: #f4f4f4;
    border-radius: .45rem;
    overflow: hidden;
}

.home-faq__question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-size: 1.03rem;
    line-height: 1.4;
    color: #111827;
    font-weight: 700;
}

.home-faq__icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    position: relative;
}

.home-faq__icon::before,
.home-faq__icon::after {
    content: "";
    position: absolute;
    background: var(--primary);
    border-radius: 99px;
    transition: transform .24s ease, opacity .24s ease;
}

.home-faq__icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.home-faq__icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.home-faq__item.is-open .home-faq__icon::after {
    opacity: 0;
    transform: translateX(-50%) scaleY(.4);
}

.home-faq__answer-wrap {
    height: 0;
    overflow: hidden;
    transition: height .3s ease;
}

.home-faq__answer {
    padding: 0 1.2rem 1rem;
    color: #334155;
    font-size: .98rem;
    line-height: 1.62;
}

.home-faq__answer p {
    margin: 0;
}

.home-info {
    width: 100%;
    background: #fff;
    padding: 0 8rem 5rem;
}

.home-info__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.2rem;
    align-items: stretch;
}

.home-info__left {
    padding: .1rem .2rem;
}

.home-info__left h2 {
    font-size: clamp(1.85rem, 2.3vw, 2.3rem);
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 1.15rem;
}

.home-info__item {
    margin-bottom: 1rem;
}

.home-info__item:last-child {
    margin-bottom: 0;
}

.home-info__item span {
    display: block;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .35rem;
}

.home-info__item a,
.home-info__item p {
    color: #1f2937;
    font-size: clamp(1.22rem, 1.5vw, 1.46rem);
    line-height: 1.35;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
}

.home-info__item a:hover {
    color: var(--primary);
}

.home-info__social {
    margin-top: .2rem;
}

.home-info__social-tagline {
    display: block;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .42rem;
}

.home-info__social-links {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap;
}

.home-info__social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-info__social-links a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%);
}

.home-info__social-links a:hover {
    opacity: .85;
}

.home-info__right {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.home-info__map-wrap {
    border-radius: .45rem;
    overflow: hidden;
    min-height: 520px;
    aspect-ratio: 1 / 1;
}

.home-info__map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

.home-info__actions {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.home-info__actions--left {
    margin-top: 1.2rem;
}

.home-info__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .65rem 1rem;
    border-radius: .4rem;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: filter .2s ease;
}

.home-info__btn--contact {
    background: var(--primary);
    color: #fff;
}

.home-info__btn:hover {
    filter: brightness(1.04);
}

.contact-page {
    width: 100%;
    background: #fff;
    padding: 5.4rem 8rem 4rem;
}

.contact-page__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 1.25rem;
    align-items: start;
}

.contact-page__left h1,
.contact-page__right h2 {
    font-size: clamp(1.85rem, 2.3vw, 2.3rem);
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 1.1rem;
}

.contact-page__item {
    margin-bottom: 1rem;
}

.contact-page__item:last-of-type {
    margin-bottom: 1.2rem;
}

.contact-page__item span {
    display: block;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .32rem;
}

.contact-page__item a,
.contact-page__item p {
    color: #1f2937;
    font-size: clamp(1.15rem, 1.45vw, 1.42rem);
    line-height: 1.35;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
}

.contact-page__item a:hover {
    color: var(--primary);
}

.contact-page__social {
    margin-top: .2rem;
    margin-bottom: 1rem;
}

.contact-page__social-tagline {
    display: block;
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .42rem;
}

.contact-page__social-links {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap;
}

.contact-page__social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-page__social-links a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%);
}

.contact-page__social-links a:hover {
    opacity: .85;
}

.contact-page__map-wrap {
    border-radius: .45rem;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 320px;
}

.contact-page__map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.contact-form {
    display: grid;
    gap: .9rem;
}

.contact-form__field {
    display: grid;
}

.contact-form__field label {
    font-size: .86rem;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .42rem;
}

.contact-form__field label span {
    color: #dc2626;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: .4rem;
    padding: .72rem .82rem;
    font-size: .98rem;
    line-height: 1.45;
    color: #0f172a;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form__field textarea {
    resize: none;
    min-height: 150px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 22%, #ffffff 78%);
}

.contact-form__error {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    margin: 0;
    color: #dc2626;
    font-size: .82rem;
    line-height: 1.35;
    transition: max-height .22s ease, opacity .22s ease, transform .22s ease, margin-top .22s ease;
}

.contact-form__field.is-error .contact-form__error {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
    margin-top: .34rem;
}

.contact-form__field.is-error input,
.contact-form__field.is-error textarea {
    border-color: #dc2626;
}

.contact-form__field--fax {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form__status {
    margin: .15rem 0 0;
    font-size: .88rem;
    line-height: 1.35;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height .24s ease, opacity .24s ease, transform .24s ease;
}

.contact-form__status.is-visible {
    max-height: 110px;
    opacity: 1;
    transform: translateY(0);
}

.contact-form__status.is-error {
    color: #dc2626;
}

.contact-form__status.is-success {
    color: #166534;
}

.contact-form__submit {
    margin-top: .2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .72rem 1.2rem;
    border: 0;
    border-radius: .4rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: .98rem;
    cursor: pointer;
    transition: filter .2s ease;
}

.contact-form__submit:hover {
    filter: brightness(1.06);
}

.contact-form__submit:disabled {
    opacity: .75;
    cursor: not-allowed;
    filter: none;
}

.contact-form__consent {
    margin: .2rem 0 0;
    font-size: .8rem;
    line-height: 1.45;
    color: #475569;
}

.contact-form__consent a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-policy-page {
    width: 100%;
    background: #ffffff;
    padding: 4.2rem 1.2rem 4rem;
}

.privacy-policy-page__container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    color: #000000;
}

.privacy-policy-page__container h1 {
    margin: 0 0 1.6rem;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.2;
    color: #000000;
}

.privacy-policy-page__container h2 {
    margin: 2.2rem 0 .9rem;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.3;
    color: #000000;
}

.privacy-policy-page__container h3 {
    margin: 1.35rem 0 .7rem;
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    line-height: 1.35;
    color: #000000;
}

.privacy-policy-page__container p {
    margin: 0 0 .95rem;
    font-size: 1rem;
    line-height: 1.72;
    color: #000000;
}

.privacy-policy-page__container ul {
    margin: 0 0 1.1rem;
    padding-left: 1.25rem;
    color: #000000;
}

.privacy-policy-page__container li {
    margin: 0 0 .45rem;
    font-size: 1rem;
    line-height: 1.68;
    color: #000000;
}

.privacy-policy-page__container a {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.privacy-policy-page__container a:hover {
    opacity: .85;
}

.terms-page {
    width: 100%;
    background: #ffffff;
    padding: 4.2rem 1.2rem 4rem;
}

.terms-page__container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    color: #000000;
}

.terms-page__container h1 {
    margin: 0 0 1.6rem;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.2;
    color: #000000;
}

.terms-page__container h2 {
    margin: 2.2rem 0 .9rem;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.3;
    color: #000000;
}

.terms-page__container p {
    margin: 0 0 .95rem;
    font-size: 1rem;
    line-height: 1.72;
    color: #000000;
}

.terms-page__container ul {
    margin: 0 0 1.1rem;
    padding-left: 1.25rem;
    color: #000000;
}

.terms-page__container li {
    margin: 0 0 .45rem;
    font-size: 1rem;
    line-height: 1.68;
    color: #000000;
}

.terms-page__container a {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.terms-page__container a:hover {
    opacity: .85;
}

.about-page {
    width: 100%;
    background: #fff;
}

.about-page__intro {
    width: 100%;
    padding: 5.4rem 8rem 3rem;
}

.about-page__container {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.about-page__tagline {
    display: block;
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
}

.about-page__intro h1 {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1rem;
}

.about-page__description {
    color: #334155;
    font-size: 1.06rem;
    line-height: 1.75;
}

.about-page__description strong {
    color: inherit;
    font-weight: 700;
}

.about-page__description b {
    color: var(--primary);
    font-weight: 700;
}

.about-page__image-block {
    width: 100%;
    padding: 0 8rem 1rem;
}

.about-page__image-block img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    min-height: 320px;
    max-height: 660px;
    object-fit: cover;
    display: block;
    border-radius: .45rem;
}

.about-page__image-grid {
    width: 100%;
    padding: 0 8rem 4rem;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1rem;
}

.about-page__image-grid-item {
    overflow: hidden;
    border-radius: .45rem;
}

.about-page__image-grid-item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.services-page {
    width: 100%;
    background: #fff;
}

.services-page__container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-page__intro {
    width: 100%;
    padding: 5.4rem 8rem 2.2rem;
}

.services-page__tagline {
    display: block;
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
    text-align: center;
}

.services-page__intro h1 {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    line-height: 1.2;
    color: #111827;
    text-align: center;
}

.services-page__list {
    width: 100%;
    padding: 0 8rem 4rem;
}

.services-page__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.services-page__row:last-child {
    margin-bottom: 0;
}

.blog-page {
    width: 100%;
    background: #fff;
}

.blog-page__intro {
    width: 100%;
    padding: 5.4rem 8rem 2.2rem;
}

.blog-page__container {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-page__tagline {
    display: block;
    font-size: .82rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
    text-align: center;
}

.blog-page__intro h1 {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    line-height: 1.2;
    color: #111827;
    text-align: center;
}

.blog-page__list-wrap {
    width: 100%;
    padding: 0 8rem 4rem;
}

.blog-page__categories {
    margin-bottom: 2rem;
}

.blog-page__categories-heading {
    margin-bottom: .9rem;
}

.blog-page__categories-heading h2 {
    font-size: clamp(1.35rem, 1.9vw, 1.85rem);
    line-height: 1.25;
    color: #111827;
}

.blog-page__categories-row {
    display: flex;
    gap: .9rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: .35rem;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}

.blog-page__category-item {
    flex: 0 0 auto;
    width: max-content;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .45rem;
    padding: .85rem 1rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .05);
    scroll-snap-align: start;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.blog-page__category-item h3 {
    font-size: 1.02rem;
    line-height: 1.3;
    color: #0f172a;
}

.blog-page__category-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
}

.blog-page__term-type {
    font-size: .68rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .28rem;
}

.blog-page__list {
    column-count: 2;
    column-gap: 1.2rem;
}

.blog-page__item {
    break-inside: avoid;
    margin: 0 0 1.2rem;
    background: #fff;
    border-radius: .45rem;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(15, 23, 42, .08);
}

.blog-page__thumb {
    display: block;
    width: 100%;
}

.blog-page__thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.blog-page__content {
    background: #fff;
    padding: 1rem 1rem 1.1rem;
}

.blog-page__item-tagline {
    font-size: .74rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .5rem;
}

.blog-page__content h2 {
    font-size: clamp(1.18rem, 1.55vw, 1.45rem);
    line-height: 1.3;
    margin-bottom: .5rem;
}

.blog-page__content h2 a {
    color: #0f172a;
    text-decoration: none;
}

.blog-page__content h2 a:hover {
    color: var(--primary);
}

.blog-page__excerpt {
    color: #334155;
    font-size: .98rem;
    line-height: 1.65;
}

.blog-page__read-more {
    margin-top: .7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .55rem .95rem;
    border-radius: .38rem;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    text-decoration: none;
    transition: filter .2s ease;
}

.blog-page__read-more:hover {
    filter: brightness(1.08);
}

.blog-page__empty {
    text-align: center;
    color: #334155;
    font-size: clamp(2.2rem, 3.2vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
}

.blog-page__meta {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-page__count {
    color: #334155;
    font-size: .95rem;
}

.blog-page__pagination {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    flex-wrap: wrap;
}

.blog-page__pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 .55rem;
    border-radius: .38rem;
    border: 1px solid #d8e1ee;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .92rem;
    background: #fff;
}

.blog-page__pagination .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.blog-page__pagination .page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.single-blog {
    width: 100%;
    background: #fff;
}

.single-blog__container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.single-blog__container--wide {
    max-width: 1100px;
}

.single-blog__header {
    padding: 5.4rem 8rem 1.6rem;
}

.single-blog__tagline {
    display: block;
    text-align: left;
    font-size: .8rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
}

.single-blog__header h1 {
    text-align: left;
    font-size: clamp(2rem, 2.7vw, 3rem);
    line-height: 1.18;
    color: #0f172a;
}

.single-blog__media-wrap {
    padding: 0 8rem 0;
}

.single-blog__media {
    border-radius: .5rem;
    overflow: hidden;
}

.single-blog__media img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

.single-blog__meta-wrap {
    padding: 0 8rem;
}

.single-blog__meta {
    margin-top: .55rem;
    color: #64748b;
    font-size: .8rem;
    line-height: 1.3;
    font-weight: 500;
}

.single-blog__content-wrap {
    padding: 1.8rem 8rem 0;
}

.single-blog__content {
    color: #1f2937;
    font-size: 1.06rem;
    line-height: 1.78;
}

.single-blog__content > * {
    margin: 0 0 1.05rem;
}

.single-blog__content h1,
.single-blog__content h2,
.single-blog__content h3,
.single-blog__content h4,
.single-blog__content h5,
.single-blog__content h6 {
    line-height: 1.28;
    color: #0f172a;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}

.single-blog__content h2 {
    font-size: clamp(1.5rem, 2vw, 1.95rem);
}

.single-blog__content h3 {
    font-size: clamp(1.35rem, 1.7vw, 1.62rem);
}

.single-blog__content p,
.single-blog__content li {
    color: #1f2937;
}

.single-blog__content a {
    color: var(--primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.single-blog__content ul,
.single-blog__content ol {
    padding-left: 1.25rem;
}

.single-blog__content blockquote {
    border-left: 3px solid var(--primary);
    padding: .5rem 1rem;
    background: #f8fafc;
    border-radius: .25rem;
    color: #0f172a;
}

.single-blog__content img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: .45rem;
}

.single-blog__content figure {
    margin: 1.1rem 0;
}

.single-blog__content figcaption {
    margin-top: .45rem;
    font-size: .85rem;
    color: #64748b;
}

.single-blog__content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: .35rem;
}

.single-blog__content th,
.single-blog__content td {
    border: 1px solid #e2e8f0;
    padding: .55rem .65rem;
    text-align: left;
}

.single-blog__content th {
    background: #f8fafc;
}

.single-blog__content pre,
.single-blog__content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.single-blog__content pre {
    background: #0f172a;
    color: #f8fafc;
    border-radius: .45rem;
    padding: .9rem 1rem;
    overflow-x: auto;
}

.single-blog__content :not(pre) > code {
    background: #eef2ff;
    color: #1e3a8a;
    padding: .12rem .35rem;
    border-radius: .3rem;
}

.single-blog__related,
.single-blog__tags {
    padding: 2rem 8rem 0;
}

.single-blog__tags {
    padding-bottom: 4rem;
}

.single-blog__related h2,
.single-blog__tags h2 {
    font-size: clamp(1.45rem, 1.9vw, 1.85rem);
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: .9rem;
}

.single-blog__related-list,
.single-blog__tags-list {
    display: grid;
    gap: .75rem;
}

.single-blog__related-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-blog__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.single-blog__related-item {
    border-radius: .45rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.single-blog__related-thumb {
    display: block;
}

.single-blog__related-thumb img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.single-blog__related-content {
    padding: .7rem .8rem .8rem;
}

.single-blog__related-item h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: .32rem;
}

.single-blog__related-item h3 a {
    color: #0f172a;
    text-decoration: none;
}

.single-blog__related-item h3 a:hover {
    color: var(--primary);
}

.single-blog__related-item p {
    color: #475569;
    font-size: .88rem;
    line-height: 1.45;
}

.single-blog__tag-item {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: .45rem;
    background: #fff;
    padding: .55rem .8rem;
    color: #1f2937;
    font-size: .92rem;
    line-height: 1.35;
    font-weight: 600;
}

.services-page__row.is-reverse .services-page__media {
    order: 2;
}

.services-page__row.is-reverse .services-page__content {
    order: 1;
}

.services-page__media {
    border-radius: .45rem;
    overflow: hidden;
}

.services-page__media img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

.services-page__content {
    padding: .4rem .55rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.services-page__price {
    color: var(--primary);
    display: inline-flex;
    align-items: flex-end;
    gap: .32rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: .9rem;
}

.services-page__price-prefix {
    font-size: 1rem;
    color: var(--primary);
    transform: none;
}

.services-page__price-value {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -.01em;
    color: var(--primary);
}

.services-page__price-currency {
    font-size: 23px;
    line-height: 1;
    transform: translateY(-2px);
    color: var(--primary);
}

.services-page__content h2 {
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: .55rem;
}

.services-page__content p {
    color: #334155;
    font-size: 1rem;
    line-height: 1.72;
}

@media (max-width: 1200px) {
    .home-hero__content-wrap {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .home-services {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .home-about {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .home-cta-1__inner {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .home-reviews {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .home-faq {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .home-info {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .about-page__intro {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .about-page__image-block {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .about-page__image-grid {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .services-page__intro {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .services-page__list {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .blog-page__intro {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .blog-page__list-wrap {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .contact-page {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .single-blog__header,
    .single-blog__media-wrap,
    .single-blog__meta-wrap,
    .single-blog__content-wrap,
    .single-blog__related,
    .single-blog__tags {
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .single-blog__related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 100vh;
        min-height: 100svh;
        align-items: stretch;
    }

    .home-hero__content-wrap {
        min-height: 100vh;
        min-height: 100svh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        padding-left: .5rem;
        padding-right: .5rem;
        padding-bottom: 0;
    }

    .home-hero__content {
        margin: 0;
        text-align: center;
    }

    .home-hero__cta {
        justify-content: center;
    }

    .home-hero__indicators {
        position: absolute;
        left: 50%;
        bottom: .75rem;
        transform: translateX(-50%);
        margin-top: 0;
        padding-bottom: 0;
    }

    .home-hero__content h1 {
        margin-bottom: .8rem;
    }

    .home-hero__content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: .65rem;
    }

    .home-services {
        padding: 3rem .5rem;
    }

    .home-services__heading {
        margin-bottom: 1.3rem;
    }

    .home-services__tagline {
        font-size: .76rem;
        margin-bottom: .45rem;
    }

    .home-about__heading {
        margin-bottom: 1.3rem;
    }

    .home-about__tagline {
        font-size: .76rem;
        margin-bottom: .45rem;
    }

    .home-services__mosaic {
        grid-template-columns: 1fr;
        gap: .9rem;
        min-height: 0;
    }

    .home-services__column {
        gap: .9rem;
    }

    .home-services__column--left,
    .home-services__column--right {
        grid-template-rows: none;
    }

    .home-services__card,
    .home-services__card--tall,
    .home-services__card--short,
    .home-services__card--large {
        min-height: 320px;
    }

    .home-services__content {
        padding: 1.1rem;
    }

    .home-services__content h3 {
        font-size: 1.08rem;
    }

    .home-services__content p {
        font-size: .95rem;
    }

    .home-services__actions {
        margin-top: 1.3rem;
    }

    .home-about {
        padding: 0 .5rem 3rem;
    }

    .home-about__row {
        grid-template-columns: 1fr;
        gap: .9rem;
    }

    .home-about__text {
        padding: .2rem .25rem;
        align-items: center;
        text-align: center;
    }

    .home-about__text p {
        font-size: 1rem;
        line-height: 1.68;
        text-align: center;
    }

    .home-about__btn {
        margin-top: 1rem;
    }

    .home-about__media {
        min-height: 260px;
    }

    .home-cta-1__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: .9rem;
        padding: 1.5rem .5rem;
    }

    .home-cta-1__right {
        padding-left: 0;
    }

    .home-cta-1__left,
    .home-cta-1__right {
        align-items: center;
        text-align: center;
    }

    .home-cta-1__line--main {
        font-size: 1.35rem;
    }

    .home-cta-1__line--sub {
        font-size: .98rem;
        margin-top: .3rem;
    }

    .home-cta-1__phone {
        font-size: 2.2rem;
    }

    .home-reviews {
        padding: 3rem .5rem;
    }

    .home-reviews__heading {
        margin-bottom: 1.3rem;
    }

    .home-reviews__tagline {
        font-size: .76rem;
        margin-bottom: .45rem;
    }

    .home-reviews__actions {
        margin-top: 1.1rem;
    }

    .home-faq {
        padding: 3rem .5rem;
    }

    .home-faq__heading {
        margin-bottom: 1.3rem;
    }

    .home-faq__tagline {
        font-size: .76rem;
        margin-bottom: .45rem;
    }

    .home-faq__subtitle {
        max-width: 100%;
        font-size: .95rem;
        line-height: 1.5;
    }

    .home-faq__accordion {
        gap: .75rem;
    }

    .home-faq__question {
        font-size: .98rem;
        padding: .9rem 1rem;
    }

    .home-faq__answer {
        padding: 0 1rem .9rem;
        font-size: .94rem;
    }

    .home-info {
        padding: 0 .5rem 3rem;
    }

    .home-info__container {
        grid-template-columns: 1fr;
        gap: .85rem;
    }

    .home-info__left {
        padding: .05rem .1rem;
    }

    .home-info__tagline {
        font-size: .7rem;
    }

    .home-info__left h2 {
        font-size: 1.7rem;
        margin-bottom: .8rem;
    }

    .home-info__item a,
    .home-info__item p {
        font-size: 1.12rem;
    }

    .home-info__map-wrap,
    .home-info__map-wrap iframe {
        min-height: 320px;
        aspect-ratio: auto;
    }

    .home-info__actions {
        flex-direction: column;
        gap: .55rem;
    }

    .home-info__btn {
        width: 100%;
    }

    .about-page__intro {
        padding: 3.2rem .5rem 2rem;
    }

    .about-page__tagline {
        font-size: .76rem;
        margin-bottom: .45rem;
    }

    .about-page__intro h1 {
        font-size: 1.8rem;
        margin-bottom: .85rem;
    }

    .about-page__description {
        font-size: .98rem;
        line-height: 1.68;
    }

    .about-page__image-block img {
        min-height: 220px;
    }

    .about-page__image-block {
        padding: 0 .5rem .75rem;
    }

    .about-page__image-grid {
        padding: 0 .5rem 2.5rem;
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    .about-page__image-grid-item img {
        min-height: 220px;
    }

    .services-page__intro {
        padding: 3.2rem .5rem 1.4rem;
    }

    .services-page__tagline {
        font-size: .76rem;
        margin-bottom: .45rem;
    }

    .services-page__intro h1 {
        font-size: 1.8rem;
    }

    .services-page__list {
        padding: 0 .5rem 2.5rem;
    }

    .blog-page__intro {
        padding: 3.2rem .5rem 1.4rem;
    }

    .blog-page__tagline {
        font-size: .76rem;
        margin-bottom: .45rem;
    }

    .blog-page__intro h1 {
        font-size: 1.8rem;
    }

    .blog-page__list-wrap {
        padding: 0 .5rem 2.5rem;
    }

    .blog-page__categories {
        margin-bottom: 1.3rem;
    }

    .blog-page__categories-heading {
        margin-bottom: .7rem;
    }

    .blog-page__categories-heading h2 {
        font-size: 1.35rem;
    }

    .blog-page__categories-row {
        gap: .7rem;
    }

    .blog-page__category-item {
        width: auto;
        max-width: 86vw;
        padding: .8rem .9rem;
    }

    .blog-page__list {
        column-count: 1;
        column-gap: 0;
    }

    .blog-page__item {
        margin-bottom: .9rem;
    }

    .blog-page__thumb img {
        height: 220px;
    }

    .blog-page__meta {
        margin-top: .9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: .65rem;
    }

    .blog-page__pagination .page-numbers {
        min-width: 34px;
        height: 34px;
        font-size: .88rem;
    }

    .contact-page {
        padding: 3.2rem .5rem 2.8rem;
    }

    .contact-page__container {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .contact-page__left h1,
    .contact-page__right h2 {
        font-size: 1.7rem;
        margin-bottom: .85rem;
    }

    .contact-page__item a,
    .contact-page__item p {
        font-size: 1.08rem;
    }

    .contact-page__map-wrap,
    .contact-page__map-wrap iframe {
        min-height: 270px;
        aspect-ratio: auto;
    }

    .contact-form {
        gap: .8rem;
    }

    .contact-form__submit {
        width: 100%;
    }

    .privacy-policy-page {
        padding: 3rem .8rem 2.6rem;
    }

    .privacy-policy-page__container p,
    .privacy-policy-page__container li {
        font-size: .98rem;
        line-height: 1.65;
    }

    .terms-page {
        padding: 3rem .8rem 2.6rem;
    }

    .terms-page__container p,
    .terms-page__container li {
        font-size: .98rem;
        line-height: 1.65;
    }

    .single-blog__header {
        padding: 3.2rem .5rem 1rem;
    }

    .single-blog__tagline {
        font-size: .74rem;
        margin-bottom: .45rem;
        text-align: left;
    }

    .single-blog__header h1 {
        font-size: 1.8rem;
        text-align: left;
    }

    .single-blog__media-wrap,
    .single-blog__meta-wrap,
    .single-blog__content-wrap,
    .single-blog__related,
    .single-blog__tags {
        padding-left: .5rem;
        padding-right: .5rem;
    }

    .single-blog__media img {
        max-height: 360px;
    }

    .single-blog__meta {
        font-size: .76rem;
    }

    .single-blog__content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .single-blog__content h2 {
        font-size: 1.45rem;
    }

    .single-blog__content h3 {
        font-size: 1.28rem;
    }

    .single-blog__related,
    .single-blog__tags {
        padding-top: 1.5rem;
    }

    .single-blog__tags {
        padding-bottom: 2.8rem;
    }

    .single-blog__related-item {
        max-width: 100%;
    }

    .single-blog__related-list {
        grid-template-columns: 1fr;
    }

    .single-blog__related-thumb img {
        height: 190px;
    }

    .single-blog__tags-list {
        gap: .5rem;
    }

    .services-page__row {
        grid-template-columns: 1fr;
        gap: .75rem;
        margin-bottom: 1.8rem;
    }

    .services-page__row.is-reverse .services-page__media,
    .services-page__row.is-reverse .services-page__content {
        order: initial;
    }

    .services-page__media img {
        min-height: 320px;
    }

    .services-page__content {
        padding: .25rem .2rem;
    }

    .services-page__price {
        margin-bottom: .7rem;
    }

    .services-page__price-prefix {
        font-size: .9rem;
        transform: none;
    }

    .services-page__price-value {
        font-size: 34px;
    }

    .services-page__price-currency {
        font-size: 20px;
    }

    .services-page__content h2 {
        font-size: 1.3rem;
        margin-bottom: .55rem;
    }

    .services-page__content p {
        font-size: .96rem;
        line-height: 1.58;
    }
}