:root {
    --bv-blue: #295da8;
    --bv-dark: #171717;
    --bv-text: #666;
    --bv-muted: #999;
    --bv-border: #e7e7e7;
    --bv-white: #fff;
    --bv-max: 1080px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: 110px;
}

body {
    margin: 0;
    color: var(--bv-text);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    background: #fff;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3 {
    margin: 0;
    color: #333;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(88vw, var(--bv-max));
    margin: 0 auto;
}

.container--narrow {
    max-width: 720px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 78px 0;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    transition: box-shadow .25s ease, background .25s ease;
}

.top-bar {
    background: var(--bv-blue);
}

.top-bar .top-bar__inner {
    min-height: 30px;
    justify-content: flex-start;
    gap: 18px;
}

.top-bar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.top-bar__icon {
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.top-bar__icon--phone::before {
    content: "\260E";
}

.top-bar__icon--mail::before {
    content: "\2709";
}

.home .site-header:not(.is-scrolled) {
    background: rgba(255, 255, 255, .92);
    box-shadow: none;
}

.site-header__inner {
    width: min(90vw, 1080px);
    min-height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo img {
    width: 230px;
    aspect-ratio: 338 / 65;
    max-height: 46px;
    object-fit: contain;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list a {
    display: block;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
    color: var(--bv-blue);
}

.site-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 10px;
}

.site-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #333;
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #111;
}

.hero__slides,
.hero__slide,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 6s linear;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1.12);
}

.hero__overlay {
    background: rgba(0, 0, 0, .5);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(92vw, 980px);
    padding-top: 64px;
    color: #fff;
    text-align: center;
}

.hero__mark {
    width: 70px;
    margin: 0 auto 34px;
}

.hero h1 {
    color: #fff;
    font-size: clamp(45px, 7vw, 70px);
    font-weight: 800;
    line-height: 1;
}

.hero p {
    margin: 24px auto 34px;
    color: #fff;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 28px;
    border: 1px solid var(--bv-blue);
    background: var(--bv-blue);
    color: #fff;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
    background: #1f4d91;
    border-color: #1f4d91;
}

.button--outline {
    border-color: rgba(255, 255, 255, .7);
    background: transparent;
}

.button--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .14);
}

.button--gold {
    border-color: #d6ac4d;
    background: #d6ac4d;
    color: #071b2c;
}

.button--gold:hover {
    border-color: #c99a2e;
    background: #c99a2e;
    color: #071b2c;
}

.hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 42px;
    left: 50%;
    width: 35px;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 22px;
    transform: translateX(-50%);
}

.hero__scroll span {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 4px;
    height: 9px;
    border-radius: 99px;
    background: #fff;
    transform: translateX(-50%);
    animation: bv-scroll 1.6s ease-in-out infinite;
}

@keyframes bv-scroll {
    0%, 100% { opacity: .35; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 13px); }
}

.breadcrumbs {
    margin-top: 100px;
    border-bottom: 1px solid #e8edf4;
    background: #fff;
}

.breadcrumbs ol {
    min-height: 46px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8a94a5;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.breadcrumbs li + li::before {
    color: #b8c2cf;
    content: "/";
}

.breadcrumbs a {
    color: var(--bv-blue);
    transition: color .2s ease;
}

.breadcrumbs a:hover {
    color: #071b2c;
}

.breadcrumbs span {
    color: #556170;
}

.intro h2 {
    margin-bottom: 24px;
    font-size: 35px;
}

.rich-text strong {
    color: #333;
}

.services-band {
    background-position: center;
    background-size: cover;
}

.services-grid {
    width: min(100%, 1280px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.service-card {
    min-height: 260px;
    padding: 36px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .16);
    transition: background .2s ease;
}

.service-card:hover {
    background: rgba(41, 93, 168, .65);
}

.service-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-card span {
    display: block;
    color: #fff;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.service-card small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    line-height: 1.45;
}

.landing-hero {
    position: relative;
    min-height: 760px;
    padding: 170px 0 92px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #071b2c;
    background-position: center;
    background-size: cover;
}

.landing-hero__slides,
.landing-hero__slide,
.landing-hero__overlay {
    position: absolute;
    inset: 0;
}

.landing-hero__slides {
    z-index: 0;
}

.landing-hero__slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.1s ease;
}

.landing-hero__slide.is-active {
    opacity: 1;
    animation: landingHeroZoomOut 6.4s ease forwards;
}

.landing-hero__overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(4,22,39,.78), rgba(4,22,39,.54) 54%, rgba(4,22,39,.18));
}

@keyframes landingHeroZoomOut {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1);
    }
}

.landing-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 58px;
    align-items: center;
}

.landing-hero__copy {
    max-width: 760px;
    color: #fff;
}

.landing-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: #d6ac4d;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
}

.landing-kicker--blue {
    color: var(--bv-blue);
}

.landing-kicker--gold {
    color: #b48322;
}

.landing-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.08;
}

.landing-hero__copy p {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.75;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.landing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 520px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.landing-stats strong {
    display: block;
    color: #d9ebff;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.landing-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .66);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.landing-hero__form {
    min-height: 502px;
    padding: 34px;
    border-radius: 16px;
    border: 1px solid rgba(232, 237, 244, .95);
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.landing-hero__form h2 {
    color: #071b2c;
    font-size: 26px;
    line-height: 1.25;
}

.landing-hero__form > p {
    margin-top: 12px;
    color: #6f7f95;
    font-size: 14px;
    line-height: 1.65;
}

.landing-lead-form .wpcf7-form {
    grid-template-columns: 1fr;
}

.landing-section-head {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.landing-section-head--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    text-align: left;
}

.landing-section-head h1,
.landing-section-head h2 {
    color: #071b2c;
    font-size: 35px;
}

.landing-section-head p {
    margin-top: 12px;
    color: #667085;
    font-size: 15px;
    line-height: 1.75;
}

.landing-trust {
    background: #fff;
}

.landing-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.landing-trust-card,
.landing-service-card,
.landing-work-card {
    background: #fff;
    border: 1px solid #e8edf4;
    box-shadow: 0 10px 28px rgba(7, 27, 44, .06);
}

.landing-trust-card {
    padding: 32px;
}

.landing-trust-card span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--bv-blue);
    font-family: "Raleway", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.landing-trust-card h3,
.landing-service-card h3,
.landing-work-card h3 {
    color: #071b2c;
    font-size: 20px;
}

.landing-trust-card p,
.landing-service-card p {
    margin-top: 12px;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.landing-services,
.landing-portfolio {
    background: #f6f8fb;
}

.landing-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.landing-service-card {
    min-height: 280px;
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.landing-service-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    background: #edf4ff;
}

.landing-service-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.landing-service-card a {
    margin-top: auto;
    padding-top: 18px;
    color: var(--bv-blue);
    font-family: "Raleway", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.landing-articles {
    background: #fff;
}

.landing-article-list {
    display: grid;
    gap: 78px;
}

.landing-article {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 56px;
    align-items: center;
}

.landing-article--image-right {
    grid-template-columns: 1fr .82fr;
}

.landing-article--image-right figure {
    order: 2;
}

.landing-article figure {
    margin: 0;
    overflow: hidden;
    background: #e9eef5;
    box-shadow: 0 20px 42px rgba(7, 27, 44, .12);
}

.landing-article img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.landing-article__copy h2 {
    margin-bottom: 18px;
    color: #071b2c;
    font-size: 31px;
}

.landing-article__copy .button {
    margin-top: 8px;
}

.landing-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.landing-work-card {
    display: block;
    overflow: hidden;
}

.landing-work-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .25s ease;
}

.landing-work-card:hover img {
    transform: scale(1.04);
}

.landing-work-card span {
    display: block;
    padding: 18px 20px 0;
    color: var(--bv-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.landing-work-card h3 {
    padding: 6px 20px 20px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
}

.landing-portfolio__actions {
    margin-top: 34px;
    text-align: center;
}

.landing-contact {
    background: #fff;
}

.landing-contact__grid {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 60px;
    align-items: start;
}

.landing-contact h2 {
    margin-bottom: 16px;
    color: #071b2c;
    font-size: 35px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: block;
    margin-bottom: 14px;
    color: rgba(51, 51, 51, .97);
    font-family: "Raleway", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.prices h2,
.gallery-section h2,
.advantages h2 {
    font-size: 34px;
}

.split__content p {
    margin-bottom: 24px;
}

.landing-pricing {
    background: #fff;
}

.landing-pricing__inner {
    display: grid;
    gap: 32px;
}

.landing-pricing__prices {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    min-height: 210px;
    padding: 42px;
    background: #071b2c;
    color: #fff;
}

.landing-pricing__prices > img {
    width: 60px;
    filter: brightness(0) invert(1);
}

.landing-pricing__prices h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 31px;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-pricing__prices h3 {
    margin-bottom: 18px;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.landing-pricing__prices p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
}

.landing-pricing__prices .button {
    align-self: center;
    border-color: rgba(255, 255, 255, .8);
    background: transparent;
    white-space: nowrap;
}

.landing-pricing__prices .button:hover {
    background: #fff;
    color: #071b2c;
}

.landing-pricing__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.landing-pricing__finance {
    min-height: 440px;
    padding: 58px 32px;
    background: var(--bv-blue);
    color: #fff;
    text-align: center;
}

.landing-pricing__finance img {
    width: 58px;
    margin: 0 auto 28px;
    filter: brightness(0) invert(1);
}

.landing-pricing__finance h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.landing-pricing__finance p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
}

.landing-pricing__manager-photo {
    text-align: center;
}

.landing-pricing__manager-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #eee;
}

.landing-pricing__manager-photo p {
    max-width: 310px;
    margin: 20px auto 0;
    color: #000;
    font-size: 14px;
    line-height: 1.65;
}

.landing-pricing__manager {
    min-height: 440px;
    padding: 58px 32px;
    background: #f4f4f4;
    text-align: center;
}

.landing-pricing__doc-icon {
    position: relative;
    width: 46px;
    height: 58px;
    display: block;
    margin: 0 auto 28px;
    border: 4px solid #333;
    border-radius: 2px;
}

.landing-pricing__doc-icon::before,
.landing-pricing__doc-icon::after {
    position: absolute;
    left: 10px;
    width: 18px;
    height: 3px;
    background: #333;
    content: "";
}

.landing-pricing__doc-icon::before {
    top: 15px;
    box-shadow: 0 10px 0 #333, 0 20px 0 #333;
}

.landing-pricing__doc-icon::after {
    display: none;
}

.landing-pricing__credentials {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.landing-pricing__credentials strong {
    color: #000;
}

.section-heading {
    margin-bottom: 34px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.text-link {
    color: var(--bv-blue);
    font-family: "Raleway", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid figure {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: #eee;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.05);
}

.advantages {
    padding: 86px 0;
    color: #fff;
    background-position: center;
    background-size: cover;
}

.advantages h2 {
    margin-bottom: 34px;
    color: #fff;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 34px;
}

.advantage-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
}

.advantage-item span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    font-size: 14px;
}

.advantage-item p {
    color: rgba(255, 255, 255, .9);
}

.contact p {
    color: var(--bv-text);
}

.form-message {
    margin: 22px auto 0;
    padding: 12px 16px;
    border: 1px solid var(--bv-border);
    text-align: center;
}

.form-message.is-success {
    border-color: #b5d8c3;
    color: #1d6f3a;
    background: #f1fbf4;
}

.form-message.is-error {
    border-color: #efb3b3;
    color: #9d2525;
    background: #fff5f5;
}

.contact-form {
    margin-top: 34px;
}

.contact-form--cf7 {
    display: block;
}

.contact-form--cf7 .wpcf7-form {
    display: block;
}

.bv-cf7-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bv-cf7-field {
    display: block;
}

.bv-cf7-field--wide,
.bv-cf7-consent,
.bv-cf7-actions,
.contact-form .wpcf7-response-output {
    grid-column: 1 / -1;
}

.bv-cf7-label {
    display: block;
    margin-bottom: 7px;
    color: #6b7280;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.35;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dce3ec;
    background: #fff;
    color: #273142;
    font: inherit;
    padding: 13px 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--bv-blue);
    box-shadow: 0 0 0 3px rgba(41, 93, 168, .12);
    outline: 0;
    background: #fff;
}

.contact-form .wpcf7-not-valid {
    border-color: #cf3d3d;
}

.contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #b42318;
    font-size: 12px;
}

.bv-cf7-consent {
    display: block;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.55;
}

.bv-cf7-consent .wpcf7-form-control-wrap,
.bv-cf7-consent .wpcf7-list-item {
    margin: 0;
}

.bv-cf7-consent input {
    width: auto;
    min-height: 0;
    margin: 2px 9px 0 0;
}

.bv-cf7-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.contact-form .wpcf7-spinner {
    margin: 0;
}

.contact-form .wpcf7-response-output {
    margin: 4px 0 0;
    padding: 12px 14px;
    border-width: 1px;
    font-size: 13px;
}

.contact-form .wpcf7-submit {
    width: auto;
    min-width: 190px;
    min-height: 50px;
    border-color: var(--bv-blue);
    background: var(--bv-blue);
    color: #fff;
    cursor: pointer;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.contact-form .wpcf7-submit:hover {
    background: #1f4d91;
}

.grecaptcha-badge {
    visibility: hidden;
}

.contact-form--cf7 .wpcf7-form > p {
    margin: 0;
}

.contact-form--compact {
    margin-top: 18px;
}

.contact-form--compact .bv-cf7-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}

.landing-lead-form .bv-cf7-consent {
    display: none;
}

.landing-lead-form .bv-cf7-actions,
.contact-form--compact .bv-cf7-actions {
    justify-content: stretch;
}

.landing-lead-form .wpcf7-submit,
.contact-form--compact .wpcf7-submit {
    width: 100%;
}

.landing-hero__form .contact-form input,
.landing-hero__form .contact-form textarea,
.landing-hero__form .contact-form select {
    height: 46px;
    min-height: 46px;
    border-color: #dce3ec;
    border-radius: 13px;
    background: #fff;
    color: #253044;
    padding-left: 42px;
    font-size: 14px;
}

.landing-hero__form .bv-cf7-label {
    margin-bottom: 7px;
    color: #718197;
    font-size: 11px;
    letter-spacing: 1.1px;
}

.landing-lead-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.landing-lead-form .wpcf7-form-control-wrap::before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: #97a7bd;
    font-size: 16px;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
}

.landing-lead-form .wpcf7-form-control-wrap[data-name="your-name"]::before {
    content: "\25CF";
    font-size: 13px;
}

.landing-lead-form .wpcf7-form-control-wrap[data-name="your-phone"]::before {
    content: "\260E";
}

.landing-lead-form .wpcf7-form-control-wrap[data-name="your-subject"]::before {
    content: "\2699";
}

.landing-lead-form .wpcf7-form-control-wrap[data-name="your-message"]::before {
    content: "\270E";
    top: 16px;
    transform: none;
}

.landing-lead-form select {
    appearance: none;
}

.landing-hero__form .landing-lead-form textarea {
    height: 92px;
    min-height: 92px;
    padding-top: 13px;
    resize: vertical;
}

.landing-lead-form .wpcf7-submit {
    min-height: 48px;
    border-radius: 9px;
    background: #0b5ea8;
    box-shadow: 0 12px 22px rgba(11, 94, 168, .22);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

.landing-lead-form .wpcf7-submit:hover {
    background: #084f91;
}

.landing-lead-form .bv-cf7-actions {
    display: block;
    position: relative;
}

.landing-lead-form .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 12px;
    margin: 0;
    transform: translateY(-50%);
}

.landing-contact .contact-form--cf7,
.contact > .container .contact-form--cf7 {
    padding: 32px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.map iframe {
    display: block;
}

.site-footer {
    padding: 58px 0 22px;
    background: #111827;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.site-footer__col h2 {
    margin-bottom: 22px;
    color: #f4f7fb;
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer__col p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #b9c2d0;
    font-size: 14px;
    line-height: 1.55;
}

.footer-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    margin-top: 1px;
    border: 1px solid rgba(96, 165, 250, .28);
    color: #60a5fa;
    font-size: 12px;
    line-height: 1;
}

.footer-icon::before {
    content: "\24D8";
}

.footer-icon--mail::before {
    content: "\2709";
}

.footer-icon--phone::before {
    content: "\260E";
}

.footer-icon--location::before {
    content: "\2302";
}

.footer-icon--bank::before {
    content: "\25A3";
}

.footer-icon--id::before {
    content: "\0023";
}

.site-footer__col a {
    color: #b9c2d0;
}

.site-footer__col a:hover {
    color: #60a5fa;
}

.site-footer__bottom {
    padding-top: 22px;
    text-align: center;
}

.site-footer__bottom p {
    color: #8d97a8;
    font-size: 12px;
    line-height: 1.65;
}

.prices-page {
    background: #fff;
}

.prices-page__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: #f2f2f2;
}

.prices-page__text {
    padding: 58px 48px;
    color: #59616f;
    font-size: 14px;
    line-height: 1.75;
}

.prices-page__text h2 {
    margin: 0 0 18px;
    color: #273142;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.28;
}

.prices-page__text h2:not(:first-child) {
    margin-top: 54px;
    color: #0b6bc7;
}

.prices-page__text a {
    color: var(--bv-blue);
    font-weight: 800;
}

.prices-page__image {
    margin: 0;
    min-height: 460px;
    background: #e7e7e7;
}

.prices-page__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prices-page__finance {
    margin-top: 64px;
    padding: 54px 80px;
    background: var(--bv-blue);
    color: #fff;
    text-align: center;
}

.prices-page__finance img {
    width: 58px;
    margin: 0 auto 26px;
    filter: brightness(0) invert(1);
}

.prices-page__finance h2 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 22px;
    text-transform: uppercase;
}

.prices-page__finance p {
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
}

.prices-page__content {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.prices-page__content h2 {
    margin: 34px 0 16px;
    color: #333;
    font-size: 30px;
}

.prices-page__content h2:first-child {
    margin-top: 0;
}

.prices-page__content a {
    color: var(--bv-blue);
    font-weight: 800;
}

.page-hero {
    padding: 72px 0 72px;
    background-color: #171717;
    background-position: center;
    background-size: cover;
    text-align: center;
}

.page-hero--left {
    text-align: left;
}

.page-hero h1 {
    position: relative;
    color: #fff;
    font-size: 40px;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .3);
}

.page-hero--left h1 {
    padding-left: 28px;
}

.page-hero--left h1::before {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 8px;
    background: var(--bv-blue);
    content: "";
}

.content-section {
    padding: 70px 0;
}

.legacy-content {
    font-size: 16px;
}

.page-section-block {
    margin-top: 42px;
    padding-top: 42px;
    border-top: 1px solid var(--bv-border);
}

.page-section-block h2 {
    margin-bottom: 18px;
    font-size: 28px;
}

.page-section-block img {
    width: 100%;
    margin: 0 0 24px;
}

.portfolio-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 84px;
    background: linear-gradient(180deg, #071b2c, #0b2b47);
    color: #fff;
    text-align: center;
}

.portfolio-hero::before {
    position: absolute;
    top: -180px;
    left: 12%;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(41, 93, 168, .32);
    content: "";
    filter: blur(10px);
}

.portfolio-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.portfolio-hero h1 {
    color: #fff;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    text-transform: none;
}

.portfolio-hero p {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.75;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.portfolio-stats div {
    padding: 20px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.portfolio-stats strong {
    display: block;
    color: #d6ac4d;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.portfolio-stats span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-compare-section {
    background: #fff;
}

.portfolio-compare-section h2 {
    color: #071b2c;
    font-size: 32px;
}

.portfolio-compare-section p {
    color: #667085;
}

.portfolio-compare {
    position: relative;
    overflow: hidden;
    margin-top: 36px;
    aspect-ratio: 16 / 9;
    border: 1px solid #dfe6ef;
    background: #edf1f6;
    box-shadow: 0 24px 55px rgba(7, 27, 44, .16);
    user-select: none;
}

.portfolio-compare__after {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-compare__before {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.portfolio-compare__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #d6ac4d;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 16px rgba(0, 0, 0, .36);
}

.portfolio-compare__handle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 2px solid #d6ac4d;
    border-radius: 50%;
    background: var(--bv-blue);
    color: #d6ac4d;
    transform: translate(-50%, -50%);
}

.portfolio-compare__handle span::before {
    content: "\2194";
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.portfolio-compare__label {
    position: absolute;
    top: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(7, 27, 44, .72);
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-compare__label--before {
    left: 18px;
}

.portfolio-compare__label--after {
    right: 18px;
    background: rgba(41, 93, 168, .88);
}

.portfolio-page {
    padding-top: 76px;
    background: #f6f8fb;
}

.portfolio-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-feature-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e4ebf3;
    background: #fff;
    box-shadow: 0 12px 34px rgba(7, 27, 44, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.portfolio-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(7, 27, 44, .12);
}

.portfolio-feature-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e7edf4;
}

.portfolio-feature-card__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .35s ease;
}

.portfolio-feature-card:hover .portfolio-feature-card__image img {
    transform: scale(1.04);
}

.portfolio-feature-card__image span {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 12px;
    background: #d6ac4d;
    color: #071b2c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.portfolio-feature-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.portfolio-feature-card__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf1f6;
}

.portfolio-feature-card__head h3 {
    color: #071b2c;
    font-size: 22px;
}

.portfolio-feature-card__head p {
    margin-top: 4px;
    color: #8a94a5;
    font-size: 12px;
}

.portfolio-feature-card__head strong {
    flex: 0 0 auto;
    align-self: flex-start;
    padding: 7px 11px;
    background: #edf4ff;
    color: var(--bv-blue);
    font-size: 13px;
}

.portfolio-feature-card__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
}

.portfolio-feature-card__meta div {
    padding: 13px;
    background: #f6f8fb;
}

.portfolio-feature-card__meta span {
    display: block;
    margin-bottom: 3px;
    color: #8a94a5;
    font-size: 11px;
}

.portfolio-feature-card__meta b {
    color: #071b2c;
    font-size: 12px;
}

.portfolio-feature-card__body > p {
    margin-top: 18px;
    color: #667085;
    font-size: 13px;
    line-height: 1.75;
}

.portfolio-feature-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.button--muted {
    border-color: #eef2f7;
    background: #eef2f7;
    color: #071b2c;
}

.button--muted:hover {
    border-color: #dce5ef;
    background: #dce5ef;
    color: #071b2c;
}

.portfolio-testimonial {
    position: relative;
    overflow: hidden;
    background: #fff;
    text-align: center;
}

.portfolio-testimonial .container {
    position: relative;
    padding: 44px;
    border: 1px solid #e8edf4;
    background: #f6f8fb;
}

.portfolio-testimonial__quote {
    position: absolute;
    top: 4px;
    left: 28px;
    color: rgba(214, 172, 77, .3);
    font-family: Georgia, serif;
    font-size: 86px;
    line-height: 1;
}

.portfolio-testimonial p {
    position: relative;
    z-index: 2;
    color: #59616f;
    font-size: 16px;
    font-style: italic;
    line-height: 1.85;
}

.portfolio-testimonial strong {
    display: block;
    margin-top: 18px;
    color: #071b2c;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 30px;
}

.portfolio-card {
    display: block;
    text-align: center;
    transition: transform .2s ease, opacity .2s ease;
}

.portfolio-card:hover {
    opacity: .88;
    transform: translateY(-3px);
}

.portfolio-card img {
    width: 100%;
    aspect-ratio: 400 / 284;
    object-fit: cover;
}

.portfolio-card h2 {
    margin-top: 8px;
    color: #333;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.project-detail-hero {
    min-height: 560px;
    padding: 84px 0 84px;
    display: flex;
    align-items: flex-end;
    background-color: #071b2c;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.project-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 56px;
    align-items: end;
}

.project-detail-hero__copy h1 {
    max-width: 850px;
    color: #fff;
    font-size: clamp(42px, 6vw, 66px);
    font-weight: 800;
    line-height: 1.05;
}

.project-detail-hero__copy p {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
}

.project-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(7, 27, 44, .72);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .22);
}

.project-detail-meta span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .46);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.project-detail-meta strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
}

.project-detail-meta div:last-child strong {
    color: #d6ac4d;
}

.project-detail {
    background: #fff;
}

.project-detail-gallery-section {
    background: #fff;
}

.project-detail-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.project-detail-gallery a {
    position: relative;
    grid-column: span 4;
    display: block;
    overflow: hidden;
    min-height: 250px;
    background: #edf1f6;
}

.project-detail-gallery a.is-featured {
    grid-column: span 8;
    grid-row: span 2;
}

.project-detail-gallery img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease, opacity .35s ease;
}

.project-detail-gallery a.is-featured img {
    aspect-ratio: 16 / 10;
}

.project-detail-gallery a:hover img {
    transform: scale(1.04);
    opacity: .92;
}

.project-detail-gallery span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 7px 11px;
    background: rgba(7, 27, 44, .82);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity .2s ease;
}

.project-detail-gallery a:hover span {
    opacity: 1;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

.bv-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 42px 86px;
    background: rgba(3, 13, 24, .94);
}

.bv-lightbox.is-open {
    display: flex;
}

.bv-lightbox__figure {
    width: min(100%, 1180px);
    max-height: 86vh;
    margin: 0;
    text-align: center;
}

.bv-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 82vh;
    margin: 0 auto;
    object-fit: contain;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

.bv-lightbox__caption {
    margin-top: 14px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.bv-lightbox__close,
.bv-lightbox__nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.bv-lightbox__close:hover,
.bv-lightbox__nav:hover {
    transform: translateY(-1px);
    background: var(--bv-blue);
}

.bv-lightbox__close {
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    font-size: 30px;
    line-height: 1;
}

.bv-lightbox__nav {
    top: 50%;
    width: 54px;
    height: 54px;
    font-size: 42px;
    line-height: 44px;
    transform: translateY(-50%);
}

.bv-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.bv-lightbox__nav--prev {
    left: 24px;
}

.bv-lightbox__nav--next {
    right: 24px;
}

.project-detail-content-section {
    border-top: 1px solid #e8edf4;
    background: #f6f8fb;
}

.project-detail-content-section h2 {
    margin-bottom: 18px;
    color: #071b2c;
    font-size: 32px;
}

.project-detail-contact {
    border-top: 1px solid #e8edf4;
    background: #fff;
}

.project-single {
    background: #fff;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.project-gallery a {
    display: block;
    overflow: hidden;
    background: #f1f1f1;
}

.project-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .25s ease;
}

.project-gallery a:hover img {
    transform: scale(1.04);
}

.project-content {
    max-width: 760px;
    margin: 42px auto 0;
}

.project-back {
    margin-top: 34px;
    text-align: center;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 58px;
    align-items: start;
}

.service-content {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.service-content ul,
.service-content ol {
    padding-left: 22px;
    margin: 0 0 1.3em;
}

.service-sidebar__image {
    width: 100%;
    margin-bottom: 34px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.service-sidebar h2 {
    margin-bottom: 24px;
    color: #333;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-sidebar nav {
    display: grid;
    gap: 8px;
}

.service-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 22px;
    border-left: 3px solid var(--bv-blue);
    background: #e9e9e9;
    color: #2f507d;
    font-size: 14px;
}

.service-sidebar a.is-active {
    background: var(--bv-blue);
    color: #fff;
}

.service-layout__wide {
    grid-column: 1 / -1;
}

.service-landing-shell {
    width: min(88vw, 1240px);
    margin: 0 auto;
}

.service-landing-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111827;
}

.service-landing-hero__media,
.service-landing-hero__shade {
    position: absolute;
    inset: 0;
}

.service-landing-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .68;
}

.service-landing-hero__shade {
    background: linear-gradient(90deg, rgba(17, 24, 39, .78), rgba(17, 24, 39, .56) 52%, rgba(17, 24, 39, .1));
}

.service-landing-hero__inner {
    position: relative;
    z-index: 2;
    padding: 92px 0 105px;
}

.service-landing-hero__copy {
    max-width: 760px;
    padding-left: 28px;
    border-left: 4px solid #3b82f6;
}

.service-landing-hero h1 {
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.service-landing-hero h1 span {
    display: block;
    color: #60a5fa;
}

.service-landing-hero p {
    max-width: 660px;
    margin: 26px 0 0;
    color: #d1d5db;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.65;
}

.service-landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.service-landing-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border: 1px solid #2563eb;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .24);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.service-landing-button:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
    box-shadow: 0 16px 28px rgba(37, 99, 235, .28);
}

.service-landing-button--outline {
    border-color: rgba(255, 255, 255, .86);
    background: transparent;
    box-shadow: none;
}

.service-landing-button--outline:hover {
    background: #fff;
    color: #111827;
    box-shadow: none;
}

.service-landing-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.service-landing-button--content {
    min-height: 48px;
    padding-inline: 22px;
}

.service-landing-button--content-secondary {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1e3a8a;
    box-shadow: none;
}

.service-landing-button--content-secondary:hover {
    background: #dbeafe;
    color: #1e3a8a;
    box-shadow: none;
}

.service-landing-main {
    background: #f8fafc;
    padding: 72px 0;
}

.service-landing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: start;
}

.service-landing-content {
    display: grid;
    gap: 54px;
}

.service-landing-section {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.8;
}

.service-landing-section h2 {
    display: inline-block;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
    color: #111827;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
}

.service-landing-lead {
    margin-bottom: 24px;
    color: #4b5563;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.service-landing-rich p,
.service-landing-rich ul,
.service-landing-rich ol {
    margin-bottom: 18px;
}

.service-landing-rich strong {
    color: #111827;
}

.service-landing-figure {
    margin: 8px 0 28px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.service-landing-figure img {
    width: 100%;
    max-height: 390px;
    object-fit: cover;
}

.service-landing-figure figcaption {
    padding: 10px 14px 14px;
    color: #6b7280;
    font-size: 13px;
    font-style: italic;
    text-align: center;
}

.service-landing-callout {
    margin: 30px 0 0;
    padding: 24px;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    background: #eff6ff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .08);
}

.service-landing-callout h3 {
    margin-bottom: 8px;
    color: #1e3a8a;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.service-landing-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.service-landing-card {
    padding: 26px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.service-landing-card h3 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    color: #1f2937;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.service-landing-card h3 span {
    color: #2563eb;
    font-weight: 800;
}

.service-landing-checklist {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.service-landing-checklist li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
}

.service-landing-checklist li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #2563eb;
    font-weight: 800;
    content: "✓";
}

.service-landing-latest-projects {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.service-landing-latest-projects__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.service-landing-latest-projects__head h3 {
    margin: 0;
    color: #071b2c;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.service-landing-latest-projects__head a {
    flex: 0 0 auto;
    color: #02529c;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.service-landing-project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-landing-project-card {
    display: block;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-landing-project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .13);
}

.service-landing-project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-landing-project-card span,
.service-landing-project-card h4 {
    display: block;
    padding-inline: 16px;
}

.service-landing-project-card span {
    padding-top: 15px;
    color: #02529c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-landing-project-card h4 {
    margin: 5px 0 16px;
    color: #071b2c;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.service-landing-float {
    float: right;
    width: min(44%, 390px);
    margin: 0 0 20px 28px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
}

.service-landing-float img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-landing-steps {
    display: grid;
    gap: 24px;
}

.service-landing-steps article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
}

.service-landing-steps article > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dbeafe;
    color: #2563eb;
    font-weight: 800;
}

.service-landing-steps h3 {
    margin-bottom: 6px;
    color: #1f2937;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.service-landing-mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-landing-mini-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 14px rgba(15, 23, 42, .09);
}

.service-landing-features {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
}

.service-landing-features::after {
    position: absolute;
    top: -34px;
    right: -34px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #dbeafe;
    content: "";
    opacity: .7;
}

.service-landing-feature-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 24px;
}

.service-landing-feature-grid article {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
}

.service-landing-feature-grid span {
    color: #22c55e;
    font-size: 20px;
    font-weight: 800;
}

.service-landing-feature-grid h3 {
    margin-bottom: 4px;
    color: #111827;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.service-landing-features__action {
    position: relative;
    z-index: 2;
    margin-top: 28px;
}

.service-landing-features--cta {
    border-color: #071b2c;
    background: #071b2c;
    color: #cbd5e1;
    box-shadow: 0 18px 36px rgba(7, 27, 44, .18);
}

.service-landing-features--cta::after {
    background: rgba(47, 107, 215, .24);
}

.service-landing-features--cta h2 {
    border-bottom-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.service-landing-features--cta .service-landing-rich,
.service-landing-features--cta .service-landing-rich strong,
.service-landing-features--cta .service-landing-feature-grid p {
    color: #cbd5e1;
}

.service-landing-features--cta .service-landing-feature-grid h3 {
    color: #fff;
}

.service-landing-features--cta .service-landing-feature-grid span {
    color: #60a5fa;
}

.service-landing-sidebar {
    display: grid;
    gap: 24px;
    align-self: start;
}

.service-landing-sidebar__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .16);
}

.service-landing-sidebox,
.service-landing-quick-form {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 9px 22px rgba(15, 23, 42, .08);
}

.service-landing-sidebox {
    position: relative;
    top: auto;
}

.service-landing-sidebox h2 {
    padding: 18px 22px;
    background: #111827;
    color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-landing-service-list {
    display: grid;
}

.service-landing-service-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-top: 1px solid #f3f4f6;
    color: #374151;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.service-landing-service-list a:hover {
    background: #f8fafc;
    color: #2563eb;
}

.service-landing-service-list a.is-active {
    background: #2563eb;
    color: #fff;
}

.service-landing-quick-form {
    padding: 24px;
    background: #eff6ff;
}

.service-landing-quick-form h2 {
    margin-bottom: 10px;
    color: #111827;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
}

.service-landing-quick-form p {
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 14px;
    text-align: center;
}

.service-landing-quick-form form {
    display: grid;
    gap: 12px;
}

.service-landing-quick-form input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 9px;
    background: #fff;
    color: #111827;
    font: inherit;
    padding: 13px 14px;
}

.service-landing-quick-form input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
    outline: 0;
}

.service-landing-quick-form button {
    border: 0;
    border-radius: 9px;
    background: #2563eb;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 13px 14px;
}

.service-landing-quick-form button:hover {
    background: #1d4ed8;
}

@media (max-width: 1180px) and (min-width: 981px) {
    .landing-hero {
        min-height: auto;
        padding: 130px 0 64px;
    }

    .landing-hero__grid {
        grid-template-columns: minmax(0, 1fr) 370px;
        gap: 36px;
    }

    .landing-hero h1 {
        font-size: clamp(36px, 5vw, 52px);
    }

    .landing-hero__copy p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.6;
    }

    .landing-hero__actions {
        margin-top: 24px;
    }

    .landing-stats {
        gap: 14px;
        margin-top: 28px;
        padding-top: 20px;
    }

    .landing-stats strong {
        font-size: 27px;
    }

    .landing-stats span {
        font-size: 10px;
        letter-spacing: .6px;
        line-height: 1.3;
    }

    .landing-hero__form {
        min-height: auto;
        padding: 26px;
    }

    .landing-hero__form h2 {
        font-size: 24px;
    }

    .landing-hero__form > p {
        margin-top: 8px;
        line-height: 1.5;
    }

    .landing-hero__form .contact-form {
        margin-top: 14px;
    }

    .contact-form--compact .bv-cf7-grid {
        gap: 10px;
    }

    .landing-hero__form .contact-form input,
    .landing-hero__form .contact-form textarea,
    .landing-hero__form .contact-form select {
        height: 46px;
        min-height: 46px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .landing-hero__form .landing-lead-form textarea {
        height: 88px;
        min-height: 88px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .landing-lead-form .wpcf7-submit {
        min-height: 44px;
    }
}

@media (max-height: 820px) and (min-width: 981px) {
    .landing-hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 44px;
    }

    .landing-hero__grid {
        align-items: center;
    }

    .landing-hero__copy p {
        margin-top: 16px;
        line-height: 1.55;
    }

    .landing-hero__actions {
        margin-top: 22px;
    }

    .landing-stats {
        margin-top: 24px;
        padding-top: 18px;
    }

    .landing-hero__form {
        min-height: auto;
        padding: 24px;
    }

    .landing-hero__form h2 {
        font-size: 23px;
    }

    .landing-hero__form .bv-cf7-label {
        margin-bottom: 5px;
    }

    .landing-hero__form .contact-form input,
    .landing-hero__form .contact-form select {
        height: 44px;
        min-height: 44px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .landing-hero__form .landing-lead-form textarea {
        height: 82px;
        min-height: 82px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 760px) {
    .landing-hero__form {
        display: none;
    }

    .landing-hero__actions {
        margin-bottom: 0;
    }
}

@media (max-width: 980px) {
    .site-nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 100px);
        overflow: auto;
        border-top: 1px solid var(--bv-border);
        background: #fff;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav__list {
        display: block;
        width: min(90vw, 1080px);
        margin: 0 auto;
        padding: 16px 0;
    }

    .site-nav__list a {
        padding: 13px 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .split,
    .advantages-grid,
    .service-layout,
    .service-landing-layout,
    .landing-hero__grid,
    .landing-trust__grid,
    .landing-service-grid,
    .landing-article,
    .landing-article--image-right,
    .landing-pricing__cards,
    .landing-contact__grid,
    .project-detail-hero__grid,
    .prices-page__split,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .landing-article--image-right figure {
        order: 0;
    }

    .landing-section-head--split {
        display: block;
    }

    .gallery-grid,
    .portfolio-grid,
    .portfolio-feature-grid,
    .landing-work-grid,
    .project-detail-gallery,
    .project-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-detail-gallery a,
    .project-detail-gallery a.is-featured {
        grid-column: span 1;
        grid-row: auto;
    }

    .service-landing-sidebox {
        position: static;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 56px 0;
    }

    .site-header__inner {
        min-height: 64px;
        width: min(94vw, 1080px);
    }

    .site-logo img {
        width: 188px;
    }

    .site-nav {
        top: 96px;
        max-height: calc(100vh - 96px);
    }

    .hero__mark,
    .hero__scroll {
        display: none;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 13px;
        letter-spacing: 3px;
        line-height: 1.55;
    }

    .landing-hero {
        min-height: auto;
        padding: 132px 0 56px;
    }

    .landing-hero__form {
        min-height: auto;
        padding: 24px;
    }

    .landing-hero h1,
    .landing-section-head h1,
    .landing-section-head h2,
    .landing-contact h2 {
        font-size: 32px;
    }

    .landing-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        max-width: none;
        margin-top: 28px;
        padding-top: 20px;
        text-align: center;
    }

    .landing-stats strong {
        font-size: 22px;
    }

    .landing-stats span {
        margin-top: 6px;
        font-size: 9px;
        letter-spacing: .4px;
        line-height: 1.25;
    }

    .intro h2,
    .prices h2,
    .landing-pricing__prices h2,
    .landing-pricing__finance h2,
    .landing-pricing__manager h2,
    .gallery-section h2,
    .advantages h2,
    .prices-page__content h2 {
        font-size: 25px;
    }

    .services-grid,
    .gallery-grid,
    .contact-form,
    .bv-cf7-grid,
    .portfolio-grid,
    .portfolio-stats,
    .portfolio-feature-grid,
    .portfolio-feature-card__actions,
    .landing-work-grid,
    .project-detail-gallery,
    .project-gallery {
        grid-template-columns: 1fr;
    }

    .portfolio-hero {
        padding: 56px 0;
    }

    .portfolio-feature-card__body,
    .portfolio-testimonial .container {
        padding: 24px;
    }

    .portfolio-feature-card__head,
    .portfolio-feature-card__meta {
        display: block;
    }

    .portfolio-feature-card__head strong,
    .portfolio-feature-card__meta div + div {
        margin-top: 12px;
    }

    .project-detail-hero {
        min-height: auto;
        padding: 56px 0;
    }

    .project-detail-meta {
        grid-template-columns: 1fr;
    }

    .bv-lightbox {
        padding: 58px 14px 42px;
    }

    .bv-lightbox__close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .bv-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 34px;
        line-height: 34px;
    }

    .bv-lightbox__nav--prev {
        left: 10px;
    }

    .bv-lightbox__nav--next {
        right: 10px;
    }

    .bv-lightbox__image {
        max-height: 76vh;
    }

    .landing-pricing__prices {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .prices-page__text,
    .prices-page__finance {
        padding: 34px 24px;
    }

    .landing-pricing__manager img {
        width: 145px;
    }

    .top-bar .top-bar__inner {
        width: min(94vw, 1080px);
        min-height: 32px;
        justify-content: center;
        gap: 12px;
        overflow: visible;
    }

    .top-bar a {
        min-width: 0;
        font-size: 10.5px;
        white-space: nowrap;
    }

    .top-bar__icon {
        font-size: 11px;
    }

    .page-hero h1 {
        font-size: 29px;
    }

    .service-landing-hero {
        min-height: auto;
    }

    .service-landing-hero__inner {
        padding: 70px 0 72px;
    }

    .service-landing-hero__copy {
        padding-left: 18px;
    }

    .service-landing-hero h1 {
        font-size: 38px;
    }

    .service-landing-hero p,
    .service-landing-lead {
        font-size: 17px;
    }

    .service-landing-main {
        padding: 48px 0;
    }

    .service-landing-section h2 {
        font-size: 25px;
    }

    .service-landing-card-grid,
    .service-landing-project-grid,
    .service-landing-feature-grid,
    .service-landing-mini-gallery {
        grid-template-columns: 1fr;
    }

    .service-landing-latest-projects__head {
        display: block;
    }

    .service-landing-latest-projects__head a {
        display: inline-block;
        margin-top: 8px;
    }

    .service-landing-float {
        float: none;
        width: 100%;
        margin: 0 0 24px;
    }

    .service-card {
        min-height: 190px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .section-heading {
        display: block;
    }

    .section-heading h2 {
        margin-bottom: 12px;
    }

    .contact-form__actions {
        text-align: left;
    }
}
