* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

body:focus-visible {
    outline: 2px solid #283747;
}

*:focus-visible {
    outline: 2px solid #283747;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

.top_bar {
    background: #283747;
    padding: 8px 0;
}

.top_bar_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.top_nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.top_nav li {
    display: flex;
    align-items: center;
}

.top_nav li+li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(207, 213, 207, 0.3);
    margin-right: 4px;
}

.top_nav a {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #CFD5CF;
    text-decoration: none;
    padding: 8px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
    transition: color 0.5s ease-in-out;
    border-radius: 4px;
}

.top_nav a:hover {
    color: #ffffff;
}

.top_nav_icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.75;
}

.brand_row {
    background: linear-gradient(135deg, #f5f6f4 0%, #e8ebe8 50%, #dde2dd 100%);
    border-bottom: 1px solid rgba(40, 55, 71, 0.12);
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
}

.brand_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo_zone {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 44px;
    background: rgba(207, 213, 207, 0.35);
    border: 2px solid rgba(40, 55, 71, 0.18);
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07), 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.logo_zone img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.brand_text_box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand_name {
    font-family: 'Bitter', serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    background: linear-gradient(120deg, #283747 30%, #929398 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.brand_tagline {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #929398;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
}

.cookie_popup {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1000;
    width: 360px;
    max-width: calc(100vw - 48px);
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11), 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    padding: 24px;
    display: none;
    transform: translateX(calc(-100% - 48px));
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie_popup.visible {
    transform: translateX(0);
}

.cookie_desc {
    font-family: 'Bitter', serif;
    font-size: 15px;
    line-height: 1.7;
    color: #283747;
    margin: 0 0 16px 0;
}

.cookie_toggles_box {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.cookie_toggles_box.open {
    display: flex;
}

.toggle_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.toggle_label {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #283747;
    letter-spacing: 0.01em;
}

.toggle_switch {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.toggle_switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle_track {
    position: absolute;
    inset: 0;
    background: #CFD5CF;
    border-radius: 44px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.toggle_switch input:checked+.toggle_track {
    background: #283747;
}

.toggle_track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 44px;
    background: #ffffff;
    transition: transform 0.2s ease-in-out;
}

.toggle_switch input:checked+.toggle_track::after {
    transform: translateX(18px);
}

.cookie_actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie_btn {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #283747;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    letter-spacing: 0.01em;
    transition: color 0.5s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.cookie_btn:hover {
    color: #929398;
}

.cookie_btn.primary {
    font-weight: 700;
}

.page_footer {
    background: #283747;
    padding: 40px 0 24px;
}

.footer_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer_brand_row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer_logo_box {
    width: 56px;
    height: 56px;
    border-radius: 44px;
    background: rgba(207, 213, 207, 0.12);
    border: 1px solid rgba(207, 213, 207, 0.25);
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
}

.footer_logo_box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.footer_brand_name {
    font-family: 'Bitter', serif;
    font-size: 31px;
    font-weight: 700;
    color: #CFD5CF;
    letter-spacing: 0.01em;
    line-height: 1.3;
    margin: 0;
}

.footer_nav_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_nav_row li {
    display: flex;
    align-items: center;
}

.footer_nav_row li+li::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(207, 213, 207, 0.25);
    margin-right: 8px;
}

.footer_nav_row a {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: #929398;
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 8px 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.55s ease-in-out;
    border-radius: 4px;
}

.footer_nav_row a:hover {
    color: #CFD5CF;
}

.footer_divider {
    width: 100%;
    height: 1px;
    background: rgba(207, 213, 207, 0.12);
}

.footer_bottom_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.footer_copy {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: rgba(146, 147, 152, 0.6);
    letter-spacing: 0.01em;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.footer_contact_group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer_contact_link {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 15px;
    color: rgba(146, 147, 152, 0.7);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.5s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footer_contact_link:hover {
    color: #CFD5CF;
}

@media (max-width: 700px) {
    .brand_name {
        font-size: 31px;
    }

    .top_bar_inner {
        justify-content: center;
    }

    .top_nav {
        justify-content: center;
    }

    .brand_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 16px;
    }

    .footer_bottom_row {
        flex-direction: column;
        gap: 8px;
    }
}

.info-legal {
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #283747;
}

.info-legal ul,
.info-legal ol {
    padding-left: 24px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.info-legal ul {
    list-style-type: disc;
}

.info-legal ol {
    list-style-type: decimal;
}

.info-legal ul ul,
.info-legal ol ol,
.info-legal ul ol,
.info-legal ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.info-legal li {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
    color: #283747;
}

.info-legal em,
.info-legal i {
    font-style: italic;
    color: #283747;
}

.info-legal a {
    color: #283747;
    text-decoration: underline;
    text-decoration-color: #929398;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out, text-decoration-color 0.55s ease-in-out;
}

.info-legal a:hover {
    color: #929398;
    text-decoration-color: #283747;
}

.info-legal hr {
    border: none;
    border-top: 1px solid #CFD5CF;
    margin-top: 40px;
    margin-bottom: 40px;
}

.info-legal div {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .info-legal {
        padding: 40px 16px;
    }

    .info-legal li {
        font-size: 15px;
        line-height: 1.5;
    }

    .info-legal div {
        font-size: 15px;
        line-height: 1.5;
    }
}

.ss_det {
    max-width: 100%;
    overflow-x: hidden;
}

.ss_det .art_top {
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 24px 40px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: end;
}

.ss_det .art_top_left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.ss_det .dot_grid {
    position: absolute;
    top: -40px;
    left: -24px;
    width: 220px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(40, 55, 71, 0.18) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
}

.ss_det .art_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #283747;
    background: rgba(40, 55, 71, 0.08);
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.ss_det .art_h1 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 900;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ss_det .art_sub {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
    margin: 0;
    position: relative;
    z-index: 1;
    border-top: 2px solid #CFD5CF;
    padding-top: 16px;
}

.ss_det .art_meta_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.ss_det .art_author_name {
    font-size: 15px;
    line-height: 1.3;
    color: #283747;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ss_det .art_date {
    font-size: 15px;
    line-height: 1.3;
    color: #929398;
    letter-spacing: 0.01em;
}

.ss_det .art_stats {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-left: auto;
}

.ss_det .stat_pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.3;
    color: #929398;
    letter-spacing: 0.01em;
}

.ss_det .stat_icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss_det .art_img_wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
}

.ss_det .art_img_wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.55s ease-in-out;
}

.ss_det .art_img_wrap:hover img {
    filter: grayscale(0%);
}

.ss_det .img_fade_top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(40, 55, 71, 0.45) 0%, transparent 100%);
    pointer-events: none;
}

.ss_det .wavy_divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.ss_det .wavy_divider svg {
    display: block;
    width: 100%;
}

.ss_det .art_body_wrap {
    background: linear-gradient(307deg, #f4f5f4 60%, rgba(207, 213, 207, 0.35) 100%);
    padding: 80px 24px;
}

.ss_det .art_body_inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 40px;
    align-items: start;
}

.ss_det .art_body_text {
    font-size: 18px;
    line-height: 1.7;
    color: #283747;
    letter-spacing: 0.01em;
}

.ss_det .art_body_text p:first-of-type::first-letter {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 900;
    color: #283747;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ss_det .art_body_text p {
    margin-bottom: 24px;
}

.ss_det .art_body_text h2 {
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
    color: #283747;
    letter-spacing: 0.01em;
    margin: 40px 0 16px;
}

.ss_det .art_body_text h3 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #283747;
    letter-spacing: 0.02em;
    margin: 24px 0 8px;
}

.ss_det .art_body_text h4 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #929398;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 16px 0 8px;
}

.ss_det .art_body_text mark {
    background: rgba(40, 55, 71, 0.1);
    color: #283747;
    padding: 0 4px;
    border-radius: 4px;
}

.ss_det .art_body_text em {
    color: #283747;
    font-style: italic;
}

.ss_det .art_body_text ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    counter-reset: step_c;
}

.ss_det .art_body_text ul li {
    counter-increment: step_c;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 18px;
    line-height: 1.7;
    color: #283747;
    padding-bottom: 8px;
    position: relative;
}

.ss_det .art_body_text ul li::before {
    content: counter(step_c, decimal-leading-zero);
    font-size: 15px;
    font-weight: 700;
    color: #929398;
    min-width: 28px;
    padding-top: 4px;
    flex-shrink: 0;
}

.ss_det .art_body_text ul li::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 28px;
    bottom: -8px;
    width: 1px;
    background: rgba(40, 55, 71, 0.15);
}

.ss_det .art_body_text ul li:last-child::after {
    display: none;
}

.ss_det .art_body_text a {
    color: #283747;
    text-decoration-line: underline;
    text-decoration-style: wavy;
    text-decoration-color: rgba(40, 55, 71, 0.4);
    text-underline-offset: 4px;
    transition: text-decoration-color 0.2s ease-in-out;
}

.ss_det .art_body_text a:hover {
    text-decoration-color: #283747;
}

.ss_det .art_body_text table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
}

.ss_det .art_body_text td {
    padding: 8px 16px;
    border: 1px solid rgba(40, 55, 71, 0.12);
    color: #283747;
}

.ss_det .art_body_text tfoot td {
    background: rgba(40, 55, 71, 0.06);
    font-weight: 700;
}

.ss_det .art_body_text details {
    margin-bottom: 16px;
    border-radius: 4px;
    border: 1px solid rgba(40, 55, 71, 0.15);
    overflow: hidden;
}

.ss_det .art_body_text summary {
    padding: 16px;
    font-weight: 700;
    font-size: 15px;
    color: #283747;
    cursor: pointer;
    background: rgba(40, 55, 71, 0.04);
    transition: background 0.2s ease-in-out;
}

.ss_det .art_body_text summary:hover {
    background: rgba(40, 55, 71, 0.09);
}

.ss_det .art_body_text details[open] summary {
    border-bottom: 1px solid rgba(40, 55, 71, 0.12);
}

.ss_det .art_body_text details>*:not(summary) {
    padding: 16px;
}

.ss_det .art_sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px;
}

.ss_det .sidebar_card {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss_det .sidebar_label {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #929398;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ss_det .sidebar_tag_val {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 900;
    color: #283747;
    letter-spacing: 0.01em;
}

.ss_det .sidebar_sep {
    height: 1px;
    background: rgba(207, 213, 207, 0.8);
}

.ss_det .kbd_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ss_det .kbd_hint {
    font-size: 15px;
    line-height: 1.3;
    color: #929398;
}

.ss_det .back_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #283747;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: gap 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ss_det .back_link:hover {
    gap: 16px;
}

.ss_det .back_arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ss_det .aurora_band {
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
}

.ss_det .aurora_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(307deg, #283747 0%, #929398 100%);
}

.ss_det .aurora_zone_a {
    position: absolute;
    top: -40px;
    left: -80px;
    width: 500px;
    height: 300px;
    background: rgba(207, 213, 207, 0.18);
    border-radius: 44px;
    filter: blur(60px);
    animation: aurora_a 6s ease-in-out infinite alternate;
    pointer-events: none;
}

.ss_det .aurora_zone_b {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 400px;
    height: 260px;
    background: rgba(207, 213, 207, 0.12);
    border-radius: 44px;
    filter: blur(80px);
    animation: aurora_b 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes aurora_a {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, 20px) scale(1.1);
    }
}

@keyframes aurora_b {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-30px, -20px) scale(1.08);
    }
}

.ss_det .aurora_inner {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.ss_det .aurora_col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ss_det .aurora_col.center {
    align-self: flex-end;
}

.ss_det .aurora_col_label {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: rgba(207, 213, 207, 0.7);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ss_det .aurora_col_h {
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.01em;
    margin: 0;
}

.ss_det .aurora_col_p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(207, 213, 207, 0.85);
    letter-spacing: 0.01em;
    margin: 0;
}

.ss_det .aurora_col.center .aurora_col_h {
    font-size: 18px;
}

.ss_det .aurora_cta {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.01em;
    border-radius: 4px;
    padding: 8px 0;
    background: transparent;
    transition: gap 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ss_det .aurora_cta:hover {
    gap: 16px;
}

.ss_det .aurora_cta svg {
    flex-shrink: 0;
}

.ss_det .wavy_top_line {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

@media (max-width: 900px) {
    .ss_det .art_top {
        grid-template-columns: 1fr;
        padding: 40px 16px 24px;
        gap: 24px;
    }

    .ss_det .art_h1 {
        font-size: 31px;
    }

    .ss_det .art_img_wrap img {
        height: 220px;
    }

    .ss_det .art_body_inner {
        grid-template-columns: 1fr;
    }

    .ss_det .art_sidebar {
        position: static;
    }

    .ss_det .aurora_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ss_det .art_body_wrap {
        padding: 40px 16px;
    }

    .ss_det .aurora_band {
        padding: 40px 16px;
    }
}

.tech_req {
    max-width: 100%;
    overflow-x: hidden;
}

.tech_req .pg_wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.tech_req .title_blk {
    background: #283747;
    padding: 80px 24px;
    position: relative;
}

.tech_req .title_blk .pg_wrap {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.tech_req .title_dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    flex-shrink: 0;
}

.tech_req .title_dots span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background: #929398;
    opacity: 0.5;
}

.tech_req .title_dots span:nth-child(2) {
    opacity: 0.3;
}

.tech_req .title_dots span:nth-child(3) {
    opacity: 0.15;
}

.tech_req .title_text {
    flex: 1;
}

.tech_req .title_label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
    margin-bottom: 16px;
    display: block;
}

.tech_req .title_h1 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #CFD5CF;
    margin: 0 0 16px 0;
}

.tech_req .title_h1 em {
    font-style: normal;
    color: #ffffff;
}

.tech_req .title_sub {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
    max-width: 560px;
    margin: 0;
}

.tech_req .title_img_col {
    flex-shrink: 0;
    width: 280px;
}

.tech_req .title_img_wrap {
    width: 280px;
    height: 320px;
    border-radius: 4px;
    overflow: hidden;
    filter: grayscale(60%) contrast(0.9);
}

.tech_req .title_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech_req .title_img_wrap:hover img {
    transform: scale(1.04);
}

.tech_req .req_blk {
    padding: 80px 24px;
    background: #ffffff;
}

.tech_req .req_blk .pg_wrap {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.tech_req .req_main {
    text-align: left;
}

.tech_req .req_main .drop_cap::first-letter {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 900;
    color: #283747;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.tech_req .blk_heading {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin: 0 0 16px 0;
}

.tech_req .body_txt {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0 0 16px 0;
}

.tech_req .body_txt.sm {
    font-size: 15px;
    line-height: 1.5;
}

.tech_req .req_card {
    background: #CFD5CF;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech_req .req_card .card_icon_box {
    width: 40px;
    height: 40px;
    border: 2px solid #283747;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 8px;
}

.tech_req .req_card .card_icon_box svg {
    width: 20px;
    height: 20px;
}

.tech_req .req_card .card_h {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0;
}

.tech_req .req_card .card_p {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0;
}

.tech_req .steps_blk {
    padding: 80px 24px;
    background: #f2f4f2;
    position: relative;
}

.tech_req .steps_blk::before {
    content: '"';
    position: absolute;
    top: 40px;
    right: 80px;
    font-size: 240px;
    line-height: 1.1;
    font-weight: 900;
    color: #CFD5CF;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.tech_req .steps_blk .pg_wrap {
    position: relative;
    z-index: 1;
}

.tech_req .steps_heading {
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0 0 40px 0;
    text-align: center;
}

.tech_req .steps_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tech_req .steps_list li {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 40px;
}

.tech_req .steps_list li:last-child {
    padding-bottom: 0;
}

.tech_req .step_num_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.tech_req .step_num {
    width: 44px;
    height: 44px;
    border-radius: 44px;
    background: #283747;
    color: #CFD5CF;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.tech_req .step_line {
    width: 2px;
    flex: 1;
    background: #CFD5CF;
    margin-top: 8px;
    min-height: 32px;
}

.tech_req .steps_list li:last-child .step_line {
    display: none;
}

.tech_req .step_body {
    flex: 1;
    padding-top: 8px;
}

.tech_req .step_h {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0 0 8px 0;
}

.tech_req .step_p {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0;
}

.tech_req .team_blk {
    padding: 80px 24px;
    background: #ffffff;
    animation: bg_wash 8s ease-in-out infinite alternate;
}

@keyframes bg_wash {
    0% {
        background-color: #ffffff;
    }

    100% {
        background-color: #f7f8f7;
    }
}

.tech_req .team_blk .pg_wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech_req .team_heading {
    font-size: 31px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0;
    text-align: center;
}

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

.tech_req .team_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    background: #ffffff;
    transition: box-shadow 0.45s ease-in-out;
}

.tech_req .team_card:hover {
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
}

.tech_req .portrait_wrap {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 44px;
    overflow: hidden;
}

.tech_req .portrait_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech_req .portrait_wrap img:hover {
    transform: scale(1.04);
}

.tech_req .team_name {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0;
}

.tech_req .team_role {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
    margin: 0;
}

.tech_req .team_quote {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin: 0;
    text-decoration: underline wavy #929398;
    text-underline-offset: 4px;
}

.tech_req .no_portrait_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    background: #CFD5CF;
    transition: box-shadow 0.5s ease-in-out;
}

.tech_req .no_portrait_card:hover {
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
}

.tech_req .avatar_placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 44px;
    background: linear-gradient(307deg, #CFD5CF 60%, #929398 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech_req .avatar_placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.4;
}

.tech_req .img_grid_blk {
    padding: 40px 24px;
    background: #f2f4f2;
    position: relative;
}

.tech_req .wavy_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.tech_req .wavy_bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.07;
}

.tech_req .img_grid_blk .pg_wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tech_req .img_item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.tech_req .img_item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: zoom_cycle 12s ease-in-out infinite alternate;
}

@keyframes zoom_cycle {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}

.tech_req .img_item:hover img {
    animation: none;
    transform: scale(1.08);
}

@media (max-width: 900px) {
    .tech_req .title_blk .pg_wrap {
        flex-direction: column;
    }

    .tech_req .title_img_col {
        width: 100%;
    }

    .tech_req .title_img_wrap {
        width: 100%;
        height: 240px;
    }

    .tech_req .title_h1 {
        font-size: 31px;
    }

    .tech_req .req_blk .pg_wrap {
        grid-template-columns: 1fr;
    }

    .tech_req .team_grid {
        grid-template-columns: 1fr;
    }

    .tech_req .img_grid_blk .pg_wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .tech_req .title_blk {
        padding: 40px 16px;
    }

    .tech_req .req_blk,
    .tech_req .steps_blk,
    .tech_req .team_blk {
        padding: 40px 16px;
    }

    .tech_req .title_h1 {
        font-size: 31px;
    }

    .tech_req .steps_blk::before {
        font-size: 120px;
        right: 16px;
    }
}

.tech_req .kbd_row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.tech_req a.content_lnk {
    color: #283747;
    text-decoration: underline wavy #929398;
    text-underline-offset: 3px;
    transition: color 0.2s ease-in-out;
}

.tech_req a.content_lnk:hover {
    color: #929398;
}

.tech_req .btn_txt {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #283747;
    background: linear-gradient(307deg, #CFD5CF 0%, #ffffff 80%);
    border: 2px solid #283747;
    border-radius: 4px;
    padding: 8px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.45s ease-in-out, color 0.2s ease-in-out;
}

.tech_req .btn_txt:hover {
    background: linear-gradient(127deg, #283747 0%, #929398 100%);
    color: #ffffff;
}

.tech_req .btn_txt svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease-in-out;
}

.tech_req .btn_txt:hover svg {
    transform: translateX(4px);
}

.ld_pg {
    max-width: 100%;
    overflow-x: hidden;
}

.ld_pg .inner_wrap {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Title block */
.ld_pg .title_blk {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(307deg, #1a2535 0%, #283747 40%, #3d5166 70%, #929398 100%);
    overflow: hidden;
}

.ld_pg .title_blk .corner_lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    pointer-events: none;
}

.ld_pg .title_blk .corner_lines_br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.ld_pg .title_blk .corner_lines svg,
.ld_pg .title_blk .corner_lines_br svg {
    width: 100%;
    height: 100%;
}

.ld_pg .title_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.ld_pg .title_text_col {
    flex: 0 0 60%;
    max-width: 60%;
}

.ld_pg .title_img_col {
    flex: 0 0 40%;
    max-width: 40%;
}

.ld_pg .title_label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #CFD5CF;
    border: 1px solid rgba(207, 213, 207, 0.3);
    border-radius: 4px;
    padding: 4px 16px;
    margin-bottom: 24px;
}

.ld_pg .title_h1 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    -webkit-background-clip: text;
    background-clip: text;
}

.ld_pg .title_desc {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #CFD5CF;
    max-width: 520px;
}

.ld_pg .title_img_wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.ld_pg .title_img_wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) contrast(1.1) hue-rotate(0deg);
    transition: filter 0.55s ease-in-out;
}

.ld_pg .title_img_wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(307deg, rgba(40, 55, 71, 0.45) 0%, rgba(146, 147, 152, 0.15) 100%);
    pointer-events: none;
}

/* Dot border decoration */
.ld_pg .dot_border {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Section 2 - long-term value */
.ld_pg .value_blk {
    padding: 80px 24px;
    background: #fff;
}

.ld_pg .value_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.ld_pg .value_left {
    flex: 0 0 55%;
    max-width: 55%;
}

.ld_pg .value_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ld_pg .value_h2 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin-bottom: 24px;
}

.ld_pg .value_p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 16px;
}

.ld_pg .value_p .drop_cap::first-letter {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 900;
    color: #283747;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ld_pg .value_img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
}

.ld_pg .value_step_list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step_c;
}

.ld_pg .value_step_list li {
    counter-increment: step_c;
    position: relative;
    padding-left: 40px;
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #283747;
}

.ld_pg .value_step_list li::before {
    content: counter(step_c);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: #283747;
    color: #fff;
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

.ld_pg .value_step_list li::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 28px;
    width: 2px;
    bottom: 0;
    background: linear-gradient(180deg, #929398 0%, rgba(146, 147, 152, 0.1) 100%);
}

.ld_pg .value_step_list li:last-child::after {
    display: none;
}

/* Section 3 - numbers */
.ld_pg .nums_blk {
    padding: 80px 24px;
    background: #283747;
    position: relative;
    overflow: hidden;
}

.ld_pg .nums_bg_anim {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 40px,
            rgba(207, 213, 207, 0.04) 40px,
            rgba(207, 213, 207, 0.04) 41px);
    animation: bg_pan 8s linear infinite;
    pointer-events: none;
}

@keyframes bg_pan {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 -80px;
    }
}

.ld_pg .nums_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.ld_pg .nums_h2 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #CFD5CF;
    text-align: center;
    margin-bottom: 40px;
}

.ld_pg .nums_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ld_pg .num_card {
    background: rgba(207, 213, 207, 0.07);
    border: 1px solid rgba(207, 213, 207, 0.15);
    border-radius: 4px;
    padding: 40px 24px;
    text-align: center;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld_pg .num_card:hover {
    background: rgba(207, 213, 207, 0.13);
    border-color: rgba(207, 213, 207, 0.3);
}

.ld_pg .num_val {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 8px;
}

.ld_pg .num_label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
}

/* Section 4 - conditions */
.ld_pg .cond_blk {
    padding: 40px 24px;
    background: #CFD5CF;
}

.ld_pg .cond_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.ld_pg .cond_h2 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin-bottom: 16px;
    text-align: center;
}

.ld_pg .cond_p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 16px;
}

.ld_pg .cond_img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
}

.ld_pg .cond_checks {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    counter-reset: cond_c;
}

.ld_pg .cond_checks li {
    counter-increment: cond_c;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #283747;
}

.ld_pg .cond_num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #283747;
    color: #fff;
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

/* Section 5 - testimonial */
.ld_pg .exp_blk {
    padding: 80px 24px;
    background: #fff;
}

.ld_pg .exp_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.ld_pg .exp_h2 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin-bottom: 40px;
    text-align: left;
}

.ld_pg .exp_layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.ld_pg .exp_portrait_col {
    flex: 0 0 200px;
}

.ld_pg .exp_portrait_wrap {
    width: 160px;
    height: 224px;
    border-radius: 44px;
    overflow: hidden;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
}

.ld_pg .exp_portrait_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ld_pg .exp_name {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: #283747;
    margin-top: 16px;
}

.ld_pg .exp_role {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
}

.ld_pg .exp_text_col {
    flex: 1;
}

.ld_pg .exp_quote {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
    border-left: none;
}

.ld_pg .exp_quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: calc(100% - 16px);
    background: linear-gradient(307deg, #283747 0%, #929398 100%);
    border-radius: 4px;
}

.ld_pg .exp_img_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.ld_pg .exp_img_row img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

/* Section 6 - who belongs */
.ld_pg .fit_blk {
    padding: 80px 24px;
    background: #283747;
}

.ld_pg .fit_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.ld_pg .fit_h2 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.ld_pg .fit_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ld_pg .fit_col_yes {
    background: rgba(207, 213, 207, 0.08);
    border-radius: 4px;
    padding: 40px;
}

.ld_pg .fit_col_no {
    background: rgba(146, 147, 152, 0.1);
    border-radius: 4px;
    padding: 40px;
}

.ld_pg .fit_col_label {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #CFD5CF;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.ld_pg .fit_list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: fit_c;
}

.ld_pg .fit_list li {
    counter-increment: fit_c;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #CFD5CF;
}

.ld_pg .fit_num {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(207, 213, 207, 0.2);
    color: #CFD5CF;
    border-radius: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
}

/* Section 7 - hesitation */
.ld_pg .hes_blk {
    padding: 80px 24px;
    background: #fff;
}

.ld_pg .hes_inner {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.ld_pg .hes_left {
    flex: 0 0 55%;
    max-width: 55%;
}

.ld_pg .hes_right {
    flex: 1;
}

.ld_pg .hes_h2 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin-bottom: 24px;
}

.ld_pg .hes_p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 16px;
}

.ld_pg .hes_p .drop_cap::first-letter {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 900;
    color: #283747;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.ld_pg .hes_detail_box {
    background: #CFD5CF;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.ld_pg .hes_detail_h {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: #283747;
    margin-bottom: 16px;
}

.ld_pg .hes_detail_p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 16px;
}

.ld_pg .hes_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    margin-top: 24px;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
}

/* Keyboard key accent */
.ld_pg .kbd_accent {
    display: inline-block;
    margin-right: 8px;
}

/* Wave dividers */
.ld_pg .wave_div {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ld_pg .wave_div svg {
    display: block;
    width: 100%;
}

/* Flip card for section 5 nested component */
.ld_pg .flip_card {
    perspective: 800px;
    width: 100%;
    height: 200px;
    cursor: pointer;
}

.ld_pg .flip_card_inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld_pg .flip_card:focus-within .flip_card_inner,
.ld_pg .flip_card:hover .flip_card_inner {
    transform: rotateY(180deg);
}

.ld_pg .flip_face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.ld_pg .flip_front {
    background: #283747;
}

.ld_pg .flip_back {
    background: #929398;
    transform: rotateY(180deg);
}

.ld_pg .flip_front_txt {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: #fff;
}

.ld_pg .flip_back_txt {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #fff;
}

.ld_pg .flip_hint {
    font-size: 15px;
    line-height: 1.3;
    color: #CFD5CF;
    margin-top: 8px;
}

/* Links */
.ld_pg a {
    color: #283747;
    text-decoration-style: wavy;
    text-underline-offset: 4px;
    transition: color 0.45s ease-in-out;
}

.ld_pg a:hover {
    color: #929398;
}

/* Responsive */
@media (max-width: 900px) {
    .ld_pg .title_inner {
        flex-direction: column;
    }

    .ld_pg .title_text_col,
    .ld_pg .title_img_col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ld_pg .title_h1 {
        font-size: 31px;
    }

    .ld_pg .value_inner {
        flex-direction: column;
    }

    .ld_pg .value_left,
    .ld_pg .value_right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ld_pg .nums_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ld_pg .cond_inner {
        grid-template-columns: 1fr;
    }

    .ld_pg .exp_layout {
        flex-direction: column;
    }

    .ld_pg .fit_grid {
        grid-template-columns: 1fr;
    }

    .ld_pg .hes_inner {
        flex-direction: column;
    }

    .ld_pg .hes_left {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .ld_pg .nums_grid {
        grid-template-columns: 1fr;
    }

    .ld_pg .exp_img_row {
        grid-template-columns: 1fr;
    }

    .ld_pg .num_val {
        font-size: 31px;
    }
}

.sstr {
    max-width: 100%;
    overflow-x: hidden;
}

.sstr .pg_wrap {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.sstr .title_band {
    background: linear-gradient(307deg, #1a2535 0%, #283747 40%, #3d5166 70%, #929398 100%);
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.sstr .title_band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(207, 213, 207, 0.04) 0px,
            rgba(207, 213, 207, 0.04) 1px,
            transparent 1px,
            transparent 18px);
    pointer-events: none;
}

.sstr .title_band_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.sstr .title_text {
    flex: 1 1 0;
}

.sstr .title_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #CFD5CF;
    border: 1px solid rgba(207, 213, 207, 0.35);
    border-radius: 4px;
    padding: 4px 16px;
    margin-bottom: 24px;
}

.sstr .title_h1 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}

.sstr .title_sub {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(207, 213, 207, 0.85);
    letter-spacing: 0.01em;
    max-width: 520px;
}

.sstr .title_img_wrap {
    flex: 0 0 340px;
    width: 340px;
    height: 320px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.sstr .title_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sstr .title_img_wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(307deg, rgba(40, 55, 71, 0.7) 0%, rgba(40, 55, 71, 0.2) 60%, transparent 100%);
    pointer-events: none;
}

.sstr .wave_div {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.sstr .wave_div svg {
    display: block;
    width: 100%;
}

.sstr .posts_area {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.sstr .posts_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sstr .post_card {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.55s ease-in-out, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sstr .post_card:hover {
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
    transform: translateY(-4px);
}

.sstr .post_card:nth-child(1) {
    animation: card_in 0.5s ease-in-out both;
    animation-delay: 0.1s;
}

.sstr .post_card:nth-child(2) {
    animation: card_in 0.5s ease-in-out both;
    animation-delay: 0.22s;
}

.sstr .post_card:nth-child(3) {
    animation: card_in 0.5s ease-in-out both;
    animation-delay: 0.34s;
}

@keyframes card_in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sstr .post_img_wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
    flex-shrink: 0;
}

.sstr .post_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sstr .post_card:hover .post_img_wrap img {
    transform: scale(1.04);
}

.sstr .post_body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 8px;
}

.sstr .post_tag {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #929398;
    text-transform: uppercase;
    font-weight: 700;
}

.sstr .post_title {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 900;
    margin-bottom: 4px;
}

.sstr .post_subtitle {
    font-size: 15px;
    line-height: 1.5;
    color: #929398;
    letter-spacing: 0.01em;
}

.sstr .post_desc {
    font-size: 15px;
    line-height: 1.7;
    color: #283747;
    letter-spacing: 0.01em;
    flex: 1 1 auto;
}

.sstr .post_meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(207, 213, 207, 0.6);
    margin-top: 8px;
}

.sstr .post_author {
    font-size: 15px;
    line-height: 1.3;
    color: #283747;
    font-weight: 700;
    flex: 1 1 auto;
}

.sstr .post_date {
    font-size: 15px;
    line-height: 1.3;
    color: #929398;
}

.sstr .post_stats {
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-size: 15px;
    color: #929398;
    line-height: 1.3;
}

.sstr .post_link_btn {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #283747;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 0;
    border-bottom: 2px solid #283747;
    transition: color 0.45s ease-in-out, border-color 0.5s ease-in-out;
    align-self: flex-start;
}

.sstr .post_link_btn::after {
    content: " →";
}

.sstr .post_link_btn:hover {
    color: #929398;
    border-color: #929398;
}

.sstr .wave_div_2 {
    display: block;
    line-height: 0;
    overflow: hidden;
    background: #fff;
}

.sstr .wave_div_2 svg {
    display: block;
    width: 100%;
}

.sstr .dark_break {
    background: #1a2535;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
}

.sstr .dark_break::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(207, 213, 207, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(207, 213, 207, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(207, 213, 207, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(207, 213, 207, 0.025) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 20px 20px, 20px 20px;
    pointer-events: none;
}

.sstr .dark_break_inner {
    position: relative;
    z-index: 1;
}

.sstr .dark_break_h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #fff;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
}

.sstr .metrics_row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.sstr .metric_item {
    flex: 0 0 auto;
    text-align: center;
    animation: card_in 0.6s ease-in-out both;
}

.sstr .metric_item:nth-child(1) {
    animation-delay: 0.15s;
}

.sstr .metric_item:nth-child(2) {
    animation-delay: 0.28s;
}

.sstr .metric_item:nth-child(3) {
    animation-delay: 0.41s;
}

.sstr .metric_item:nth-child(4) {
    animation-delay: 0.54s;
}

.sstr .metric_num {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
    background: linear-gradient(307deg, #CFD5CF 0%, #929398 80%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.sstr .metric_label {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(207, 213, 207, 0.8);
    letter-spacing: 0.02em;
    margin-top: 8px;
}

.sstr .hr_deco {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.sstr .hr_line {
    flex: 1 1 auto;
    height: 1px;
    background: rgba(207, 213, 207, 0.2);
}

.sstr .hr_center {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(207, 213, 207, 0.4);
    border-radius: 4px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.sstr .wave_div_3 {
    display: block;
    line-height: 0;
    overflow: hidden;
    background: #1a2535;
}

.sstr .wave_div_3 svg {
    display: block;
    width: 100%;
}

.sstr .review_area {
    background: #f4f5f4;
    padding-top: 80px;
    padding-bottom: 80px;
}

.sstr .review_grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.sstr .review_portrait_wrap {
    width: 100%;
    aspect-ratio: 5/7;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
}

.sstr .review_portrait_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sstr .review_right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sstr .review_label {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #929398;
    text-transform: uppercase;
    font-weight: 700;
}

.sstr .review_h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 900;
}

.sstr .review_quote {
    font-size: 18px;
    line-height: 1.7;
    color: #283747;
    letter-spacing: 0.01em;
    padding-left: 24px;
    border-left: none;
    position: relative;
}

.sstr .review_quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(307deg, #283747 0%, #929398 100%);
    border-radius: 4px;
}

.sstr .review_quote p::first-letter {
    font-size: 31px;
    line-height: 1.1;
    color: #283747;
    font-weight: 900;
    float: left;
    margin-right: 4px;
    margin-top: 4px;
}

.sstr .review_author_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.sstr .review_author_name {
    font-size: 18px;
    line-height: 1.3;
    color: #283747;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.sstr .review_author_role {
    font-size: 15px;
    line-height: 1.3;
    color: #929398;
    letter-spacing: 0.01em;
}

.sstr .wave_div_4 {
    display: block;
    line-height: 0;
    overflow: hidden;
    background: #f4f5f4;
}

.sstr .wave_div_4 svg {
    display: block;
    width: 100%;
}

.sstr .cta_area {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.sstr .cta_h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 900;
    margin-bottom: 16px;
}

.sstr .cta_desc {
    font-size: 18px;
    line-height: 1.5;
    color: #929398;
    letter-spacing: 0.01em;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.sstr .cta_btn {
    display: inline-block;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #fff;
    background: linear-gradient(307deg, #283747 0%, #3d5166 60%, #929398 100%);
    border-radius: 4px;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background-position 0.55s ease-in-out, box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: 200% 200%;
    background-position: 0% 50%;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
}

.sstr .cta_btn:hover {
    background-position: 100% 50%;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
}

.sstr .posts_area_h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 900;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .sstr .posts_grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .sstr .title_band_inner {
        flex-direction: column;
    }

    .sstr .title_img_wrap {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }

    .sstr .review_grid {
        grid-template-columns: 1fr;
    }

    .sstr .review_portrait_wrap {
        max-width: 260px;
    }

    .sstr .title_h1 {
        font-size: 31px;
    }
}

@media (max-width: 600px) {
    .sstr .posts_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sstr .metrics_row {
        gap: 24px;
    }

    .sstr .title_h1 {
        font-size: 31px;
    }

    .sstr .title_band {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.pr_release {
    max-width: 100%;
    overflow-x: hidden;
}

.pr_release .pr_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.pr_release .title_block {
    background: #283747;
    padding: 80px 24px 40px;
}

.pr_release .title_block .tb_grid {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
}

.pr_release .title_block .tb_img_frame {
    flex: 0 0 480px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.pr_release .title_block .tb_img_frame img {
    width: 480px;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.pr_release .title_block .tb_img_frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, transparent 30%, rgba(40, 55, 71, 0.72) 100%);
    border-radius: 4px;
    pointer-events: none;
}

.pr_release .title_block .tb_text {
    flex: 1 1 auto;
    padding-bottom: 16px;
}

.pr_release .title_block .tb_label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
    margin-bottom: 16px;
    display: block;
}

.pr_release .title_block .tb_heading {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #CFD5CF;
    margin: 0 0 24px;
}

.pr_release .title_block .tb_sub {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
    max-width: 480px;
}

.pr_release .release_body {
    background: #f5f6f4;
    padding: 80px 24px;
}

.pr_release .release_body .rb_grid {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.pr_release .rb_article .ra_meta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.pr_release .rb_article .ra_meta .meta_tag {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #283747;
    background: #CFD5CF;
    border-radius: 4px;
    padding: 4px 16px;
    font-weight: 700;
}

.pr_release .rb_article .ra_meta .meta_date {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
}

.pr_release .rb_article .ra_lead {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 40px;
    font-weight: 700;
}

.pr_release .rb_article .ra_lead::first-letter {
    font-size: 60px;
    line-height: 1.1;
    color: #283747;
    font-weight: 900;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.pr_release .rb_article .ra_body_p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    margin-bottom: 24px;
}

.pr_release .rb_article .ra_body_p a {
    color: #283747;
    text-decoration-style: wavy;
    text-underline-offset: 3px;
    transition: color 0.55s ease-in-out;
}

.pr_release .rb_article .ra_body_p a:hover {
    color: #929398;
}

.pr_release .rb_article .ra_subhead {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin: 40px 0 16px;
}

.pr_release .rb_article .ra_divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(307deg, #CFD5CF 0%, #283747 100%);
    border-radius: 44px;
    margin: 40px 0;
}

.pr_release .rb_article .ra_steps {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    counter-reset: step_cnt;
}

.pr_release .rb_article .ra_steps li {
    counter-increment: step_cnt;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    position: relative;
}

.pr_release .rb_article .ra_steps li::before {
    content: counter(step_cnt);
    flex: 0 0 32px;
    height: 32px;
    background: #283747;
    color: #CFD5CF;
    font-size: 15px;
    font-weight: 900;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.01em;
    margin-top: 2px;
}

.pr_release .rb_article .ra_steps li::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 48px;
    width: 2px;
    height: calc(100% - 16px);
    background: #CFD5CF;
}

.pr_release .rb_article .ra_steps li:last-child::after {
    display: none;
}

.pr_release .rb_article .ra_steps li .step_txt {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #283747;
}

.pr_release .rb_sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pr_release .rb_sidebar .sb_metrics {
    background: #283747;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
}

.pr_release .rb_sidebar .sb_metrics .sm_heading {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pr_release .rb_sidebar .sb_metrics .sm_row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pr_release .rb_sidebar .sb_metrics .sm_indicators {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 24px 0 8px;
}

.pr_release .rb_sidebar .sb_metrics .sm_dot {
    width: 36px;
    height: 36px;
    border-radius: 44px;
    background: rgba(207, 213, 207, 0.15);
    border: 2px solid rgba(207, 213, 207, 0.3);
    transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out;
    cursor: default;
}

.pr_release .rb_sidebar .sb_metrics .sm_dot.active {
    background: #CFD5CF;
    border-color: #CFD5CF;
}

.pr_release .rb_sidebar .sb_metrics .sm_dot:hover {
    background: rgba(207, 213, 207, 0.4);
    border-color: rgba(207, 213, 207, 0.6);
}

.pr_release .rb_sidebar .sb_metrics .sm_fig {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #CFD5CF;
}

.pr_release .rb_sidebar .sb_metrics .sm_lbl {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
}

.pr_release .rb_sidebar .sb_metrics .sm_note {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
    margin-top: 8px;
}

.pr_release .rb_sidebar .sb_metrics .sm_item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(207, 213, 207, 0.12);
}

.pr_release .rb_sidebar .sb_metrics .sm_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pr_release .rb_sidebar .sb_contact {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.pr_release .rb_sidebar .sb_contact .sc_label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pr_release .rb_sidebar .sb_contact .sc_name {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin-bottom: 8px;
}

.pr_release .rb_sidebar .sb_contact .sc_detail {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #929398;
}

.pr_release .rb_sidebar .sb_contact .sc_detail a {
    color: #283747;
    text-decoration-style: wavy;
    text-underline-offset: 3px;
    transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pr_release .rb_sidebar .sb_contact .sc_detail a:hover {
    color: #929398;
}

.pr_release .rb_sidebar .sb_kbd {
    background: #fff;
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.pr_release .rb_sidebar .sb_kbd .sk_label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.pr_release .rb_sidebar .sb_kbd .sk_row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.pr_release .rb_sidebar .sb_kbd .sk_desc {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #929398;
    margin-left: 4px;
}

.pr_release .rb_article .ra_quote {
    border-top: 2px solid #CFD5CF;
    border-bottom: 2px solid #CFD5CF;
    padding: 24px 0;
    margin: 40px 0;
    text-align: center;
}

.pr_release .rb_article .ra_quote .rq_text {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: #283747;
    font-style: italic;
}

.pr_release .rb_article .ra_quote .rq_author {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #929398;
    margin-top: 8px;
}

.pr_release .bg_anim {
    position: relative;
}

.pr_release .bg_anim::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 44px;
    background: rgba(40, 55, 71, 0.04);
    top: 10%;
    right: -60px;
    animation: shadow_drift 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes shadow_drift {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    100% {
        transform: translateY(40px) rotate(8deg);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .pr_release .title_block .tb_grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .pr_release .title_block .tb_img_frame {
        flex: 0 0 auto;
        width: 100%;
    }

    .pr_release .title_block .tb_img_frame img {
        width: 100%;
        height: 240px;
    }

    .pr_release .title_block .tb_heading {
        font-size: 31px;
    }

    .pr_release .release_body .rb_grid {
        grid-template-columns: 1fr;
    }

    .pr_release .rb_sidebar {
        order: -1;
    }
}

.cont_pg {
    max-width: 100%;
    overflow-x: hidden;
}

.cont_pg .pg_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.cont_pg .title_area {
    padding: 80px 24px 40px;
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
}

.cont_pg .title_area::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 24px;
    right: 24px;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.06;
    border-radius: 4px;
    pointer-events: none;
}

.cont_pg .title_area::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 24px;
    right: 24px;
    bottom: 0;
    border: 1px solid rgba(40, 55, 71, 0.12);
    border-radius: 4px;
    pointer-events: none;
}

.cont_pg .title_deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 4px;
    pointer-events: none;
}

.cont_pg .title_deco svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cont_pg .title_label {
    font-size: 15px;
    letter-spacing: 0.14em;
    color: #929398;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
}

.cont_pg .title_h {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 900;
    margin-bottom: 24px;
    max-width: 700px;
}

.cont_pg .title_h .accented {
    background: linear-gradient(307deg, #283747 30%, #929398 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.cont_pg .title_h .accented::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(307deg, #283747 30%, #929398 100%);
    border-radius: 4px;
}

.cont_pg .title_sub {
    font-size: 18px;
    line-height: 1.5;
    color: #929398;
    max-width: 480px;
    letter-spacing: 0.01em;
}

.cont_pg .double_border_wrap {
    position: relative;
    padding: 4px;
    border: 1px solid rgba(40, 55, 71, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
    display: inline-block;
}

.cont_pg .double_border_wrap::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(40, 55, 71, 0.06);
    border-radius: 4px;
    pointer-events: none;
}

.cont_pg .two_col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 24px;
    max-width: 1170px;
    margin: 0 auto;
    align-items: start;
}

.cont_pg .form_side {
    background: #fff;
    border: 1px solid rgba(40, 55, 71, 0.1);
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    clip-path: inset(0 0 0 0);
    animation: reveal_form 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes reveal_form {
    from {
        clip-path: inset(50% 50% 50% 50%);
        opacity: 0;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.cont_pg .info_side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cont_pg .form_heading {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 900;
    margin-bottom: 8px;
}

.cont_pg .form_desc {
    font-size: 15px;
    line-height: 1.5;
    color: #929398;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.cont_pg .field_group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.cont_pg .field_label {
    font-size: 15px;
    font-weight: 600;
    color: #283747;
    letter-spacing: 0.02em;
}

.cont_pg .field_input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(40, 55, 71, 0.18);
    border-radius: 4px;
    font-size: 15px;
    color: #283747;
    background: #fff;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-sizing: border-box;
    letter-spacing: 0.01em;
}

.cont_pg .field_input::placeholder {
    color: rgba(40, 55, 71, 0.3);
}

.cont_pg .field_input:focus {
    outline: none;
    border-color: #283747;
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.cont_pg .channel_row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.cont_pg .channel_opt {
    position: relative;
}

.cont_pg .channel_opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cont_pg .channel_opt label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(40, 55, 71, 0.18);
    border-radius: 44px;
    font-size: 15px;
    color: #929398;
    cursor: pointer;
    transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out, background 0.2s ease-in-out;
    letter-spacing: 0.01em;
    user-select: none;
}

.cont_pg .channel_opt input[type="radio"]:checked+label {
    border-color: #283747;
    color: #283747;
    background: rgba(40, 55, 71, 0.05);
    font-weight: 600;
}

.cont_pg .channel_opt label:hover {
    border-color: #929398;
    color: #283747;
}

.cont_pg .channel_opt input[type="radio"]:focus+label {
    outline: 2px solid #283747;
    outline-offset: 2px;
}

.cont_pg .channel_dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #CFD5CF;
    flex-shrink: 0;
    transition: background 0.2s ease-in-out;
}

.cont_pg .channel_opt input[type="radio"]:checked+label .channel_dot {
    background: #283747;
}

.cont_pg .field_label_sm {
    font-size: 15px;
    font-weight: 600;
    color: #283747;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    display: block;
}

.cont_pg .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(40, 55, 71, 0.03);
    border-radius: 4px;
    border: 1px solid rgba(40, 55, 71, 0.08);
}

.cont_pg .privacy_row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #283747;
    cursor: pointer;
}

.cont_pg .privacy_text {
    font-size: 15px;
    line-height: 1.5;
    color: #929398;
    letter-spacing: 0.01em;
}

.cont_pg .privacy_text a {
    color: #283747;
    text-decoration-style: wavy;
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

.cont_pg .privacy_text a:hover {
    color: #929398;
}

.cont_pg .submit_btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: linear-gradient(307deg, #283747 30%, #929398 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease-in-out;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    text-transform: uppercase;
}

.cont_pg .submit_btn:hover {
    background: linear-gradient(127deg, #283747 10%, #929398 100%);
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
}

.cont_pg .submit_btn:focus {
    outline: 2px solid #283747;
    outline-offset: 3px;
}

.cont_pg .submit_btn:active {
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.cont_pg .btn_arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
}

.cont_pg .btn_arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 2px;
    background: #fff;
    transform: translateY(-50%);
    border-radius: 4px;
}

.cont_pg .btn_arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}

.cont_pg .info_card {
    background: #283747;
    border-radius: 4px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
    position: relative;
    overflow: hidden;
    animation: reveal_card 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

@keyframes reveal_card {
    from {
        clip-path: inset(50% 50% 50% 50%);
        opacity: 0;
    }

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.cont_pg .info_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.04;
    pointer-events: none;
}

.cont_pg .info_card_h {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #CFD5CF;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cont_pg .contact_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(207, 213, 207, 0.15);
}

.cont_pg .contact_item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cont_pg .contact_item_label {
    font-size: 15px;
    color: rgba(207, 213, 207, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.cont_pg .contact_item_val {
    font-size: 18px;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.cont_pg .contact_item_val a {
    color: #CFD5CF;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    text-decoration-style: wavy;
    text-decoration-line: underline;
    text-underline-offset: 3px;
}

.cont_pg .contact_item_val a:hover {
    color: #fff;
}

.cont_pg .metric_strip {
    background: rgba(40, 55, 71, 0.04);
    border-top: 1px solid rgba(40, 55, 71, 0.08);
    border-bottom: 1px solid rgba(40, 55, 71, 0.08);
    padding: 40px 24px;
}

.cont_pg .metric_inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.cont_pg .metric_big {
    flex-shrink: 0;
    text-align: center;
}

.cont_pg .metric_num {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.01em;
    background: linear-gradient(307deg, #283747 30%, #929398 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.cont_pg .metric_unit {
    font-size: 15px;
    color: #929398;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.cont_pg .metric_divider {
    width: 1px;
    height: 80px;
    background: rgba(40, 55, 71, 0.12);
    flex-shrink: 0;
}

.cont_pg .metric_text {
    flex: 1;
}

.cont_pg .metric_text_h {
    font-size: 18px;
    font-weight: 900;
    color: #283747;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cont_pg .metric_text_p {
    font-size: 15px;
    color: #929398;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.cont_pg .tech_req_strip {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.cont_pg .tech_req_box {
    border: 1px solid rgba(40, 55, 71, 0.12);
    border-radius: 4px;
    padding: 24px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.cont_pg .tech_req_text {
    font-size: 15px;
    color: #929398;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.cont_pg .tech_req_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #283747;
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 0.2s ease-in-out;
    text-decoration-style: wavy;
    text-decoration-line: underline;
    text-underline-offset: 3px;
}

.cont_pg .tech_req_link:hover {
    color: #929398;
}

.cont_pg .kbd_row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.cont_pg .kbd_label {
    font-size: 15px;
    color: #929398;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .cont_pg .title_h {
        font-size: 31px;
    }

    .cont_pg .two_col {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 16px;
    }

    .cont_pg .form_side {
        padding: 24px;
    }

    .cont_pg .info_card {
        padding: 24px;
    }

    .cont_pg .metric_inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cont_pg .metric_divider {
        width: 80px;
        height: 1px;
    }

    .cont_pg .metric_num {
        font-size: 60px;
    }

    .cont_pg .tech_req_box {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 16px;
    }

    .cont_pg .title_area {
        padding: 40px 16px 24px;
    }

    .cont_pg .channel_row {
        gap: 8px;
    }
}

.abt_us {
    max-width: 100%;
    overflow-x: hidden;
}

.abt_us .au_block_1 {
    background: #283747;
    padding: 40px 16px 80px;
    position: relative;
}

.abt_us .au_block_1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at top right, rgba(207, 213, 207, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.abt_us .au_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
}

.abt_us .au_top_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.abt_us .au_top_text {
    flex: 1 1 0;
}

.abt_us .au_bracket_wrap {
    position: relative;
    display: inline-block;
}

.abt_us .au_bracket_wrap::before,
.abt_us .au_bracket_wrap::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(207, 213, 207, 0.45);
    border-style: solid;
}

.abt_us .au_bracket_wrap::before {
    top: -8px;
    left: -12px;
    border-width: 2px 0 0 2px;
}

.abt_us .au_bracket_wrap::after {
    bottom: -8px;
    right: -12px;
    border-width: 0 2px 2px 0;
}

.abt_us .au_eyebrow {
    font-size: 15px;
    color: rgba(207, 213, 207, 0.7);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    line-height: 1.3;
}

.abt_us .au_h1 {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.abt_us .au_h1 .au_num {
    font-size: 72px;
    color: #CFD5CF;
    display: inline-block;
    line-height: 1;
    vertical-align: baseline;
    margin-left: 8px;
}

.abt_us .au_lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(207, 213, 207, 0.88);
    letter-spacing: 0.01em;
    max-width: 520px;
}

.abt_us .au_lead .au_drop {
    font-size: 31px;
    font-weight: 900;
    color: #CFD5CF;
    float: left;
    line-height: 1;
    margin-right: 4px;
    margin-top: 4px;
}

.abt_us .au_img_side {
    flex: 0 0 340px;
    position: relative;
}

.abt_us .au_img_portrait {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
    filter: brightness(0.93) contrast(1.04);
    transition: filter 0.55s ease-in-out;
}

.abt_us .au_img_portrait:hover {
    filter: brightness(1) contrast(1.02);
}

.abt_us .au_light_leak {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    background: linear-gradient(307deg, rgba(207, 213, 207, 0.0) 60%, rgba(207, 213, 207, 0.22) 100%);
    border-radius: 4px;
    pointer-events: none;
}

.abt_us .au_img_corner_br {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 22px;
    height: 22px;
    border-right: 2px solid rgba(207, 213, 207, 0.5);
    border-bottom: 2px solid rgba(207, 213, 207, 0.5);
    pointer-events: none;
}

.abt_us .au_person_label {
    margin-top: 16px;
    font-size: 15px;
    color: rgba(207, 213, 207, 0.65);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.abt_us .au_person_label strong {
    display: block;
    color: #CFD5CF;
    font-weight: 700;
}

.abt_us .au_divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    background: #ffffff;
}

.abt_us .au_divider_band {
    width: 180px;
    height: 4px;
    background: linear-gradient(307deg, #CFD5CF 0%, #929398 100%);
    border-radius: 44px;
}

.abt_us .au_block_2 {
    background: #ffffff;
    padding: 80px 16px 40px;
}

.abt_us .au_grid_info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.abt_us .au_col_left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abt_us .au_col_center {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}

.abt_us .au_col_right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abt_us .au_h2 {
    font-size: 31px;
    font-weight: 900;
    line-height: 1.1;
    color: #283747;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.abt_us .au_body {
    font-size: 15px;
    line-height: 1.7;
    color: #283747;
    letter-spacing: 0.01em;
}

.abt_us .au_body .au_drop {
    font-size: 31px;
    font-weight: 900;
    color: #283747;
    float: left;
    line-height: 1;
    margin-right: 4px;
    margin-top: 4px;
}

.abt_us .au_img_card {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    position: relative;
}

.abt_us .au_img_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt_us .au_img_card:hover img {
    transform: scale(1.03);
}

.abt_us .au_img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(307deg, rgba(40, 55, 71, 0.55) 0%, rgba(40, 55, 71, 0.08) 80%);
    pointer-events: none;
}

.abt_us .au_step_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.abt_us .au_step_list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    position: relative;
    transition: background 0.45s ease-in-out;
}

.abt_us .au_step_list li::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 48px;
    width: 2px;
    height: calc(100% - 32px);
    background: #CFD5CF;
}

.abt_us .au_step_list li:last-child::after {
    display: none;
}

.abt_us .au_step_num {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 44px;
    background: #283747;
    color: #CFD5CF;
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.01em;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt_us .au_step_list li:hover .au_step_num {
    background: #929398;
    color: #ffffff;
}

.abt_us .au_step_text {
    font-size: 15px;
    line-height: 1.5;
    color: #283747;
    letter-spacing: 0.01em;
}

.abt_us .au_step_text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}

.abt_us .au_accent_card {
    background: linear-gradient(307deg, rgba(40, 55, 71, 0.06) 0%, rgba(207, 213, 207, 0.35) 100%);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.abt_us .au_accent_card .au_h4 {
    font-size: 18px;
    font-weight: 900;
    color: #283747;
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.abt_us .au_accent_card .au_body {
    font-size: 15px;
    line-height: 1.7;
}

.abt_us .au_link_wavy {
    color: #283747;
    font-weight: 700;
    text-decoration: underline wavy #929398;
    text-underline-offset: 3px;
    letter-spacing: 0.01em;
    transition: color 0.45s ease-in-out, text-decoration-color 0.45s ease-in-out;
}

.abt_us .au_link_wavy:hover {
    color: #929398;
    text-decoration-color: #283747;
}

.abt_us .au_contact_strip {
    margin-top: 40px;
    padding: 24px;
    background: #283747;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.abt_us .au_contact_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abt_us .au_contact_label {
    font-size: 15px;
    color: rgba(207, 213, 207, 0.6);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.abt_us .au_contact_val {
    font-size: 15px;
    color: #CFD5CF;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.5;
}

.abt_us .au_contact_val a {
    color: #CFD5CF;
    text-decoration: underline wavy rgba(207, 213, 207, 0.4);
    text-underline-offset: 3px;
    transition: color 0.5s ease-in-out;
}

.abt_us .au_contact_val a:hover {
    color: #ffffff;
}

.abt_us .au_kbd_row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    align-items: center;
}

.abt_us .au_kbd_label {
    font-size: 15px;
    color: rgba(207, 213, 207, 0.65);
    letter-spacing: 0.01em;
}

.abt_us .au_cascade_child {
    opacity: 0;
    transform: translateY(18px);
    animation: au_reveal 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.abt_us .au_cascade_child:nth-child(1) {
    animation-delay: 0.08s;
}

.abt_us .au_cascade_child:nth-child(2) {
    animation-delay: 0.2s;
}

.abt_us .au_cascade_child:nth-child(3) {
    animation-delay: 0.33s;
}

.abt_us .au_cascade_child:nth-child(4) {
    animation-delay: 0.46s;
}

@keyframes au_reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.abt_us .au_spiral_deco {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    opacity: 0.08;
    pointer-events: none;
}

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

@media (max-width: 900px) {
    .abt_us .au_top_row {
        flex-direction: column;
        gap: 40px;
    }

    .abt_us .au_img_side {
        flex: none;
        width: 100%;
        max-width: 320px;
    }

    .abt_us .au_h1 {
        font-size: 31px;
    }

    .abt_us .au_h1 .au_num {
        font-size: 60px;
    }

    .abt_us .au_grid_info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .abt_us .au_col_center {
        padding-top: 0;
    }

    .abt_us .au_contact_strip {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .abt_us .au_block_1 {
        padding: 40px 8px 80px;
    }

    .abt_us .au_block_2 {
        padding: 40px 8px 24px;
    }

    .abt_us .au_inner {
        padding: 0 8px;
    }
}

.success_page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #ffffff;
}

.success_page .success_card {
    max-width: 1170px;
    width: 100%;
    background: linear-gradient(307deg, #ffffff 70%, #CFD5CF 100%);
    border-radius: 4px;
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.success_page .success_icon_wrap {
    width: 64px;
    height: 64px;
    border-radius: 44px;
    background: linear-gradient(307deg, #283747 60%, #929398 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
}

.success_page .success_icon_wrap svg {
    display: block;
}

.success_page .success_heading {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 900;
    color: #283747;
    margin: 0;
}

.success_page .success_heading span {
    background: linear-gradient(307deg, #283747 55%, #929398 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success_page .success_body {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.015em;
    color: #283747;
    max-width: 560px;
    margin: 0;
}

.success_page .success_divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(307deg, #CFD5CF 0%, transparent 100%);
    border: none;
}

.success_page .success_meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.success_page .success_meta_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.success_page .success_meta_label {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #929398;
    margin: 0;
}

.success_page .success_meta_value {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #283747;
    font-weight: 700;
    margin: 0;
}

.success_page .success_actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.success_page .btn_primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 4px;
    background: linear-gradient(307deg, #283747 60%, #929398 100%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 22px 1px rgba(40, 55, 71, 0.08);
    transition: box-shadow 0.45s ease-in-out, background-position 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: 200% 200%;
    background-position: 0% 50%;
}

.success_page .btn_primary:hover,
.success_page .btn_primary:focus {
    box-shadow: 0 12px 60px 1px rgba(40, 55, 71, 0.11);
    background-position: 100% 50%;
    outline: none;
}

.success_page .btn_primary:active {
    box-shadow: 0 2px 4px 1px rgba(40, 55, 71, 0.07);
}

.success_page .btn_primary svg {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success_page .btn_primary:hover svg,
.success_page .btn_primary:focus svg {
    transform: translateX(4px);
}

.success_page .btn_secondary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 4px;
    background: transparent;
    color: #283747;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #CFD5CF;
    cursor: pointer;
    transition: border-color 0.45s ease-in-out, color 0.2s ease-in-out;
}

.success_page .btn_secondary:hover,
.success_page .btn_secondary:focus {
    border-color: #929398;
    color: #283747;
    outline: none;
}

@media (max-width: 768px) {
    .success_page .success_card {
        padding: 40px 24px;
        gap: 24px;
    }

    .success_page .success_heading {
        font-size: 31px;
        line-height: 1.3;
    }

    .success_page .success_actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .success_page .btn_primary,
    .success_page .btn_secondary {
        justify-content: center;
    }
}