

/* Start:/local/templates/surfa/scss/main.scss?178349445025704*/
// Surfa Main Styles
@import "/local/templates/surfa/scss/base/variables";
@import "/local/templates/surfa/scss/base/mixins";
@import "/local/templates/surfa/scss/base/reset";

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;

    &--primary {
        background-color: $color-orange;
        color: $color-white;
        &:hover {
            background-color: darken($color-orange, 10%);
        }
    }

    &--outline {
        border: 2px solid $color-blue;
        color: $color-blue;
        &:hover {
            background-color: $color-blue;
            color: $color-white;
        }
    }

    &--small {
        padding: 8px 16px;
        font-size: 14px;
    }
}

#header {
    background-color: $color-white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        img {
            height: 50px;
        }

        &__text {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: $color-blue;
            white-space: nowrap;
        }
    }

    .main-menu ul {
        display: flex;
        gap: 30px;
        li a {
            font-weight: 500;
            &:hover {
                color: $color-orange;
            }
        }
    }

    .header-contacts {
        display: flex;
        align-items: center;
        gap: 20px;
        .header-phone {
            font-weight: 700;
            font-size: 18px;
        }
    }
}

.hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: $color-white;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 51, 102, 0.7);
    }

    .container {
        position: relative;
        z-index: 1;
    }

    &__content {
        max-width: 700px;
    }

    &__title {
        font-size: 48px;
        font-weight: 800;
        letter-spacing: -0.03em;
        margin-bottom: 20px;
    }

    &__subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    &__text {
        font-size: 18px;
        line-height: 1.65;
        margin-bottom: 30px;
    }
}

.page-blocks {
    section:not(.hero) {
        padding: 56px 0;
    }

    .section-title {
        margin-bottom: 20px;
    }

    .block-content {
        max-width: 760px;
        color: $color-dark;
        line-height: 1.7;

        p {
            margin-bottom: 12px;
        }
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: $color-white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;

    &:hover {
        transform: translateY(-5px);
    }

    &__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    &__content {
        padding: 25px;
    }

    &__industry {
        color: $color-orange;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    &__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    &__text {
        font-size: 14px;
        color: $color-steel;
        margin-bottom: 20px;
    }

    &__info {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        font-size: 14px;
        font-weight: 600;
    }
}

#footer {
    background-color: $color-dark;
    color: $color-white;
    padding: 60px 0;
    margin-top: 80px;

    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }

    .logo {
        margin-bottom: 20px;

        img {
            height: 40px;
        }

        &__text {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: $color-white;
            white-space: nowrap;
        }
    }

    .footer-menu ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        li a:hover {
            color: $color-orange;
        }
    }

    .footer-contacts {
        display: flex;
        flex-direction: column;
        gap: 15px;
        .label {
            color: $color-steel;
            margin-right: 10px;
        }
    }
}

.lead-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    margin: 40px auto;

    &__title {
        margin-bottom: 25px;
        text-align: center;
    }

    .form-group {
        margin-bottom: 20px;
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        textarea.form-control {
            height: 120px;
            resize: vertical;
        }
        &--checkbox {
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
    }

    .form-message {
        margin-top: 20px;
        padding: 15px;
        border-radius: 4px;
        text-align: center;
        &--success {
            background: #e6fffa;
            color: #2c7a7b;
            border: 1px solid #b2f5ea;
        }
        &--error {
            background: #fff5f5;
            color: #c53030;
            border: 1px solid #fed7d7;
        }
    }
}

.page-title {
    margin: 40px 0;
    text-align: center;
}

.home-cases {
    padding: 80px 0;

    .section-lead {
        max-width: 680px;
        color: $color-steel;
        margin-top: 12px;
    }
}

.callback-section {
    padding: 80px 0;
    background-color: #f4f7f9;
    .callback-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
    }
}

.contacts-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.service-detail {
    padding: 56px 0 24px;

    &__back {
        display: inline-block;
        margin-bottom: 28px;
        color: $color-steel;
        font-weight: 600;

        &:hover {
            color: $color-orange;
        }
    }

    &__hero {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
        gap: 48px;
        align-items: center;
    }

    &__industry {
        color: $color-orange;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    &__title {
        font-size: 42px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    &__lead {
        color: $color-steel;
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    &__meta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin-bottom: 30px;
    }

    &__meta-item {
        background: #f4f7f9;
        border-radius: 8px;
        padding: 16px;

        span {
            display: block;
            color: $color-steel;
            font-size: 13px;
            margin-bottom: 6px;
        }

        strong {
            color: $color-dark;
        }
    }

    &__image img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    }

    &__text {
        max-width: 800px;
        margin-top: 52px;
        font-size: 18px;
        line-height: 1.75;
    }
}

@include rwd(1000) {
    #header .main-menu {
        display: none;
    }
    .callback-section .callback-grid,
    .contacts-page-grid,
    .service-detail__hero,
    .case-detail__hero,
    .case-detail__stages,
    #footer .footer-container {
        grid-template-columns: 1fr;
    }

    .service-detail__meta {
        grid-template-columns: 1fr;
    }

    .case-detail__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: $color-white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    
    &__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    &__content {
        padding: 25px;
    }
    
    &__industry {
        color: $color-blue;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    &__title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    &__text {
        font-size: 14px;
        color: $color-steel;
        margin-bottom: 20px;
    }
}

// Modern engineering redesign layer
body {
    background:
        radial-gradient(circle at 12% 8%, rgba($color-cyan, 0.16), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba($color-orange, 0.12), transparent 30%),
        $color-bg;
    color: $color-dark;
}

.container {
    max-width: 1240px;
    padding: 0 24px;
}

.section-title,
.page-title {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.section-title {
    position: relative;
    padding-top: 18px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 72px;
        height: 3px;
        border-radius: 999px;
        background: $color-orange;
    }
}

.page-title {
    margin: 58px 0 34px;
}

.btn {
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 26px rgba($color-orange, 0.18);

    &--primary {
        background: linear-gradient(135deg, $color-orange, #ff8a3d);
        color: $color-white;

        &:hover {
            background: linear-gradient(135deg, darken($color-orange, 7%), $color-orange);
            transform: translateY(-2px);
        }
    }

    &--outline {
        border: 1px solid rgba($color-blue, 0.18);
        background: rgba($color-white, 0.82);
        color: $color-blue;
        box-shadow: none;

        &:hover {
            border-color: $color-orange;
            background: $color-orange;
            color: $color-white;
        }
    }

    &--small {
        padding: 10px 18px;
        font-size: 13px;
    }
}

#header {
    background: rgba($color-white, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba($color-line, 0.75);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    padding: 12px 0;

    .header-container {
        gap: 28px;
    }

    .logo {
        a {
            display: inline-flex;
            align-items: center;
        }

        img {
            height: 42px;
        }

        &__text {
            color: $color-blue;
            font-size: 23px;
        }
    }

    .main-menu ul {
        gap: 26px;

        li a {
            color: #1f2937;
            font-size: 14px;
            font-weight: 650;

            &:hover {
                color: $color-orange;
            }
        }
    }

    .header-contacts {
        gap: 16px;

        .header-phone {
            color: $color-dark;
            font-size: 16px;
        }
    }
}

.hero {
    min-height: 680px;
    height: auto;
    isolation: isolate;
    overflow: hidden;
    background-color: #071827;

    &::before {
        z-index: -2;
        background:
            linear-gradient(90deg, rgba(7, 24, 39, 0.92), rgba(7, 24, 39, 0.62), rgba(7, 24, 39, 0.88)),
            linear-gradient(rgba($color-cyan, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba($color-cyan, 0.08) 1px, transparent 1px);
        background-size: auto, 44px 44px, 44px 44px;
    }

    &::after {
        content: '';
        position: absolute;
        inset: auto -140px -180px auto;
        width: 520px;
        height: 520px;
        border: 1px solid rgba($color-cyan, 0.22);
        border-radius: 50%;
        background: radial-gradient(circle, rgba($color-cyan, 0.16), transparent 62%);
        z-index: -1;
    }

    .container {
        width: 100%;
        padding-top: 90px;
        padding-bottom: 90px;
    }

    &__content {
        max-width: 760px;
        padding: 34px;
        border: 1px solid rgba($color-white, 0.12);
        border-radius: 28px;
        background: linear-gradient(145deg, rgba(8, 28, 46, 0.78), rgba(8, 28, 46, 0.36));
        box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
        backdrop-filter: blur(10px);
    }

    &__title {
        font-size: clamp(42px, 7vw, 76px);
        line-height: 0.98;
        letter-spacing: -0.07em;
        margin-bottom: 24px;
    }

    &__subtitle {
        color: rgba($color-white, 0.86);
        font-size: clamp(18px, 2vw, 25px);
    }

    &__text {
        max-width: 640px;
        color: rgba($color-white, 0.72);
    }
}

.page-blocks {
    section:not(.hero) {
        padding: 74px 0;
    }

    .block-content {
        color: #344054;
        font-size: 17px;

        ul {
            display: grid;
            gap: 14px;
            margin-top: 18px;
        }

        li {
            position: relative;
            padding-left: 30px;

            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0.72em;
                width: 14px;
                height: 2px;
                background: $color-orange;
            }
        }
    }
}

.services-list,
.home-cases,
.contacts-page-grid,
.service-detail,
.callback-section {
    position: relative;
}

.services-list {
    padding: 86px 0 18px;
}

.services-grid,
.cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card,
.case-card {
    position: relative;
    border: 1px solid rgba($color-line, 0.92);
    border-radius: 24px;
    background: rgba($color-panel, 0.92);
    box-shadow: $shadow-soft;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background: linear-gradient(135deg, rgba($color-cyan, 0.16), transparent 38%, rgba($color-orange, 0.12));
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    &:hover {
        transform: translateY(-7px);
        border-color: rgba($color-cyan, 0.46);
        box-shadow: $shadow-card;

        &::before {
            opacity: 1;
        }
    }
}

.service-card {
    &__image img {
        height: 230px;
    }

    &__content {
        position: relative;
        padding: 28px;
    }

    &__industry {
        color: $color-orange;
        letter-spacing: 0.08em;
    }

    &__title {
        color: $color-dark;
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.03em;
    }

    &__text {
        color: $color-steel;
        line-height: 1.65;
    }

    &__info {
        gap: 12px;
        flex-wrap: wrap;

        span {
            padding: 8px 12px;
            border-radius: 999px;
            background: #eef5fb;
            color: $color-blue;
        }
    }
}

.case-card {
    &__image img {
        height: 260px;
    }

    &__content {
        position: relative;
        padding: 28px;
    }

    &__industry {
        color: $color-cyan;
        letter-spacing: 0.08em;
    }

    &__title {
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.03em;
    }
}

.home-cases {
    padding: 92px 0;
    background:
        linear-gradient(180deg, rgba($color-white, 0), rgba($color-white, 0.72)),
        radial-gradient(circle at 12% 18%, rgba($color-cyan, 0.12), transparent 28%);

    .section-lead {
        font-size: 17px;
        line-height: 1.7;
    }
}

.callback-section {
    margin: 40px 0 0;
    padding: 96px 0;
    background:
        linear-gradient(135deg, rgba(7, 24, 39, 0.94), rgba(18, 58, 99, 0.92)),
        linear-gradient(rgba($color-white, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba($color-white, 0.06) 1px, transparent 1px);
    background-size: auto, 46px 46px, 46px 46px;
    color: $color-white;

    .section-title::before {
        background: $color-orange;
    }

    .callback-content p {
        max-width: 520px;
        color: rgba($color-white, 0.72);
        font-size: 18px;
        line-height: 1.7;
        margin-top: 18px;
    }
}

.lead-form {
    margin: 0;
    max-width: none;
    padding: 34px;
    border: 1px solid rgba($color-white, 0.16);
    border-radius: 26px;
    background: rgba($color-white, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);

    &__title {
        color: $color-dark;
        font-size: 24px;
        letter-spacing: -0.03em;
    }

    .form-group {
        .form-control {
            min-height: 52px;
            border: 1px solid $color-line;
            border-radius: 14px;
            background: #f8fafc;
            color: $color-dark;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;

            &:focus {
                outline: none;
                border-color: rgba($color-cyan, 0.8);
                background: $color-white;
                box-shadow: 0 0 0 4px rgba($color-cyan, 0.14);
            }
        }

        &--checkbox {
            color: $color-steel;
            line-height: 1.45;
        }
    }
}

.service-detail {
    padding: 72px 0 24px;

    &__hero {
        padding: 34px;
        border: 1px solid rgba($color-line, 0.85);
        border-radius: 30px;
        background: rgba($color-white, 0.92);
        box-shadow: $shadow-soft;
    }

    &__title {
        font-size: clamp(34px, 5vw, 58px);
        letter-spacing: -0.06em;
    }

    &__meta-item {
        background: #eef5fb;
        border: 1px solid rgba($color-line, 0.78);
        border-radius: 18px;
    }

    &__image img {
        border-radius: 24px;
    }

    &__text {
        padding: 32px;
        border-radius: 24px;
        background: $color-white;
        box-shadow: $shadow-soft;
    }
}

.case-detail {
    padding: 72px 0 24px;

    &__back {
        display: inline-block;
        margin-bottom: 28px;
        color: $color-steel;
        font-weight: 700;

        &:hover {
            color: $color-orange;
        }
    }

    &__hero {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
        gap: 48px;
        align-items: center;
        padding: 34px;
        border: 1px solid rgba($color-line, 0.85);
        border-radius: 30px;
        background: rgba($color-white, 0.92);
        box-shadow: $shadow-soft;
    }

    &__industry {
        color: $color-orange;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    &__title {
        font-size: clamp(34px, 5vw, 58px);
        line-height: 1.1;
        letter-spacing: -0.06em;
        margin-bottom: 20px;
    }

    &__lead {
        color: $color-steel;
        font-size: 18px;
        line-height: 1.7;
    }

    &__image img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: 0 16px 35px rgba(0,0,0,0.12);
    }

    &__stages {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        margin-top: 42px;
    }

    &__stage {
        padding: 26px;
        border: 1px solid rgba($color-line, 0.9);
        border-radius: 24px;
        background: $color-white;
        box-shadow: $shadow-soft;

        span {
            display: inline-flex;
            margin-bottom: 18px;
            color: $color-orange;
            font-weight: 800;
            letter-spacing: 0.08em;
        }

        h2 {
            margin-bottom: 12px;
            font-size: 22px;
            letter-spacing: -0.03em;
        }

        p {
            color: $color-steel;
            line-height: 1.7;
        }
    }

    &__text,
    &__cta {
        margin-top: 42px;
        padding: 32px;
        border-radius: 24px;
        background: $color-white;
        box-shadow: $shadow-soft;
    }

    &__text {
        max-width: 840px;
        font-size: 18px;
        line-height: 1.75;

        p + p {
            margin-top: 12px;
        }
    }

    &__cta {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        align-items: center;
        background:
            linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(18, 58, 99, 0.92)),
            linear-gradient(rgba($color-white, 0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba($color-white, 0.06) 1px, transparent 1px);
        background-size: auto, 46px 46px, 46px 46px;
        color: $color-white;

        h2 {
            font-size: clamp(24px, 3vw, 36px);
            letter-spacing: -0.04em;
        }
    }
}

#footer {
    margin-top: 0;
    background:
        radial-gradient(circle at 82% 12%, rgba($color-cyan, 0.14), transparent 28%),
        #071827;
    border-top: 1px solid rgba($color-white, 0.1);

    .footer-menu ul li a,
    .footer-contact-item a {
        color: rgba($color-white, 0.82);

        &:hover {
            color: $color-orange;
        }
    }
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba($color-white, 0.18);
    border-radius: 18px;
    background: rgba(7, 24, 39, 0.92);
    color: $color-white;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 48px rgba(7, 24, 39, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    backdrop-filter: blur(12px);

    &:hover {
        background: $color-orange;
        transform: translateY(10px);
    }

    &--visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);

        &:hover {
            transform: translateY(-3px);
        }
    }
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba($color-white, 0.18);
    border-radius: 18px;
    background: rgba(7, 24, 39, 0.94);
    color: rgba($color-white, 0.9);
    box-shadow: 0 18px 48px rgba(7, 24, 39, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(8px);

    &--visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    &__text {
        margin: 0;
        font-size: 14px;
        line-height: 1.45;
    }

    a {
        color: $color-orange;
        text-decoration: underline;
    }

    .btn {
        width: auto;
        white-space: nowrap;
        padding: 10px 18px;
    }
}

.privacy-policy {
    padding: 40px 0 80px;

    &__content {
        max-width: 900px;
        margin: 0 auto;
        padding: 28px;
        border: 1px solid rgba($color-line, 0.9);
        border-radius: 20px;
        background: $color-white;
        box-shadow: $shadow-soft;

        h2 {
            margin: 28px 0 12px;
            font-size: 24px;
        }

        p {
            margin: 0;
            line-height: 1.7;
            color: $color-steel;
        }

        p + p {
            margin-top: 12px;
        }
    }
}

@include rwd(740) {
    .container {
        padding: 0 18px;
    }

    #header {
        .header-container {
            flex-wrap: wrap;
        }

        .header-contacts {
            width: 100%;
            justify-content: space-between;
        }
    }

    .hero {
        min-height: auto;

        &__content {
            padding: 24px;
        }
    }

    .callback-section,
    .home-cases,
    .services-list,
    .page-blocks section:not(.hero) {
        padding: 58px 0;
    }

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

    .service-detail__hero,
    .case-detail__hero,
    .case-detail__stage,
    .case-detail__text,
    .case-detail__cta {
        padding: 22px;
    }
}

@include rwd(480) {
    .btn {
        width: 100%;
        text-align: center;
    }

    .hero__title {
        font-size: 38px;
    }

    .lead-form {
        padding: 24px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: stretch;

        .btn {
            width: 100%;
        }
    }

    .privacy-policy {
        padding: 30px 0 50px;

        &__content {
            padding: 20px;
        }
    }
}

/* End */


/* Start:/local/templates/surfa/template_styles.css?177798925916951*/
*{margin:0;padding:0;box-sizing:border-box}body{font-family:"Montserrat",sans-serif;color:#0b1320;background-color:#fff;line-height:1.6}h1,h2,h3,h4,h5,h6{font-weight:700}a{text-decoration:none;color:inherit}ul{list-style:none}img{max-width:100%;height:auto}.container{max-width:1200px;margin:0 auto;padding:0 15px}.btn{display:inline-block;padding:12px 24px;border-radius:4px;font-weight:600;transition:all .3s ease;cursor:pointer;border:none}.btn--primary{background-color:#ff6a1a;color:#fff}.btn--primary:hover{background-color:#e65000}.btn--outline{border:2px solid #123a63;color:#123a63}.btn--outline:hover{background-color:#123a63;color:#fff}.btn--small{padding:8px 16px;font-size:14px}#header{background-color:#fff;box-shadow:0 2px 10px rgba(0,0,0,.1);padding:15px 0;position:sticky;top:0;z-index:1000}#header .header-container{display:flex;justify-content:space-between;align-items:center}#header .logo img{height:50px}#header .logo__text{font-size:24px;font-weight:800;letter-spacing:.02em;color:#123a63;white-space:nowrap}#header .main-menu ul{display:flex;gap:30px}#header .main-menu ul li a{font-weight:500}#header .main-menu ul li a:hover{color:#ff6a1a}#header .header-contacts{display:flex;align-items:center;gap:20px}#header .header-contacts .header-phone{font-weight:700;font-size:18px}.hero{height:600px;background-size:cover;background-position:center;display:flex;align-items:center;color:#fff;position:relative}.hero::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,51,102,.7)}.hero .container{position:relative;z-index:1}.hero__content{max-width:700px}.hero__title{font-size:48px;font-weight:800;letter-spacing:-0.03em;margin-bottom:20px}.hero__subtitle{font-size:24px;margin-bottom:20px}.hero__text{font-size:18px;line-height:1.65;margin-bottom:30px}.page-blocks section:not(.hero){padding:56px 0}.page-blocks .section-title{margin-bottom:20px}.page-blocks .block-content{max-width:760px;color:#0b1320;line-height:1.7}.page-blocks .block-content p{margin-bottom:12px}.services-grid{display:grid;grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));gap:30px;margin-top:40px}.service-card{background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,.05);transition:transform .3s ease}.service-card:hover{transform:translateY(-5px)}.service-card__image img{width:100%;height:200px;object-fit:cover}.service-card__content{padding:25px}.service-card__industry{color:#ff6a1a;font-size:12px;font-weight:700;text-transform:uppercase;margin-bottom:10px}.service-card__title{font-size:20px;margin-bottom:15px}.service-card__text{font-size:14px;color:#667085;margin-bottom:20px}.service-card__info{display:flex;justify-content:space-between;margin-bottom:20px;font-size:14px;font-weight:600}#footer{background-color:#0b1320;color:#fff;padding:60px 0;margin-top:80px}#footer .footer-container{display:grid;grid-template-columns:1fr 1fr 1fr;gap:40px}#footer .logo{margin-bottom:20px}#footer .logo img{height:40px}#footer .logo__text{font-size:20px;font-weight:800;letter-spacing:.02em;color:#fff;white-space:nowrap}#footer .footer-menu ul{display:flex;flex-direction:column;gap:15px}#footer .footer-menu ul li a:hover{color:#ff6a1a}#footer .footer-contacts{display:flex;flex-direction:column;gap:15px}#footer .footer-contacts .label{color:#667085;margin-right:10px}.lead-form{background:#f9f9f9;padding:40px;border-radius:8px;max-width:500px;margin:40px auto}.lead-form__title{margin-bottom:25px;text-align:center}.lead-form .form-group{margin-bottom:20px}.lead-form .form-group .form-control{width:100%;padding:12px;border:1px solid #ddd;border-radius:4px;font-family:inherit}.lead-form .form-group textarea.form-control{height:120px;resize:vertical}.lead-form .form-group--checkbox{font-size:14px;display:flex;align-items:center;gap:10px}.lead-form .form-message{margin-top:20px;padding:15px;border-radius:4px;text-align:center}.lead-form .form-message--success{background:#e6fffa;color:#2c7a7b;border:1px solid #b2f5ea}.lead-form .form-message--error{background:#fff5f5;color:#c53030;border:1px solid #fed7d7}.page-title{margin:40px 0;text-align:center}.home-cases{padding:80px 0}.home-cases .section-lead{max-width:680px;color:#667085;margin-top:12px}.callback-section{padding:80px 0;background-color:#f4f7f9}.callback-section .callback-grid{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:60px}.contacts-page-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-bottom:80px}.service-detail{padding:56px 0 24px}.service-detail__back{display:inline-block;margin-bottom:28px;color:#667085;font-weight:600}.service-detail__back:hover{color:#ff6a1a}.service-detail__hero{display:grid;grid-template-columns:minmax(0, 1.1fr) minmax(320px, 0.9fr);gap:48px;align-items:center}.service-detail__industry{color:#ff6a1a;font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-bottom:12px}.service-detail__title{font-size:42px;line-height:1.15;margin-bottom:20px}.service-detail__lead{color:#667085;font-size:18px;line-height:1.7;margin-bottom:28px}.service-detail__meta{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:16px;margin-bottom:30px}.service-detail__meta-item{background:#f4f7f9;border-radius:8px;padding:16px}.service-detail__meta-item span{display:block;color:#667085;font-size:13px;margin-bottom:6px}.service-detail__meta-item strong{color:#0b1320}.service-detail__image img{width:100%;height:360px;object-fit:cover;border-radius:10px;box-shadow:0 16px 35px rgba(0,0,0,.12)}.service-detail__text{max-width:800px;margin-top:52px;font-size:18px;line-height:1.75}@media(max-width: 1000px){#header .main-menu{display:none}.callback-section .callback-grid,.contacts-page-grid,.service-detail__hero,.case-detail__hero,.case-detail__stages,#footer .footer-container{grid-template-columns:1fr}.service-detail__meta{grid-template-columns:1fr}.case-detail__cta{align-items:flex-start;flex-direction:column}}.cases-grid{display:grid;grid-template-columns:repeat(auto-fill, minmax(350px, 1fr));gap:30px;margin-top:40px}.case-card{background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,.05)}.case-card__image img{width:100%;height:250px;object-fit:cover}.case-card__content{padding:25px}.case-card__industry{color:#123a63;font-size:12px;font-weight:700;text-transform:uppercase;margin-bottom:10px}.case-card__title{font-size:20px;margin-bottom:15px}.case-card__text{font-size:14px;color:#667085;margin-bottom:20px}body{background:radial-gradient(circle at 12% 8%, rgba(34, 211, 238, 0.16), transparent 28%),radial-gradient(circle at 88% 18%, rgba(255, 106, 26, 0.12), transparent 30%),#f4f7fb;color:#0b1320}.container{max-width:1240px;padding:0 24px}.section-title,.page-title{font-size:clamp(30px,4vw,46px);line-height:1.12;letter-spacing:-0.04em}.section-title{position:relative;padding-top:18px}.section-title::before{content:"";position:absolute;top:0;left:0;width:72px;height:3px;border-radius:999px;background:#ff6a1a}.page-title{margin:58px 0 34px}.btn{border-radius:999px;padding:14px 24px;font-weight:700;letter-spacing:-0.01em;box-shadow:0 12px 26px rgba(255,106,26,.18)}.btn--primary{background:linear-gradient(135deg, #ff6a1a, #ff8a3d);color:#fff}.btn--primary:hover{background:linear-gradient(135deg, #f55600, #ff6a1a);transform:translateY(-2px)}.btn--outline{border:1px solid rgba(18,58,99,.18);background:rgba(255,255,255,.82);color:#123a63;box-shadow:none}.btn--outline:hover{border-color:#ff6a1a;background:#ff6a1a;color:#fff}.btn--small{padding:10px 18px;font-size:13px}#header{background:rgba(255,255,255,.9);backdrop-filter:blur(18px);border-bottom:1px solid rgba(223,231,241,.75);box-shadow:0 10px 35px rgba(15,23,42,.08);padding:12px 0}#header .header-container{gap:28px}#header .logo a{display:inline-flex;align-items:center}#header .logo img{height:42px}#header .logo__text{color:#123a63;font-size:23px}#header .main-menu ul{gap:26px}#header .main-menu ul li a{color:#1f2937;font-size:14px;font-weight:650}#header .main-menu ul li a:hover{color:#ff6a1a}#header .header-contacts{gap:16px}#header .header-contacts .header-phone{color:#0b1320;font-size:16px}.hero{min-height:680px;height:auto;isolation:isolate;overflow:hidden;background-color:#071827}.hero::before{z-index:-2;background:linear-gradient(90deg, rgba(7, 24, 39, 0.92), rgba(7, 24, 39, 0.62), rgba(7, 24, 39, 0.88)),linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);background-size:auto,44px 44px,44px 44px}.hero::after{content:"";position:absolute;inset:auto -140px -180px auto;width:520px;height:520px;border:1px solid rgba(34,211,238,.22);border-radius:50%;background:radial-gradient(circle, rgba(34, 211, 238, 0.16), transparent 62%);z-index:-1}.hero .container{width:100%;padding-top:90px;padding-bottom:90px}.hero__content{max-width:760px;padding:34px;border:1px solid rgba(255,255,255,.12);border-radius:28px;background:linear-gradient(145deg, rgba(8, 28, 46, 0.78), rgba(8, 28, 46, 0.36));box-shadow:0 30px 90px rgba(0,0,0,.26);backdrop-filter:blur(10px)}.hero__title{font-size:clamp(42px,7vw,76px);line-height:.98;letter-spacing:-0.07em;margin-bottom:24px}.hero__subtitle{color:rgba(255,255,255,.86);font-size:clamp(18px,2vw,25px)}.hero__text{max-width:640px;color:rgba(255,255,255,.72)}.page-blocks section:not(.hero){padding:74px 0}.page-blocks .block-content{color:#344054;font-size:17px}.page-blocks .block-content ul{display:grid;gap:14px;margin-top:18px}.page-blocks .block-content li{position:relative;padding-left:30px}.page-blocks .block-content li::before{content:"";position:absolute;left:0;top:.72em;width:14px;height:2px;background:#ff6a1a}.services-list,.home-cases,.contacts-page-grid,.service-detail,.callback-section{position:relative}.services-list{padding:86px 0 18px}.services-grid,.cases-grid{grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:24px}.service-card,.case-card{position:relative;border:1px solid rgba(223,231,241,.92);border-radius:24px;background:rgba(255,255,255,.92);box-shadow:0 18px 50px rgba(15,23,42,.1);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}.service-card::before,.case-card::before{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;background:linear-gradient(135deg, rgba(34, 211, 238, 0.16), transparent 38%, rgba(255, 106, 26, 0.12));opacity:0;transition:opacity .25s ease}.service-card:hover,.case-card:hover{transform:translateY(-7px);border-color:rgba(34,211,238,.46);box-shadow:0 22px 60px rgba(15,23,42,.14)}.service-card:hover::before,.case-card:hover::before{opacity:1}.service-card__image img{height:230px}.service-card__content{position:relative;padding:28px}.service-card__industry{color:#ff6a1a;letter-spacing:.08em}.service-card__title{color:#0b1320;font-size:22px;line-height:1.25;letter-spacing:-0.03em}.service-card__text{color:#667085;line-height:1.65}.service-card__info{gap:12px;flex-wrap:wrap}.service-card__info span{padding:8px 12px;border-radius:999px;background:#eef5fb;color:#123a63}.case-card__image img{height:260px}.case-card__content{position:relative;padding:28px}.case-card__industry{color:#22d3ee;letter-spacing:.08em}.case-card__title{font-size:22px;line-height:1.25;letter-spacing:-0.03em}.home-cases{padding:92px 0;background:linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72)),radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.12), transparent 28%)}.home-cases .section-lead{font-size:17px;line-height:1.7}.callback-section{margin:40px 0 0;padding:96px 0;background:linear-gradient(135deg, rgba(7, 24, 39, 0.94), rgba(18, 58, 99, 0.92)),linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);background-size:auto,46px 46px,46px 46px;color:#fff}.callback-section .section-title::before{background:#ff6a1a}.callback-section .callback-content p{max-width:520px;color:rgba(255,255,255,.72);font-size:18px;line-height:1.7;margin-top:18px}.lead-form{margin:0;max-width:none;padding:34px;border:1px solid rgba(255,255,255,.16);border-radius:26px;background:rgba(255,255,255,.96);box-shadow:0 28px 80px rgba(0,0,0,.18)}.lead-form__title{color:#0b1320;font-size:24px;letter-spacing:-0.03em}.lead-form .form-group .form-control{min-height:52px;border:1px solid #dfe7f1;border-radius:14px;background:#f8fafc;color:#0b1320;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}.lead-form .form-group .form-control:focus{outline:none;border-color:rgba(34,211,238,.8);background:#fff;box-shadow:0 0 0 4px rgba(34,211,238,.14)}.lead-form .form-group--checkbox{color:#667085;line-height:1.45}.service-detail{padding:72px 0 24px}.service-detail__hero{padding:34px;border:1px solid rgba(223,231,241,.85);border-radius:30px;background:rgba(255,255,255,.92);box-shadow:0 18px 50px rgba(15,23,42,.1)}.service-detail__title{font-size:clamp(34px,5vw,58px);letter-spacing:-0.06em}.service-detail__meta-item{background:#eef5fb;border:1px solid rgba(223,231,241,.78);border-radius:18px}.service-detail__image img{border-radius:24px}.service-detail__text{padding:32px;border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(15,23,42,.1)}.case-detail{padding:72px 0 24px}.case-detail__back{display:inline-block;margin-bottom:28px;color:#667085;font-weight:700}.case-detail__back:hover{color:#ff6a1a}.case-detail__hero{display:grid;grid-template-columns:minmax(0, 1.05fr) minmax(320px, 0.95fr);gap:48px;align-items:center;padding:34px;border:1px solid rgba(223,231,241,.85);border-radius:30px;background:rgba(255,255,255,.92);box-shadow:0 18px 50px rgba(15,23,42,.1)}.case-detail__industry{color:#ff6a1a;font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;margin-bottom:12px}.case-detail__title{font-size:clamp(34px,5vw,58px);line-height:1.1;letter-spacing:-0.06em;margin-bottom:20px}.case-detail__lead{color:#667085;font-size:18px;line-height:1.7}.case-detail__image img{width:100%;height:360px;object-fit:cover;border-radius:24px;box-shadow:0 16px 35px rgba(0,0,0,.12)}.case-detail__stages{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:22px;margin-top:42px}.case-detail__stage{padding:26px;border:1px solid rgba(223,231,241,.9);border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(15,23,42,.1)}.case-detail__stage span{display:inline-flex;margin-bottom:18px;color:#ff6a1a;font-weight:800;letter-spacing:.08em}.case-detail__stage h2{margin-bottom:12px;font-size:22px;letter-spacing:-0.03em}.case-detail__stage p{color:#667085;line-height:1.7}.case-detail__text,.case-detail__cta{margin-top:42px;padding:32px;border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(15,23,42,.1)}.case-detail__text{max-width:840px;font-size:18px;line-height:1.75}.case-detail__text p+p{margin-top:12px}.case-detail__cta{display:flex;justify-content:space-between;gap:24px;align-items:center;background:linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(18, 58, 99, 0.92)),linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);background-size:auto,46px 46px,46px 46px;color:#fff}.case-detail__cta h2{font-size:clamp(24px,3vw,36px);letter-spacing:-0.04em}#footer{margin-top:0;background:radial-gradient(circle at 82% 12%, rgba(34, 211, 238, 0.14), transparent 28%),#071827;border-top:1px solid rgba(255,255,255,.1)}#footer .footer-menu ul li a,#footer .footer-contact-item a{color:rgba(255,255,255,.82)}#footer .footer-menu ul li a:hover,#footer .footer-contact-item a:hover{color:#ff6a1a}.scroll-top{position:fixed;right:24px;bottom:24px;z-index:1100;display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border:1px solid rgba(255,255,255,.18);border-radius:18px;background:rgba(7,24,39,.92);color:#fff;font-size:24px;font-weight:800;cursor:pointer;box-shadow:0 18px 48px rgba(7,24,39,.28);opacity:0;pointer-events:none;transform:translateY(14px);transition:opacity .2s ease,transform .2s ease,background .2s ease;backdrop-filter:blur(12px)}.scroll-top:hover{background:#ff6a1a;transform:translateY(10px)}.scroll-top--visible{opacity:1;pointer-events:auto;transform:translateY(0)}.scroll-top--visible:hover{transform:translateY(-3px)}@media(max-width: 740px){.container{padding:0 18px}#header .header-container{flex-wrap:wrap}#header .header-contacts{width:100%;justify-content:space-between}.hero{min-height:auto}.hero__content{padding:24px}.callback-section,.home-cases,.services-list,.page-blocks section:not(.hero){padding:58px 0}.services-grid,.cases-grid{grid-template-columns:1fr}.service-detail__hero,.case-detail__hero,.case-detail__stage,.case-detail__text,.case-detail__cta{padding:22px}}@media(max-width: 480px){.btn{width:100%;text-align:center}.hero__title{font-size:38px}.lead-form{padding:24px}.scroll-top{right:16px;bottom:16px;width:46px;height:46px;border-radius:16px}}

/* End */
/* /local/templates/surfa/scss/main.scss?178349445025704 */
/* /local/templates/surfa/template_styles.css?177798925916951 */
