@import 'uikit.min.css';

:root {
    --theme-color: #ff6a00;
    --st-text-color-white: #fff;
    --st-text-color-secondary: #333;
    --st-text-color-default: #11192d;
    --st-text-primary: var(--theme-color);
    --st-link-hover-color: var(--theme-color);
    --st-button-color: var(--st-linear-gradient);
    --st-linear-gradient: linear-gradient(90deg, rgb(255, 119, 0), rgb(255, 73, 0));
    --st-button-hover-color: linear-gradient(90deg, rgb(255, 73, 0), rgb(255, 119, 0));

    /* st-rep module theme tokens */
    --st-rep-bg-radial: rgba(255, 122, 26, 0.14);
    --st-rep-bg-top: #fffdf9;
    --st-rep-bg-mid: #fff8f2;
    --st-rep-bg-bottom: #fffaf7;

    --st-rep-block-border: #f3ddc9;
    --st-rep-block-bg: rgba(255, 255, 255, 0.92);
    --st-rep-block-shadow: 0 12px 30px rgba(255, 106, 0, 0.1);
    --st-rep-title-underline: linear-gradient(90deg, #ff9f2f 0%, #ff7a1a 72%, #ff5f1f 100%);

    --st-rep-card-border: #f4dfcb;
    --st-rep-card-bg: linear-gradient(180deg, #fffdf9 0%, #fff7ef 100%);
    --st-rep-text-muted: #5f5b57;
    --st-rep-tag-bg: #fff0e2;
    --st-rep-tag-color: #c65a06;

    --st-rep-risk-border: #f3ddc8;
    --st-rep-risk-bg: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
    --st-rep-risk-text: #615b54;

    --st-rep-material-border: #f2deca;
    --st-rep-material-bg: linear-gradient(180deg, #fffdf9 0%, #fff8f1 100%);
    --st-rep-material-hover-border: #f1c9a3;
    --st-rep-material-hover-shadow: 0 8px 18px rgba(255, 106, 0, 0.16);
    --st-rep-material-text: #4b463f;

    --st-rep-step-line: #efbb92;
    --st-rep-step-shadow: 0 6px 14px rgba(255, 106, 0, 0.24);
    --st-rep-step-text: #5b554d;

    --st-rep-adv-border: #f2dfcd;
    --st-rep-adv-bg: #fff9f3;
    --st-rep-adv-hover-border: #f2c89f;
    --st-rep-adv-hover-shadow: 0 10px 20px rgba(255, 106, 0, 0.16);
    --st-rep-adv-text: #5f5a53;
}

.st-logo {
    width: 150px;
    height: auto;
}

.st-navbar-nav {
    gap: 60px;
}

.st-navbar-nav > li {
    position: relative;
}

.st-navbar-nav > li + li::before {
    top: 50%;
    width: 1px;
    left: -30px;
    content: '';
    height: 18px;
    position: absolute;
    background-color: #e5e5e5;
    transform: translateY(-50%);
}

.st-navbar-nav > li > a {
    font-size: 16px;
    transition: color 0.3s ease;
    color: var(--st-text-color-secondary);
}

.st-navbar-nav > li > a:hover {
    color: var(--st-link-hover-color);
}

.st-home-hero {
    position: relative;
    overflow: hidden;
}

.st-home-slider {
    background: #eff4ff;
}

.st-home-slider .uk-slider-container {
    overflow: hidden;
}

.st-home-slider .uk-slider-items {
    touch-action: pan-y;
}

.st-hero-slide {
    width: 100%;
}

.st-hero-slide-media {
    position: relative;
    overflow: hidden;
    min-height: clamp(320px, 42vw, 650px);
    background: linear-gradient(90deg, #ebf1ff 0%, #d8e6ff 100%);
}

.st-hero-slide-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 25, 45, 0.02) 0%, rgba(17, 25, 45, 0.08) 100%);
    pointer-events: none;
}

.st-hero-slide-media img {
    display: block;
    width: 100%;
    height: clamp(320px, 42vw, 650px);
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 5.5s ease, filter 0.6s ease;
    will-change: transform;
}

.st-home-slider .uk-active .st-hero-slide-media img {
    transform: scale(1.08);
}

.st-slider-dotnav {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    margin: 0;
    transform: translateX(-50%);
}

.st-slider-dotnav > * {
    padding-left: 8px;
}

.st-slider-dotnav > *:first-child {
    padding-left: 0;
}

.st-slider-dotnav > * > * {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 0 0 1px rgba(17, 25, 45, 0.08);
    transition: width 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.st-slider-dotnav > .uk-active > * {
    width: 38px;
    background-color: var(--theme-color);
    box-shadow: none;
}

.st-slider-dotnav > * > :hover {
    background-color: rgba(255, 255, 255, 0.95);
}

.st-slider-dotnav > .uk-active > :hover {
    background-color: var(--theme-color);
}

@media (max-width: 959px) {
    .st-hero-slide-media,
    .st-hero-slide-media img {
        min-height: 240px;
        height: 56vw;
    }

    .st-slider-dotnav {
        bottom: 16px;
    }

    .st-slider-dotnav > .uk-active > * {
        width: 28px;
    }
}

.st-compliance-strip {
    padding: 22px 0;
    background: #ececec;
}

.st-compliance-strip-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.st-compliance-strip-title {
    margin: 0;
    flex: 0 0 auto;
    color: var(--st-text-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.st-compliance-form {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.st-compliance-input {
    height: 60px;
    width: 100%;
    border: 1px solid #d7dce6;
    border-radius: 10px;
    padding: 0 22px;
    color: var(--st-text-color-default);
    background: #ffffff;
    font-size: 24px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-compliance-input::placeholder {
    color: #9aa3b2;
    font-size: 20px;
}

.st-compliance-input:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.st-compliance-button {
    height: 60px;
    min-width: 180px;
    border: 0;
    border-radius: 12px;
    padding: 0 26px;
    color: #ffffff;
    background: var(--st-button-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.st-compliance-button:hover {
    background: var(--st-button-hover-color);
}

.st-compliance-button:active {
    transform: translateY(1px);
}

.st-rep-more-btn {
    border: 0;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: #ffffff !important;
    background: var(--st-button-color);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.st-rep-more-btn:hover,
.st-rep-more-btn:focus {
    color: #ffffff !important;
    background: var(--st-button-hover-color);
    box-shadow: 0 12px 24px rgba(255, 106, 0, 0.28);
    transform: translateY(-1px);
    text-decoration: none;
}

.st-rep-more-btn:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

.st-rep-card {
    box-shadow: 0 6px 10px rgba(255, 106, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-rep-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.28);
}

@media (max-width: 1280px) {
    .st-compliance-strip-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .st-compliance-form {
        gap: 14px;
    }

    .st-compliance-button {
        min-width: 220px;
        font-size: 26px;
    }
}

@media (max-width: 959px) {
    .st-compliance-strip {
        padding: 18px 0;
    }

    .st-compliance-strip-title {
        text-align: center;
        font-size: 24px;
        white-space: normal;
    }

    .st-compliance-form {
        flex-direction: column;
    }

    .st-compliance-input,
    .st-compliance-button {
        width: 100%;
        min-width: 0;
        height: 52px;
        font-size: 18px;
    }

    .st-compliance-input {
        border-radius: 8px;
        padding: 0 16px;
    }

    .st-compliance-button {
        border-radius: 8px;
    }
}

.st-agent-service {
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #fffaf6 0%, #fff 30%, #fff7f1 100%);
}

.st-agent-header {
    text-align: center;
    margin-bottom: 28px;
}

.st-agent-title {
    margin: 0;
    color: var(--st-text-color-default);
    font-size: clamp(28px, 2vw, 38px);
    font-weight: 700;
}

.st-agent-subtitle {
    margin: 10px auto 0;
    max-width: 880px;
    color: #636b7d;
    font-size: 16px;
    line-height: 1.8;
}

.st-agent-grid {
    margin-bottom: 32px;
}

.st-agent-card {
    padding: 28px 22px 22px;
    border: 1px solid #f3dcc6;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(255, 106, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.st-agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(255, 106, 0, 0.14);
}

.st-agent-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 999px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    color: var(--st-text-color-white);
    font-size: 28px;
    background: var(--st-button-color);
}

.st-agent-card-title {
    margin: 0 0 14px;
    text-align: center;
    color: var(--st-text-primary);
    font-weight: 700;
}

.st-agent-list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.st-agent-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
    color: #39445a;
    font-size: 16px;
    line-height: 1.55;
}

.st-agent-list li::before {
    content: '\2713';
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--theme-color);
    font-weight: 700;
}

.st-agent-card-button {
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-text-color-white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    background: var(--st-button-color);
    transition: background 0.2s ease, transform 0.2s ease;
}

.st-agent-card-button:hover {
    color: var(--st-text-color-white);
    text-decoration: none;
    background: var(--st-button-hover-color);
}

.st-agent-card-button:active {
    transform: translateY(1px);
}

.st-agent-region-title {
    margin: 0 0 16px;
    color: var(--st-text-color-default);
    font-size: 28px;
    font-weight: 700;
}

.st-agent-region-item {
    padding: 18px 14px;
    border-radius: 12px;
    border: 1px solid #f3dcc6;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.st-agent-region-item:hover {
    transform: translateY(-2px);
    border-color: #ffd3aa;
    box-shadow: 0 12px 22px rgba(255, 106, 0, 0.12);
    text-decoration: none;
}

.st-agent-region-badge {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--st-text-color-white);
    font-size: 20px;
    font-weight: 700;
    background: var(--st-button-color);
}

.st-agent-region-name {
    margin-top: 10px;
    color: var(--st-text-primary);
    font-size: 20px;
    line-height: 1.2;
}

.st-agent-region-desc {
    margin-top: 6px;
    color: #5d6679;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 959px) {
    .st-agent-service {
        padding: 42px 0 50px;
    }

    .st-agent-header {
        margin-bottom: 20px;
    }

    .st-agent-subtitle {
        font-size: 14px;
    }

    .st-agent-card {
        padding: 22px 16px 18px;
    }

    .st-agent-list li,
    .st-agent-region-desc {
        font-size: 14px;
    }

    .st-agent-region-name {
        font-size: 22px;
    }
}

.st-partner {
    padding: 72px 0 84px;
}

.st-partner-header,
.st-news-header {
    margin-bottom: 26px;
    text-align: center;
}

.st-partner-title,
.st-news-title {
    margin: 0;
    display: inline-block;
    min-width: 420px;
    padding: 10px 40px;
    color: var(--st-text-color-default);
    font-size: clamp(32px, 2.2vw, 44px);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    background: url('../images/tt.png') center center no-repeat;
}

.st-partner-item {
    min-height: 120px;
    border-radius: 14px;
    padding: 16px 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.st-partner-item:hover {
    transform: translateY(-2px);
}

.st-partner-item img {
    display: block;
    max-width: 100%;
    max-height: 66px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1.02);
}

.st-news-excerpt span {
    color: #333;
    font-weight: bold;
}

.st-news-excerpt {
    padding: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    background-color: #dedede;
}

@media (max-width: 959px) {
    .st-partner {
        padding: 48px 0 56px;
    }

    .st-partner-title,
    .st-news-title {
        min-width: 0;
        width: 100%;
        padding: 12px 20px;
        font-size: 28px;
        background-size: cover;
    }

    .st-partner-item {
        min-height: 92px;
        padding: 12px;
    }

    .st-partner-item img {
        max-height: 48px;
    }
}

.st-news {
    padding: 72px 0 80px;
    background: #f4f5f8;
}

.st-news-header {
    margin-bottom: 34px;
}

.st-news-column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8dde8;
    margin-bottom: 16px;
}

.st-news-column-title {
    margin: 0;
    gap: 8px;
    display: flex;
    font-weight: 500;
    align-items: center;
    color: var(--st-text-primary);
}

.st-news-column-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    line-height: 1;
}

.st-news-more {
    color: #4d586d;
    text-decoration: none;
}

.st-news-more::after {
    font-size: 24px;
    content: ' \203A';
    display: inline-block;
    color: var(--theme-color);
    transition: transform .3s ease;
}

.st-news-more:hover {
    text-decoration: none;
    color: var(--theme-color);
}

.st-news-more:hover::after {
    transform: translateX(5px);
}

.st-news-featured {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.st-news-date-box {
    min-width: 140px;
    border-radius: 6px;
    background: #eceff4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.st-news-date-box strong {
    color: #2b313f;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
}

.st-news-date-box span {
    margin-top: 10px;
    color: #4d586d;
    font-size: 16px;
}

.st-news-featured-content {
    min-width: 0;
}

.st-news-featured-title {
    display: block;
    margin: 10px 0 8px;
    color: var(--st-text-color-default);
    font-size: 20px;
    line-height: 1.35;
    text-decoration: none;
}

.st-news-featured-title:hover {
    color: var(--theme-color);
    text-decoration: none;
}

.st-news-badge {
    margin-right: 10px;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    background: var(--st-button-color);
    vertical-align: middle;
}

.st-news-featured-content p {
    margin: 0;
    color: #6a7283;
    font-size: 16px;
    line-height: 1.65;
}

.st-news-list-item {
    border-radius: 4px;
    background: #fff;
    border: 1px solid #e3e7ef;
    padding: 14px 14px 12px;
}

.st-news-list-item h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.st-news-list-item h4 a {
    color: #1e2532;
    text-decoration: none;
}

.st-news-list-item h4 .st-news-column-icon {
    flex: 0 0 auto;
    margin-top: 3px;
    color: #a7adb8;
}

.st-news-list-item h4 a:hover {
    color: var(--theme-color);
}

.st-news-meta {
    gap: 4px;
    display: flex;
    font-size: 14px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    color: #48494b;
}

.st-news-meta-icon {
    color: #a6afbd;
}

.st-faq-highlight-list {
    margin-bottom: 12px;
}

.st-faq-highlight-item {
    padding: 6px 0 12px;
    border-bottom: 1px solid #dde2eb;
}

.st-faq-highlight-item h4 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

.st-faq-highlight-item h4 a {
    color: #1f2838;
    text-decoration: none;
}

.st-faq-highlight-item h4 a:hover {
    color: var(--theme-color);
}

.st-faq-highlight-item p {
    margin: 0;
    color: #778194;
    font-size: 16px;
    line-height: 1.65;
    overflow: hidden;
    line-clamp: 2;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.st-faq-simple-list {
    margin: 0;
    padding: 4px 0 0 18px;
}

.st-faq-simple-list li {
    font-size: 16px;
    color: #9aa2b2;
    line-height: 1.45;
    margin-bottom: 10px;
}

.st-faq-simple-list a {
    color: #1f2838;
    text-decoration: none;
}

.st-faq-simple-list a:hover {
    color: var(--theme-color);
}

.st-page-banner {
    height: 423px;
}

.st-form {
    padding-top: 272px;
}

.st-page-banner-form {
    width: min(100%, 660px);
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 156px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(43, 81, 190, 0.16);
}

.st-page-banner-form__field {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
}

.st-page-banner-form__field--phone {
    border-left: 1px solid #eef1f6;
}

.st-page-banner-form__icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: #c8c8c8;
}

.st-page-banner-form__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.st-page-banner-form__field input {
    width: 100%;
    height: 60px;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: #333333;
    font-size: 16px;
}

.st-page-banner-form__field input::placeholder {
    color: #999;
}

.st-page-banner-form__submit {
    border: 0;
    padding: 0 18px;
    font-size: 16px;
    cursor: pointer;
    color: #ffffff;
    transition: filter 0.2s ease;
    background: linear-gradient(90deg, #ff9f2f 0%, #ff8a1f 100%);
}

.st-page-banner-form__submit:hover {
    filter: brightness(0.96);
}

.st-rep-guide {
    padding-top: 36px;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 94% 8%, var(--st-rep-bg-radial), transparent 36%),
        linear-gradient(180deg, var(--st-rep-bg-top) 0%, var(--st-rep-bg-mid) 45%, var(--st-rep-bg-bottom) 100%);
}

.st-rep-guide-block {
    padding: 26px;
    border-radius: 16px;
    border: 1px solid var(--st-rep-block-border);
    background: var(--st-rep-block-bg);
    box-shadow: var(--st-rep-block-shadow);
}

.st-rep-guide-block + .st-rep-guide-block {
    margin-top: 28px;
}

.st-rep-guide-title {
    margin: 0 0 20px;
    color: var(--st-text-color-default);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.st-rep-guide-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 126px;
    height: 3px;
    border-radius: 99px;
    background: var(--st-rep-title-underline);
}

.st-rep-reasons-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.st-rep-reason-card {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--st-rep-card-border);
    background: var(--st-rep-card-bg);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.st-rep-reason-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.st-rep-reason-icon {
    width: 22px;
    height: 22px;
    color: var(--st-text-primary);
}

.st-rep-reason-head h3 {
    margin: 0;
    font-size: 20px;
    color: var(--st-text-primary);
    line-height: 1.4;
}

.st-rep-reason-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--st-rep-text-muted);
}

.st-rep-reason-tag {
    align-self: flex-start;
    margin-top: auto;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--st-rep-tag-bg);
    color: var(--st-rep-tag-color);
    font-size: 12px;
    line-height: 1;
}

.st-rep-risks-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.st-rep-risk-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--st-rep-risk-border);
    background: var(--st-rep-risk-bg);
}

.st-rep-risk-badge {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    background: var(--st-button-color);
}

.st-rep-risk-body h3 {
    margin: 0;
    color: var(--st-text-color-default);
    font-size: 22px;
    line-height: 1.4;
}

.st-rep-risk-body p {
    margin: 8px 0 0;
    color: var(--st-rep-risk-text);
    font-size: 14px;
    line-height: 1.75;
}

.st-rep-materials-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.st-rep-material-card {
    margin: 0;
    min-height: 74px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid var(--st-rep-material-border);
    background: var(--st-rep-material-bg);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.st-rep-material-card:hover {
    transform: translateY(-2px);
    border-color: var(--st-rep-material-hover-border);
    box-shadow: var(--st-rep-material-hover-shadow);
}

.st-rep-material-icon {
    width: 22px;
    height: 22px;
    color: var(--st-text-primary);
    flex: 0 0 auto;
}

.st-rep-material-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--st-rep-material-text);
}

.st-rep-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.st-rep-step-item {
    position: relative;
    text-align: center;
    padding-top: 34px;
}

.st-rep-step-item::before {
    content: '';
    position: absolute;
    top: 53px;
    left: calc(50% + 20px);
    width: calc(100% - 30px);
    border-top: 2px dashed var(--st-rep-step-line);
}

.st-rep-step-item:last-child::before {
    display: none;
}

.st-rep-step-index {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--st-button-color);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    box-shadow: var(--st-rep-step-shadow);
}

.st-rep-step-item p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--st-rep-step-text);
}

.st-rep-advantages-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.st-rep-advantage-card {
    margin: 0;
    min-height: 220px;
    padding: 20px 18px;
    border-radius: 14px;
    border: 1px solid var(--st-rep-adv-border);
    background: var(--st-rep-adv-bg);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.st-rep-advantage-card:hover {
    transform: translateY(-3px);
    border-color: var(--st-rep-adv-hover-border);
    box-shadow: var(--st-rep-adv-hover-shadow);
}

.st-rep-advantage-icon {
    color: #ff8c1f;
}

.st-rep-advantage-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    line-height: 1.4;
    color: var(--st-text-primary);
    font-weight: 700;
}

.st-rep-advantage-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--st-rep-adv-text);
}

@media (max-width: 1279px) {
    .st-rep-reasons-grid {
        grid-template-columns: 1fr;
    }

    .st-rep-risks-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .st-rep-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .st-rep-step-item:nth-child(4n)::before {
        display: none;
    }

    .st-rep-advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 959px) {
    .st-form {
        padding-top: 220px;
    }

    .st-page-banner {
        height: auto;
        min-height: 360px;
        padding-bottom: 48px;
    }

    .st-page-banner-form {
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .st-page-banner-form__field--phone {
        border-left: 0;
        border-top: 1px solid #eef1f6;
    }

    .st-page-banner-form__submit {
        min-height: 54px;
    }

    .st-rep-guide {
        padding-top: 8px;
        padding-bottom: 34px;
    }

    .st-rep-guide-block {
        padding: 18px;
        border-radius: 14px;
    }

    .st-rep-guide-block + .st-rep-guide-block {
        margin-top: 16px;
    }

    .st-rep-guide-title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .st-rep-guide-title::after {
        width: 88px;
    }

    .st-rep-materials-grid,
    .st-rep-risks-grid,
    .st-rep-advantages-grid {
        grid-template-columns: 1fr;
    }

    .st-rep-reason-head h3 {
        font-size: 18px;
    }

    .st-rep-risk-badge {
        width: 48px;
        height: 48px;
        font-size: 26px;
    }

    .st-rep-risk-body h3 {
        font-size: 18px;
    }

    .st-rep-material-card p,
    .st-rep-step-item p,
    .st-rep-advantage-card p {
        font-size: 14px;
    }

    .st-rep-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .st-rep-step-item {
        text-align: left;
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding-top: 0;
        min-height: 48px;
    }

    .st-rep-step-item::before {
        left: 20px;
        top: 44px;
        width: 0;
        height: calc(100% + 6px);
        border-top: 0;
        border-left: 2px dashed var(--st-rep-step-line);
    }

    .st-rep-step-item:last-child::before {
        display: none;
    }

    .st-rep-step-item p {
        margin: 0;
    }

    .st-rep-advantage-card {
        min-height: 0;
        text-align: left;
    }

    .st-rep-advantage-card h3 {
        font-size: 17px;
    }
}

@media (max-width: 959px) {
    .st-news {
        padding: 46px 0 54px;
    }

    .st-news-featured {
        gap: 14px;
    }

    .st-news-date-box {
        width: 96px;
        min-width: 96px;
        min-height: 96px;
    }

    .st-news-date-box strong {
        font-size: 42px;
    }

    .st-news-date-box span {
        margin-top: 6px;
        font-size: 14px;
    }

    .st-news-featured-title,
    .st-faq-highlight-item h4 {
        margin-top: 0;
        font-size: 18px;
    }

    .st-news-badge {
        padding: 4px 8px;
        font-size: 12px;
    }

    .st-news-featured-content p,
    .st-faq-highlight-item p,
    .st-news-list-item h4,
    .st-news-meta,
    .st-faq-simple-list li {
        font-size: 14px;
    }
}

.st-news-archive {
    background:
        radial-gradient(circle at top right, rgba(255, 119, 0, 0.10), transparent 28%),
        linear-gradient(180deg, #fffdfb 0%, #fffaf6 22%, #ffffff 100%);
}

.st-news-archive-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

.st-news-archive-summary {
    min-width: 0;
}

.st-news-archive-title {
    font-weight: 700;
    line-height: 1.22;
    margin: 16px 0 10px;
    color: var(--st-text-color-default);
}

.st-news-archive-description {
    margin: 0;
    max-width: 760px;
    color: #5c6578;
    font-size: 16px;
    line-height: 1.9;
}

.st-news-keywords {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.st-news-keywords-label {
    flex: 0 0 auto;
    color: var(--st-text-color-default);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.9;
}

.st-news-keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.st-news-keyword {
    color: #51607a;
    font-size: 16px;
    line-height: 1.9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.st-news-keyword:hover {
    text-decoration: none;
    color: var(--st-text-primary);
}

.st-news-sidebar-top {
    align-self: flex-end;
}

.st-news-search {
    margin: 0;
    position: relative;
}

.st-news-search-input {
    width: 100%;
    height: 50px;
    font-size: 15px;
    border-radius: 999px;
    padding: 0 64px 0 22px;
    border: 1px solid #ebeef3;
    color: var(--st-text-color-default);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(17, 25, 45, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-news-search-input::placeholder {
    color: #9aa3b2;
}

.st-news-search-input:focus {
    outline: none;
    border-color: rgba(255, 106, 0, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.st-news-search-button {
    top: 50%;
    border: 0;
    right: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: #11192d;
    position: absolute;
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    background: transparent;
    transform: translateY(-50%);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.st-news-search-button:hover {
    color: var(--st-text-color-white);
    background: var(--st-button-color);
}

.st-news-layout {
    align-items: flex-start;
}

.st-news-panel,
.st-news-widget {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #edf0f5;
    box-shadow: 0 18px 44px rgba(17, 25, 45, 0.06);
}

.st-news-panel-header,
.st-news-widget-title {
    position: relative;
    margin: 0;
    color: var(--st-text-color-default);
    font-weight: 700;
}

.st-news-panel-header {
    padding: 15px;
    border-bottom: 1px solid #f0f3f8;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.96), rgba(255, 255, 255, 0.98));
}

.st-news-panel-title {
    margin: unset;
}

.st-news-panel-title,
.st-news-widget-title {
    padding-left: 16px;
    font-size: 20px;
    line-height: 1.4;
}

.st-news-panel-title::before,
.st-news-widget-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 24px;
    border-radius: 999px;
    background: var(--st-button-color);
    transform: translateY(-50%);
}

.st-news-list {
    padding: 0 18px 6px;
}

.st-news-card {
    border-bottom: 1px solid #edf0f5;
}

.st-news-card:last-child {
    border-bottom: 0;
}

.st-news-card-link {
    display: grid;
    grid-template-columns: minmax(220px, 268px) minmax(0, 1fr);
    gap: 20px;
    padding: 18px 6px;
    color: inherit;
    text-decoration: none;
}

.st-news-card-link:hover {
    text-decoration: none;
}

.st-news-card-media {
    position: relative;
    min-height: 164px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe4cb 0%, #ffd2ab 100%);
}

.st-news-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.st-news-card-link:hover .st-news-card-media img {
    transform: scale(1.04);
}

.st-news-card-media.is-empty {
    display: grid;
    place-items: center;
}

.st-news-card-placeholder {
    color: rgba(17, 25, 45, 0.42);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.st-news-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.st-news-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    transition: color 0.2s ease;
    color: var(--st-text-color-default);
}

.st-news-card-link:hover .st-news-card-title {
    color: var(--st-text-primary);
}

.st-news-card-excerpt {
    margin: 12px 0 0;
    color: #5c6578;
    font-size: 15px;
    line-height: 1.85;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.st-news-card-footer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.st-news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.st-news-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: #6e7890;
    font-size: 13px;
    background: #f7f8fb;
}

.st-news-card-date {
    position: relative;
    flex: 0 0 auto;
    padding-left: 18px;
    color: #9aa3b2;
    font-size: 15px;
    white-space: nowrap;
}

.st-news-card-date::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.42);
    transform: translateY(-50%);
}

.st-news-sidebar {
    gap: 18px;
    display: flex;
    flex-flow: column nowrap;
}

.st-news-widget {
    padding: 24px 22px 22px;
}

.st-news-hot-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.st-news-hot-item + .st-news-hot-item {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #eceff4;
}

.st-news-hot-link {
    position: relative;
    display: -webkit-box;
    padding-left: 14px;
    color: #39445a;
    font-size: 16px;
    line-height: 1.75;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
    transition: color 0.2s ease;
}

.st-news-hot-link::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #9aa3b2;
}

.st-news-hot-link:hover {
    color: var(--st-text-primary);
    text-decoration: none;
}

.st-news-tag-cloud {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.st-news-tag-cloud-item {
    font-size: 15px;
    padding: 0 10px;
    min-height: 30px;
    color: #5c6578;
    background: #fff;
    align-items: center;
    display: inline-flex;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid #eceff4;
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.st-news-tag-cloud-item:hover {
    color: var(--st-text-primary);
    border-color: rgba(255, 106, 0, 0.22);
    box-shadow: 0 10px 24px rgba(255, 106, 0, 0.10);
    transform: translateY(-1px);
    text-decoration: none;
}

.st-news-widget-empty,
.st-news-empty-text {
    margin: 16px 0 0;
    color: #7b8598;
    font-size: 15px;
    line-height: 1.8;
}

.st-news-empty-state {
    padding: 42px 28px 48px;
    text-align: center;
}

.st-news-empty-title {
    margin: 0;
    color: var(--st-text-color-default);
    font-size: 24px;
    font-weight: 700;
}

.st-news-pagination {
    padding: 12px 26px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.st-news-pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #eceff4;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5d6679;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.st-news-pagination .page-numbers:hover,
.st-news-pagination .page-numbers.current {
    color: #fff;
    border-color: transparent;
    background: var(--st-button-color);
    box-shadow: 0 12px 26px rgba(255, 106, 0, 0.16);
    text-decoration: none;
}

@media (max-width: 1199px) {
    .st-news-archive-top {
        grid-template-columns: 1fr;
    }

    .st-news-sidebar-top {
        align-self: start;
    }

    .st-news-card-link {
        grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
    }

    .st-news-card-title {
        font-size: 22px;
    }
}

@media (max-width: 959px) {
    .st-news-archive {
        padding: 30px 0 56px;
    }

    .st-news-archive-top {
        gap: 18px;
        margin-bottom: 20px;
    }

    .st-news-archive-description,
    .st-news-keywords-label,
    .st-news-keyword,
    .st-news-hot-link,
    .st-news-widget-empty,
    .st-news-empty-text {
        font-size: 14px;
    }

    .st-news-keywords {
        flex-direction: column;
        gap: 8px;
    }

    .st-news-panel-header,
    .st-news-widget {
        padding-left: 18px;
        padding-right: 18px;
    }

    .st-news-list {
        padding: 0 12px 4px;
    }

    .st-news-card-link {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 4px;
    }

    .st-news-card-media {
        min-height: 220px;
    }

    .st-news-card-title {
        font-size: 20px;
    }

    .st-news-card-excerpt {
        margin-top: 10px;
        line-clamp: 4;
        -webkit-line-clamp: 4;
    }

    .st-news-card-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .st-news-pagination {
        padding: 6px 18px 22px;
    }
}

.st-footer {
    padding: 36px 0 30px;
    background: #1f2329;
}

.st-footer .st-footer-menu-root,
.st-footer .st-footer-menu-root ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.st-footer .st-footer-menu-root {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.st-footer .st-footer-menu-root > li > a {
    display: block;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
}

.st-footer .st-footer-menu-root > li > a:hover {
    color: #ffcf9f;
}

.st-footer .st-footer-menu-root > li > .sub-menu {
    margin-top: 0;
}

.st-footer .st-footer-menu-root > li > .sub-menu > li {
    margin-top: 6px;
}

.st-footer .st-footer-menu-root > li > .sub-menu > li > a {
    color: #f2f2f2;
    font-size: 16px;
    line-height: 1.35;
    text-decoration: none;
}

.st-footer .st-footer-menu-root > li > .sub-menu > li > a:hover {
    color: #ffcf9f;
}

.st-footer-contact {
    color: #d9dde2;
}

.st-footer-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.st-footer-hotline-icon {
    width: 44px;
    height: 44px;
    border: 3px solid #bfc6cf;
    border-radius: 999px;
    color: #bfc6cf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.st-footer-hotline-label {
    color: #aeb6c1;
    font-size: 18px;
    line-height: 1.2;
}

.st-footer-hotline-number {
    color: #e3e7ec;
    font-size: 42px;
    line-height: 1.15;
    text-decoration: none;
}

.st-footer-hotline-number:hover {
    color: #ffffff;
}

.st-footer-contact-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.st-footer-contact-list li {
    margin-top: 6px;
    color: #d8dde3;
    font-size: 15px;
    line-height: 1.45;
    display: flex;
    align-items: center;
    gap: 8px;
}

.st-footer-contact-list li > span {
    color: #c4cad2;
    flex: 0 0 auto;
}

@media (max-width: 959px) {
    .st-footer {
        padding: 24px 0 20px;
    }

    .st-footer .st-footer-menu-root {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .st-footer .st-footer-menu-root > li > a {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .st-footer .st-footer-menu-root > li > .sub-menu > li > a {
        font-size: 14px;
    }

    .st-footer-hotline-number {
        font-size: 28px;
    }

    .st-footer-hotline-label {
        font-size: 14px;
    }

    .st-footer-contact-list li {
        font-size: 13px;
    }
}

.st-breadcrumb-inner {
    gap: 8px;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.5;
    align-items: center;
}

.st-breadcrumb-icon {
    flex: 0 0 auto;
    color: #3b3b3b;
}

.st-breadcrumb-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.st-breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.st-breadcrumb-link {
    color: #3b3b3b;
    text-decoration: none;
}

.st-breadcrumb-link:hover {
    color: #000;
}

.st-breadcrumb-separator {
    margin: 0 10px;
    color: #777;
}

@media (max-width: 768px) {
    .st-breadcrumb {
        padding: 14px 16px;
    }

    .st-breadcrumb-inner {
        font-size: 14px;
    }

    .st-breadcrumb-separator {
        margin: 0 6px;
    }
}