body,
html {
    font-family: "Manrope", sans-serif;
    margin: 0;
    padding: 0;
}

.cleanhero_m71 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.cleanhero_m71 * {
    box-sizing: border-box;
}

.cleanhero_m71 a {
    text-decoration: none;
}

/* Header */
.cleanhero_m71__header {
    position: relative;
    z-index: 5;
    background: #ffffff;
    border-bottom: 1px solid #eef2f7;
}

.cleanhero_m71__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cleanhero_m71__brand {
    display: flex;
    align-items: center;
}

.cleanhero_m71__logo {
    display: block;
    height: 48px;
    width: auto;
}

.cleanhero_m71__nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.cleanhero_m71__link {
    color: #0f172a;
    font-weight: 600;
    padding: 10px 2px;
}

.cleanhero_m71__link:hover {
    color: #0a4ea1;
}

/* Dropdown */
.cleanhero_m71__dropdown {
    position: relative;
}

.cleanhero_m71__dropbtn {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cleanhero_m71__dropbtn:hover {
    border-color: #c9d7ee;
}

.cleanhero_m71__dropmenu {
    position: absolute;
    top: 44px;
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(16, 24, 40, .08);
    padding: 8px;
    display: none;
}

.cleanhero_m71__dropdown:hover .cleanhero_m71__dropmenu {
    display: block;
}

.cleanhero_m71__sublink {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #0f172a;
}

.cleanhero_m71__sublink:hover {
    background: #f6f8fc;
}

/* Call button */
.cleanhero_m71__cta {
    margin-left: 12px;
    background: #0a4ea1;
    color: #fff;
    padding: 12px 18px;
    border-radius: 0 20px 20px 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(10, 78, 161, .25);
}

.cleanhero_m71__cta:hover {
    background: #0c5ec7;
}

/* Burger */
.cleanhero_m71__burger {
    display: none;
    margin-left: 8px;
    width: 44px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.cleanhero_m71__burger span {
    width: 22px;
    height: 2px;
    background: #0f172a;
    transition: transform .25s ease, opacity .25s ease;
}

.cleanhero_m71__burger--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cleanhero_m71__burger--active span:nth-child(2) {
    opacity: 0;
}

.cleanhero_m71__burger--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.cleanhero_m71__nav--mobile {
    position: fixed;
    inset: 0 0 auto 0;
    top: 68px;
    background: #ffffff;
    border-top: 1px solid #eef2f7;
    display: none;
    flex-direction: column;
    padding: 16px;
    gap: 10px;
}

.cleanhero_m71__nav--open {
    display: flex;
}

.cleanhero_m71__nav .cleanhero_m71__link {
    padding: 10px 2px;
}

/* Hero */
.cleanhero_m71__hero {
    position: relative;
    height: min(78vh, 720px);
    min-height: 520px;
    overflow: hidden;
    border-radius: 16px;
    margin: 18px auto 0;
    max-width: 1400px;
}

.cleanhero_m71__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cleanhero_m71__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .38) 60%, rgba(0, 0, 0, .45) 100%);
}

.cleanhero_m71__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 0 28px;
    max-width: 1024px;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.cleanhero_m71__title {
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.05;
    font-weight: 800;
}

.cleanhero_m71__lead {
    font-size: clamp(16px, 2.2vw, 20px);
    max-width: 880px;
    opacity: .95;
}

.cleanhero_m71__line {
    font-weight: 700;
    letter-spacing: .2px;
    opacity: .95;
}

.cleanhero_m71__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff8a1f;
    color: #1b1b1b;
    font-weight: 800;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(255, 138, 31, .3);
}

.cleanhero_m71__button:hover {
    background: #ff9d43;
}

/* Responsive */
@media (max-width: 1024px) {
    .cleanhero_m71__nav {
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .cleanhero_m71__dropdown {
        display: none;
    }
}

@media (max-width: 768px) {
    .cleanhero_m71__cta {
        margin-left: auto;
    }

    .cleanhero_m71__nav {
        display: none;
    }

    .cleanhero_m71__nav--open {
        display: flex;
    }

    .cleanhero_m71__burger {
        display: flex;
    }

    /* mobile menu panel */
    #navMain_m71.cleanhero_m71__nav--mobile .cleanhero_m71__link {
        font-size: 18px;
        padding: 12px 4px;
        border-radius: 10px;
    }

    #navMain_m71.cleanhero_m71__nav--mobile .cleanhero_m71__link:hover {
        background: #f6f8fc;
    }
}

/* ===== Base ===== */
.helpblock_n42 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.helpblock_n42 * {
    box-sizing: border-box;
}

.helpblock_n42 a {
    text-decoration: none;
    color: inherit;
}

/* ===== Header ===== */
.helpblock_n42__header {
    position: relative;
    z-index: 5;
    background: #ffffff;
    border-bottom: 1px solid #eef2f7;
}

.helpblock_n42__row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.helpblock_n42__brand {
    display: flex;
    align-items: center;
}

.helpblock_n42__logo {
    height: 46px;
    width: auto;
    display: block;
}

.helpblock_n42__nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.helpblock_n42__link {
    padding: 8px 2px;
    font-weight: 600;
}

.helpblock_n42__link:hover {
    color: #0a4ea1;
}

.helpblock_n42__cta {
    margin-left: 10px;
    background: #0a4ea1;
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(10, 78, 161, .22);
}

.helpblock_n42__cta:hover {
    background: #0c5ec7;
}

.helpblock_n42__burger {
    display: none;
    margin-left: 6px;
    width: 44px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ===== Content ===== */
.helpblock_n42__wrap {
    max-width: 980px;
    margin: 42px auto 56px;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.helpblock_n42__wrap:before {
    content: "";
    position: absolute;
    inset: -40px 0 auto 0;
    height: 160px;
    background:
        radial-gradient(1200px 120px at 50% -20px, rgba(13, 110, 253, 0.06), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.helpblock_n42__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    color: #1f3b8b;
}

.helpblock_n42__titlelogo {
    display: inline-flex;
    align-items: center;
}

.helpblock_n42__titleimg {
    height: 44px;
    width: auto;
    display: block;
}

.chooseus_w63 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    position: relative;
}

.chooseus_w63 * {
    box-sizing: border-box;
}

.chooseus_w63 a {
    text-decoration: none;
    color: inherit;
}

.helpblock_n42__titletext {
    color: #2b6dd8;
}

.helpblock_n42__lead {
    margin: 18px auto 6px;
    font-size: 18px;
    color: #0f172a;
}

.helpblock_n42__desc {
    margin: 0 auto;
    max-width: 860px;
    color: #475569;
    line-height: 1.65;
}

/* ===== Mobile ===== */
@media (max-width: 900px) {
    .helpblock_n42__nav {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .helpblock_n42__nav {
        display: none;
    }

    .helpblock_n42__burger {
        display: flex;
    }

    .helpblock_n42__cta {
        margin-left: auto;
    }

    .helpblock_n42__title {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== Mobile menu panel ===== */
.helpblock_n42__nav--mobile {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eef2f7;
    display: none;
    flex-direction: column;
    padding: 14px 18px;
    gap: 8px;
    z-index: 10;
}

.helpblock_n42__nav--open {
    display: flex;
}

.helpblock_n42__nav--mobile .helpblock_n42__link {
    padding: 12px 6px;
    border-radius: 10px;
}

.helpblock_n42__nav--mobile .helpblock_n42__link:hover {
    background: #f6f8fc;
}

.chooseus_w63__header {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    position: relative;
    z-index: 3;
}

.chooseus_w63__row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.chooseus_w63__brand {
    display: flex;
    align-items: center;
}

.chooseus_w63__logo {
    height: 46px;
    width: auto;
    display: block;
}

.chooseus_w63__nav {
    margin-left: auto;
    display: flex;
    gap: 22px;
    align-items: center;
}

.chooseus_w63__link {
    padding: 8px 2px;
    font-weight: 600;
}

.chooseus_w63__link:hover {
    color: #0a4ea1;
}

.chooseus_w63__cta {
    background: #0a4ea1;
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(10, 78, 161, .22);
    margin-left: 8px;
}

.chooseus_w63__cta:hover {
    background: #0c5ec7;
}

.chooseus_w63__burger {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Background */
.chooseus_w63__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.chooseus_w63__bgimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0) brightness(0.96);
    opacity: .25;
}

/* Content */
.chooseus_w63__wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 36px auto 0;
    padding: 24px 20px 56px;
}

.chooseus_w63__title {
    text-align: center;
    font-size: clamp(28px, 4.8vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    color: #1f3b8b;
    margin: 10px 0 28px;
}

.chooseus_w63__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: start;
}

.chooseus_w63__item {
    text-align: center;
    padding: 10px 12px;
}

.chooseus_w63__icon {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #ff8a1f;
    color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 10px 22px rgba(255, 138, 31, .25);
    font-size: 40px;
}

.chooseus_w63__heading {
    font-size: 22px;
    color: #1f3b8b;
    margin: 8px 0 8px;
    font-weight: 800;
}

.chooseus_w63__sub {
    margin: 0 0 6px;
    color: #0f172a;
}

.chooseus_w63__text {
    color: #475569;
}

/* Mobile menu panel */
.chooseus_w63__nav--mobile {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eef2f7;
    display: none;
    flex-direction: column;
    padding: 14px 18px;
    gap: 8px;
    z-index: 5;
}

.chooseus_w63__nav--open {
    display: flex;
}

.chooseus_w63__nav--mobile .chooseus_w63__link {
    padding: 12px 6px;
    border-radius: 10px;
}

.chooseus_w63__nav--mobile .chooseus_w63__link:hover {
    background: #f6f8fc;
}

/* Responsive */
@media (max-width: 992px) {
    .chooseus_w63__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 768px) {
    .chooseus_w63__nav {
        display: none;
    }

    .chooseus_w63__burger {
        display: flex;
    }

    .chooseus_w63__cta {
        margin-left: auto;
    }

    .chooseus_w63__wrap {
        padding-bottom: 42px;
    }

    .chooseus_w63__icon {
        width: 96px;
        height: 96px;
        font-size: 36px;
    }
}

.whohelp_h54 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.whohelp_h54 * {
    box-sizing: border-box;
}

.whohelp_h54 a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.whohelp_h54__header {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    position: relative;
    z-index: 5;
}

.whohelp_h54__row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.whohelp_h54__brand {
    display: flex;
    align-items: center;
}

.whohelp_h54__logo {
    height: 46px;
    width: auto;
    display: block;
}

.whohelp_h54__nav {
    margin-left: auto;
    display: flex;
    gap: 22px;
    align-items: center;
}

.whohelp_h54__link {
    padding: 8px 2px;
    font-weight: 600;
}

.whohelp_h54__link:hover {
    color: #0a4ea1;
}

.whohelp_h54__cta {
    background: #0a4ea1;
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(10, 78, 161, .22);
    margin-left: 8px;
}

.whohelp_h54__cta:hover {
    background: #0c5ec7;
}

.whohelp_h54__burger {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Content */
.whohelp_h54__wrap {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 60px;
}

.whohelp_h54__title {
    text-align: center;
    font-size: clamp(28px, 4.5vw, 46px);
    line-height: 1.15;
    font-weight: 900;
    color: #1f3b8b;
    margin-bottom: 32px;
}

.whohelp_h54__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: center;
}

.whohelp_h54__card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.whohelp_h54__imgbox {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.whohelp_h54__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.whohelp_h54__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.7) 100%);
}

.whohelp_h54__content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.whohelp_h54__heading {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.whohelp_h54__text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.whohelp_h54__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff8a1f;
    color: #1b1b1b;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(255, 138, 31, .35);
}

.whohelp_h54__btn:hover {
    background: #ff9d43;
}

/* Mobile nav */
.whohelp_h54__nav--mobile {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eef2f7;
    display: none;
    flex-direction: column;
    padding: 14px 18px;
    gap: 8px;
    z-index: 5;
}

.whohelp_h54__nav--open {
    display: flex;
}

.whohelp_h54__nav--mobile .whohelp_h54__link {
    padding: 12px 6px;
    border-radius: 10px;
}

.whohelp_h54__nav--mobile .whohelp_h54__link:hover {
    background: #f6f8fc;
}

/* Responsive */
@media(max-width:992px) {
    .whohelp_h54__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media(max-width:768px) {
    .whohelp_h54__nav {
        display: none;
    }

    .whohelp_h54__burger {
        display: flex;
    }

    .whohelp_h54__cta {
        margin-left: auto;
    }
}

.services_s84 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.services_s84 * {
    box-sizing: border-box;
}

.services_s84 a {
    text-decoration: none;
    color: inherit;
}

/* ===== Header (опционально) ===== */
.services_s84__header {
    background: #fff;
    border-bottom: 1px solid #eef2f7;
    position: relative;
    z-index: 5;
}

.services_s84__row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.services_s84__brand {
    display: flex;
    align-items: center;
}

.services_s84__logo {
    height: 46px;
    width: auto;
    display: block;
}

.services_s84__nav {
    margin-left: auto;
    display: flex;
    gap: 22px;
    align-items: center;
}

.services_s84__link {
    padding: 8px 2px;
    font-weight: 600;
}

.services_s84__link:hover {
    color: #0a4ea1;
}

.services_s84__cta {
    background: #0a4ea1;
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(10, 78, 161, .22);
    margin-left: 8px;
}

.services_s84__cta:hover {
    background: #0c5ec7;
}

.services_s84__burger {
    display: none;
    width: 44px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* ===== Background layer ===== */
.services_s84__back {
    position: absolute;
    inset: 0;
    background: #1a4d93;
}

.services_s84__back:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 220px at 20% 14%, rgba(255, 255, 255, .08), transparent 60%),
        radial-gradient(800px 220px at 80% 70%, rgba(255, 255, 255, .06), transparent 62%);
    opacity: .9;
}

/* ===== Content ===== */
.services_s84__wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 38px auto 60px;
    padding: 0 20px;
}

.services_s84__title {
    text-align: center;
    color: #ffffff;
    font-size: clamp(28px, 4.6vw, 48px);
    line-height: 1.15;
    font-weight: 900;
    margin: 10px 0 26px;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .25);
}

.services_s84__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services_s84__card {
    background: #ffffff;
    border-radius: 26px;
    padding: 18px 18px 22px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, .10);
}

.services_s84__photobox {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
}

.services_s84__photo {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.services_s84__heading {
    font-size: clamp(22px, 2.6vw, 32px);
    color: #1f3b8b;
    margin: 6px 0 8px;
    font-weight: 900;
}

.services_s84__text {
    color: #475569;
    line-height: 1.65;
    margin-bottom: 16px;
}

.services_s84__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff8a1f;
    color: #1b1b1b;
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 138, 31, .35);
}

.services_s84__btn:hover {
    background: #ff9d43;
}

/* ===== Mobile nav panel ===== */
.services_s84__nav--mobile {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eef2f7;
    display: none;
    flex-direction: column;
    padding: 14px 18px;
    gap: 8px;
    z-index: 6;
}

.services_s84__nav--open {
    display: flex;
}

.services_s84__nav--mobile .services_s84__link {
    padding: 12px 6px;
    border-radius: 10px;
}

.services_s84__nav--mobile .services_s84__link:hover {
    background: #f6f8fc;
}

/* ===== Responsive ===== */
@media(max-width:1100px) {
    .services_s84__photo {
        height: 210px;
    }
}

@media(max-width:992px) {
    .services_s84__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .services_s84__photo {
        height: 220px;
    }
}

@media(max-width:768px) {
    .services_s84__nav {
        display: none;
    }

    .services_s84__burger {
        display: flex;
    }

    .services_s84__cta {
        margin-left: auto;
    }

    .services_s84__photo {
        height: 200px;
    }
}

.aboutus_a28 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.aboutus_a28 * {
    box-sizing: border-box;
}

.aboutus_a28 a {
    text-decoration: none;
    color: inherit;
}

/* subtle diagonal background like screenshot */
.aboutus_a28::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0 40%, rgba(255, 255, 255, 0) 40%),
        repeating-linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0 14px, rgba(15, 23, 42, 0.02) 14px 36px);
}

/* ===== Layout ===== */
.aboutus_a28__wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 40px;
}

.aboutus_a28__card {
    border-radius: 170px 170px 170px 0px !important;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .10);
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 24px;
    align-items: center;
    padding: 36px 36px 36px 36px;
    position: relative;
}

/* big rounded accent on left-right edges to echo screenshot */
.aboutus_a28__card::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(15, 23, 42, .04);
    filter: blur(2px);
    z-index: 0;
}

/* Text side */
.aboutus_a28__text {
    position: relative;
    z-index: 1;
    padding: 8px 6px;
}

.aboutus_a28__title {
    font-weight: 900;
    color: #1f3b8b;
    font-size: clamp(28px, 4.6vw, 46px);
    line-height: 1.15;
    margin: 4px 0 14px;
}

.aboutus_a28__lead {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 18px;
}

.aboutus_a28__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff8a1f;
    color: #1b1b1b;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 138, 31, .32);
}

.aboutus_a28__btn:hover {
    background: #ff9d43;
}

/* Image side with generous rounding */
.aboutus_a28__media {
    position: relative;
    z-index: 1;
    border-radius: 46px;
    padding: 20px;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    justify-self: end;
}

.aboutus_a28__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .aboutus_a28__card {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .aboutus_a28__media {
        order: -1;
        max-height: 300px;
        justify-self: stretch;
        border-radius: 32px;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

@media (max-width: 768px) {
    .aboutus_a28__wrap {
        padding-bottom: 24px;
    }

    .aboutus_a28__btn {
        padding: 12px 18px;
        border-radius: 16px;
    }
}

.quote_q73 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.quote_q73 * {
    box-sizing: border-box;
}

.quote_q73 a {
    text-decoration: none;
    color: inherit;
}

/* layout */
.quote_q73__wrap {
    max-width: 1200px;
    margin: 66px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 36px;
    align-items: start;
    position: relative;
}

.quote_q73__left {
    background: #154a95;
    color: #fff;
    border-radius: 18px;
    padding: 38px 34px;
    position: relative;
    min-height: 520px;
}

.quote_q73__right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* texts */
.quote_q73__title {
    font-size: clamp(28px, 4.6vw, 48px);
    line-height: 1.1;
    font-weight: 900;
    margin: 6px 0 12px;
}

.quote_q73__lead {
    color: #e6eefb;
    line-height: 1.7;
    margin-bottom: 24px;
}

.quote_q73__subtitle {
    font-size: 24px;
    font-weight: 800;
    margin: 8px 0 12px;
}

.quote_q73__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote_q73__rowline {
    display: flex;
    gap: 8px;
    align-items: center;
}

.quote_q73__label {
    font-weight: 700;
    color: #ff8a1f;
}

.quote_q73__link {
    color: #ffb34f;
    text-decoration: underline;
}

.quote_q73__link:hover {
    opacity: .9;
}

/* form */
.quote_q73__form {
    width: 100%;
    background: #fff9f5;
    border-radius: 0;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, .10);
}

.quote_q73__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.quote_q73__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote_q73__field--full {
    grid-column: 1/-1;
}

.quote_q73__input,
.quote_q73__textarea {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 14px;
    outline: none;
    font-size: 15px;
    color: #0f172a;
    background: #fff;
}

.quote_q73__input:focus,
.quote_q73__textarea:focus {
    border-color: #cbd5e1;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, .08);
}

.quote_q73__textarea {
    resize: vertical;
}

.quote_q73__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.quote_q73__check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
}

/* date icon */
.quote_q73__field--date {
    position: relative;
}

.quote_q73__icon-cal {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: #64748b;
    pointer-events: none;
}

/* actions */
.quote_q73__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.quote_q73__btn {
    background: #ff8a1f;
    color: #1b1b1b;
    padding: 14px 22px;
    border: 0;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 138, 31, .32);
    cursor: pointer;
}

.quote_q73__btn:hover {
    background: #ff9d43;
}

/* responsive */
@media (max-width: 1024px) {
    .quote_q73__wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quote_q73__left {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .quote_q73__grid {
        grid-template-columns: 1fr;
    }

    .quote_q73__actions {
        justify-content: stretch;
    }

    .quote_q73__btn {
        width: 100%;
    }
}

.carpet_c59 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    position: relative;
    overflow: hidden;
}

.carpet_c59 * {
    box-sizing: border-box;
}

.carpet_c59 a {
    text-decoration: none;
    color: inherit;
}

/* ===== Layout ===== */
.carpet_c59__wrap {
    max-width: 1240px;
    margin: 60px auto 50px;
    padding: 0 24px;
}

.carpet_c59__card {
    position: relative;
    background: #fff;
    border-radius: 38px 180px 180px 38px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .10);
    padding: 36px 36px 36px 36px;
    min-height: 280px;
    overflow: visible;
}

.carpet_c59__text {
    max-width: 740px;
}

.carpet_c59__title {
    font-weight: 900;
    color: #1f3b8b;
    font-size: clamp(28px, 4.6vw, 46px);
    line-height: 1.1;
    margin: 8px 0 14px;
}

.carpet_c59__lead {
    color: #374151;
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 18px;
}

.carpet_c59__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff8a1f;
    color: #1b1b1b;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(255, 138, 31, .32);
}

.carpet_c59__btn:hover {
    background: #ff9d43;
}

/* ===== Circular image on the right ===== */
.carpet_c59__media {
    position: absolute;
    right: 3px;
    top: 0px;
    width: 351px;
    /* height: 520px; */
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(16, 24, 40, .14);
}

.carpet_c59__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .carpet_c59__media {
        right: -20px;
        width: 460px;
        height: 460px;
    }
}

@media (max-width: 1024px) {
    .carpet_c59__media {
        position: relative;
        right: auto;
        top: auto;
        margin: 18px auto 0;
        width: 420px;
        height: 420px;
    }

    .carpet_c59__card {
        border-radius: 32px;
        padding: 28px;
    }

    .carpet_c59__text {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .carpet_c59__media {
        width: 240px;
        height: 240px;
    }

    .carpet_c59__btn {
        padding: 12px 18px;
        border-radius: 16px;
    }
}

.footer_f62 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    background: #fff;
}

.footer_f62 * {
    box-sizing: border-box;
}

.footer_f62 a {
    text-decoration: none;
    color: inherit;
}

.footer_f62__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 34px 20px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 28px 36px;
    align-items: flex-start;
}

.footer_f62__brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer_f62__logo {
    height: 56px;
    width: auto;
    display: block;
}

.footer_f62__blurb {
    color: #475569;
    max-width: 520px;
    line-height: 1.7;
    margin-top: 8px;
}

.footer_f62__head {
    color: #1f3b8b;
    font-weight: 900;
    font-size: 18px;
    margin: 6px 0 12px;
}

.footer_f62__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_f62__link {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer_f62__link:hover {
    opacity: .9;
}

.footer_f62__link--accent {
    color: #ff8a1f;
}

.footer_f62__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer_f62__row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer_f62__label {
    font-weight: 700;
    color: #334155;
}

.footer_f62__divider {
    max-width: 1200px;
    margin: 10px auto 0;
    height: 1px;
    background: #e9eef5;
}

.footer_f62__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 18px;
}

.footer_f62__copy {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

.footer_f62__copy .footer_f62__link {
    color: #0a4ea1;
    text-decoration: underline;
}

@media (max-width:1024px) {
    .footer_f62__wrap {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

@media (max-width:640px) {
    .footer_f62__wrap {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer_f62__logo {
        height: 52px;
    }

    .footer_f62__copy {
        text-align: center;
    }
}

.faq_g27 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.faq_g27 * {
    box-sizing: border-box;
}

.faq_g27 a {
    text-decoration: none;
    color: inherit;
}

.faq_g27__wrap {
    max-width: 1200px;
    margin: 64px auto 40px;
    padding: 0 20px;
}

.faq_g27__section {
    color: #ff8a1f;
    font-weight: 900;
    font-size: 28px;
    margin: 10px 0 14px;
}

.faq_g27__list {
    border: 1px solid #e6e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.faq_g27__item {
    border-top: 1px solid #e6e7eb;
}

.faq_g27__item:first-child {
    border-top: 0;
}

.faq_g27__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    background: #fff;
}

.faq_g27__q {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #1f3b8b;
    margin: 0;
}

.faq_g27__chev {
    transition: transform .25s ease;
    color: #0f172a;
}

.faq_g27__body {
    display: none;
    background: #eceff3;
    padding: 18px 20px 22px;
    color: #334155;
    line-height: 1.7;
}

.faq_g27__item--open .faq_g27__body {
    display: block;
}

.faq_g27__item--open .faq_g27__chev {
    transform: rotate(180deg);
}

.faq_g27__btn {
    display: inline-block;
    margin-top: 12px;
    background: #ff8a1f;
    color: #1b1b1b;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 138, 31, .3);
}

.faq_g27__btn:hover {
    background: #ff9d43;
}

@media (max-width:768px) {
    .faq_g27__q {
        font-size: 20px;
    }

    .faq_g27__head {
        padding: 16px;
    }

    .faq_g27__body {
        padding: 16px;
    }
}

.aboutwide_m91 {
    width: 100%;
    display: grid;
    padding: 60px 0;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.aboutwide_m91 * {
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
}

.aboutwide_m91__left {
    position: relative;
    overflow: hidden;
}

.aboutwide_m91__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aboutwide_m91__right {
    background: #154a95;
    color: #e7f0ff;
    display: flex;
    align-items: center;
}

.aboutwide_m91__inner {
    max-width: 720px;
    padding: 38px 40px;
    margin-left: 0;
}

.aboutwide_m91__title {
    font-size: clamp(28px, 4.8vw, 48px);
    line-height: 1.1;
    font-weight: 900;
    color: #ffb34f;
    margin: 0 0 14px;
}

.aboutwide_m91__text {
    line-height: 1.75;
    margin: 0 0 14px;
}

.aboutwide_m91__list {
    margin: 6px 0 14px 18px;
    padding: 0 0 0 10px;
}

.aboutwide_m91__list li {
    margin: 6px 0;
}

/* full-bleed + safe on huge screens */
@media (min-width:1400px) {
    .aboutwide_m91__inner {
        margin-left: 6vw;
    }
}

/* tablet/phone */
@media (max-width:992px) {
    .aboutwide_m91 {
        grid-template-columns: 1fr;
    }

    .aboutwide_m91__left {
        height: 340px;
    }

    .aboutwide_m91__inner {
        padding: 28px 20px;
    }
}

.servicesfull_u77 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.servicesfull_u77 * {
    box-sizing: border-box;
}

.servicesfull_u77 a {
    text-decoration: none;
    color: inherit;
}

/* Hero strip */
.servicesfull_u77__hero {}

.servicesfull_u77__heroInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
}

.servicesfull_u77__heroTitle {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 3px 14px rgba(0, 0, 0, .25);
    font-size: clamp(26px, 4.4vw, 40px);
}

/* Intro two columns */
.servicesfull_u77__intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 20px 30px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
}

.servicesfull_u77__introTitle {
    color: #154a95;
    font-weight: 900;
    line-height: 1.15;
    font-size: clamp(22px, 3.4vw, 32px);
}

.servicesfull_u77__introText {
    color: #344054;
    line-height: 1.7;
}

/* Why band */
.servicesfull_u77__why {
    background: #154a95;
    color: #dfeafe;
    padding: 30px 20px 36px;
}

.servicesfull_u77__whyTitle {
    text-align: center;
    font-weight: 900;
    font-size: clamp(22px, 3.6vw, 30px);
    margin: 4px 0 18px;
}

.servicesfull_u77__whyGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servicesfull_u77__whyItem {
    text-align: center;
}

.servicesfull_u77__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #ff8a1f;
    color: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 34px;
    box-shadow: 0 10px 22px rgba(255, 138, 31, .28);
}

.servicesfull_u77__whyHead {
    font-weight: 800;
    margin: 6px 0 6px;
}

.servicesfull_u77__whyText {
    opacity: .95;
}

/* Cards */
.servicesfull_u77__wrap {
    max-width: 1200px;
    margin: 28px auto 48px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.servicesfull_u77__card {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 280px;
    align-items: center;
    gap: 24px;
}

.servicesfull_u77__card--right {
    grid-template-columns: 280px 1.3fr;
}

.servicesfull_u77__cardText {
    background: #fff;
    border-radius: 32px 32px 120px 32px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .10);
    padding: 22px 24px 24px;
}

.servicesfull_u77__cardTitle {
    color: #1f3b8b;
    font-weight: 900;
    font-size: clamp(20px, 3.2vw, 26px);
    margin: 4px 0 8px;
}

.servicesfull_u77__cardLead {
    color: #475569;
    line-height: 1.7;
    margin: 0 0 14px;
}

.servicesfull_u77__btn {
    display: inline-block;
    background: #ff8a1f;
    color: #1b1b1b;
    padding: 12px 18px;
    border-radius: 16px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 138, 31, .3);
}

.servicesfull_u77__btn:hover {
    background: #ff9d43;
}

.servicesfull_u77__circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .12);
}

.servicesfull_u77__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .servicesfull_u77__intro {
        grid-template-columns: 1fr;
    }

    .servicesfull_u77__whyGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .servicesfull_u77__card,
    .servicesfull_u77__card--right {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .servicesfull_u77__circle {
        order: 2;
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .servicesfull_u77__circle {
        width: 180px;
        height: 180px;
        margin-left: auto;
        margin-right: auto;
    }

    .servicesfull_u77__cardText {
        border-radius: 26px;
    }
}

.eolfaq_e41 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.eolfaq_e41 * {
    box-sizing: border-box;
}

.eolfaq_e41__wrap {
    max-width: 1100px;
    margin: 68px auto 70px;
    padding: 0 20px;
}

.eolfaq_e41__title {
    color: #ff8a1f;
    font-weight: 900;
    font-size: 26px;
    margin: 8px 0 14px;
}

.eolfaq_e41__list {
    border: 1px solid #e6e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.eolfaq_e41__item {
    border-top: 1px solid #e6e7eb;
}

.eolfaq_e41__item:first-child {
    border-top: 0;
}

.eolfaq_e41__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: #f7f8fa;
    cursor: pointer;
    border: 0;
    outline: none;
}

.eolfaq_e41__q {
    font-weight: 800;
    color: #1f3b8b;
    font-size: 18px;
    text-align: left;
}

.eolfaq_e41__chev {
    transition: transform .25s ease;
    color: #0f172a;
}

.eolfaq_e41__body {
    display: none;
    padding: 16px 18px;
    background: #fff;
    color: #334155;
    line-height: 1.7;
    border-top: 1px solid #eceef2;
}

/* open state */
.eolfaq_e41__item--open .eolfaq_e41__body {
    display: block;
}

.eolfaq_e41__item--open .eolfaq_e41__head {
    background: #ffffff;
}

.eolfaq_e41__item--open .eolfaq_e41__chev {
    transform: rotate(180deg);
}

@media (max-width:720px) {
    .eolfaq_e41__q {
        font-size: 16px;
    }

    .eolfaq_e41__head {
        padding: 14px 16px;
    }

    .eolfaq_e41__body {
        padding: 14px 16px;
    }
}

.quote_q91 {
    position: relative;
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    color: #0f172a;
}

.quote_q91 * {
    box-sizing: border-box;
}

.quote_q91 a {
    text-decoration: none;
    color: inherit;
}

/* Layout */
.quote_q91__wrap {
    max-width: 1160px;
    margin: 90px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.02fr 1fr;
    gap: 28px;
    align-items: start;
}

.quote_q91__left {
    position: relative;
    padding: 16px 0 10px;
}

.quote_q91__left:before {
    content: "";
    position: absolute;
    inset: -40px -80px -60px -120px;

    opacity: .12;
    filter: grayscale(1);
    z-index: -1;
}

/* Left texts */
.quote_q91__title {
    font-size: clamp(26px, 4.5vw, 42px);
    color: #1f3b8b;
    font-weight: 900;
    margin: 0 0 10px;
}

.quote_q91__lead {
    color: #394b63;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 560px;
}

.quote_q91__sub {
    font-size: 20px;
    color: #1f3b8b;
    font-weight: 800;
    margin: 8px 0 10px;
}

.quote_q91__lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote_q91__line {
    display: flex;
    gap: 8px;
    align-items: center;
}

.quote_q91__line span {
    font-weight: 700;
    color: #334155;
}

.quote_q91__link {
    color: #ff8a1f;
    text-decoration: underline;
}

/* Right form card */
.quote_q91__right {
    display: flex;
    justify-content: flex-start;
}

.quote_q91__form {
    background: #0f4a93;
    color: #e7f0ff;
    width: 100%;
    border-radius: 22px 22px 22px 22px;
    padding: 18px 18px 16px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .18);
}

.quote_q91__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
}

.quote_q91__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote_q91__field--full {
    grid-column: 1/-1;
}

.quote_q91__label {
    font-size: 13px;
    opacity: .9;
}

.quote_q91__input,
.quote_q91__textarea {
    width: 100%;
    background: #f9eed4;
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    color: #0f172a;
    font-size: 14px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
}

.quote_q91__input:focus,
.quote_q91__textarea:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25), inset 0 0 0 1px #cbd5e1;
    outline: 0;
}

.quote_q91__textarea {
    resize: vertical;
}

/* checks */
.quote_q91__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}

.quote_q91__check {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: #e7f0ff;
    font-size: 14px;
}

.quote_q91__check input {
    width: 16px;
    height: 16px;
}

/* date icon */
.quote_q91__field--date {
    position: relative;
}

.quote_q91__cal {
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: #6b90c2;
    pointer-events: none;
}

/* actions */
.quote_q91__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.quote_q91__btn {
    background: #ff8a1f;
    color: #1b1b1b;
    border: 0;
    border-radius: 18px;
    padding: 12px 22px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(255, 138, 31, .32);
}

.quote_q91__btn:hover {
    background: #ff9d43;
}

/* Responsive */
@media (max-width: 1024px) {
    .quote_q91__wrap {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .quote_q91__left:before {
        inset: -20px -20px -20px -20px;
    }
}

@media (max-width: 720px) {
    .quote_q91__grid {
        grid-template-columns: 1fr;
    }

    .quote_q91__actions {
        justify-content: stretch;
    }

    .quote_q91__btn {
        width: 100%;
    }
}

.privacy_p33 {
    font-family: "Manrope", sans-serif;
    color: #0f172a;
    padding: 40px 20px 60px;
    background: #fafbfc;
}

.privacy_p33__container {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy_p33__title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #1f3b8b;
    margin-bottom: 16px;
}

.privacy_p33__subtitle {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: #1f3b8b;
    margin: 36px 0 14px;
}

.privacy_p33__text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 16px;
}

.privacy_p33__list {
    margin: 0 0 24px 18px;
    padding: 0;
    list-style: disc;
    color: #334155;
}

.privacy_p33__list li {
    margin-bottom: 8px;
}

/* адаптив */
@media (max-width: 720px) {
    .privacy_p33 {
        padding: 24px 14px 40px;
    }

    .privacy_p33__title {
        font-size: 28px;
    }

    .privacy_p33__subtitle {
        font-size: 20px;
    }

    .privacy_p33__text {
        font-size: 15px;
    }
}

@media (max-width:767px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.cookiebar_ck21 {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 18px;
    z-index: 60;
    display: none;
    padding: 0 16px;
}

.cookiebar_ck21__inner {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(17, 24, 39, 0.85);
    color: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(2, 8, 23, .35);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(6px);
}

.cookiebar_ck21__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(245, 158, 11, .35);
}

.cookiebar_ck21__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.55;
}

.cookiebar_ck21__text strong {
    font-weight: 900;
    letter-spacing: .2px;
}

.cookiebar_ck21__link {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookiebar_ck21__link:hover {
    color: #bfdbfe;
}

.cookiebar_ck21__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookiebar_ck21__btn {
    background: #22c55e;
    color: #0b1b12;
    border: 0;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(34, 197, 94, .35);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookiebar_ck21__btn:hover {
    background: #34d399;
}

/* Compact (tablet/phone) */
@media (max-width: 720px) {
    .cookiebar_ck21__inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }

    .cookiebar_ck21__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .cookiebar_ck21__actions {
        justify-content: flex-start;
    }
}

/* Safe area for mobile browsers */
@supports (padding: max(0px)) {
    .cookiebar_ck21 {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}