* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: 'Karla', sans-serif;
}

.top-strip {
    background: #4B6CBE;
    border-bottom: 1px solid rgba(75, 108, 190, 0.3);
}

.top-strip-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 6px 0;
}

.primary-nav a {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #F1F0F5;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease-out, color 0.15s ease-out;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.primary-nav a:hover {
    background: rgba(241, 240, 245, 0.15);
    color: #ffffff;
}

.primary-nav a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 211, 227, 0.6);
}

.contact-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 6px 0;
}

.contact-strip a {
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    color: #C0D3E3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    transition: color 0.2s ease-out;
    white-space: nowrap;
}

.contact-strip a:hover {
    color: #ffffff;
}

.contact-strip a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 211, 227, 0.5);
    border-radius: 4px;
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: currentColor;
}

.brand-block {
    background: linear-gradient(160deg, #F1F0F5 0%, #C0D3E3 60%, rgba(75, 108, 190, 0.12) 100%);
    border-bottom: 2px solid rgba(75, 108, 190, 0.18);
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.brand-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: inset 0 1px 3px 1px rgba(75, 108, 190, 0.1), 0 1px 3px 1px rgba(75, 108, 190, 0.05);
    border: 1px solid rgba(75, 108, 190, 0.2);
    min-width: 90px;
}

.logo-cell img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: block;
}

.brand-text-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.brand-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b2a5e;
    letter-spacing: 0;
}

.brand-descriptor {
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #3a4f7a;
}

.brand-accent-line {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, #4B6CBE 0%, #C0D3E3 100%);
    border-radius: 4px;
    margin-top: 6px;
}

.site-footer {
    background: #1b2a5e;
    box-shadow: 0 -6px 18px 1px rgba(75, 108, 190, 0.08);
    position: relative;
    overflow: hidden;
}

.footer-neo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(75, 108, 190, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer-columns-deck {
    max-width: 1024px;
    margin: 0 auto;
    padding: 72px 24px 36px;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 0 0 auto;
    min-width: 200px;
}

.footer-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 240, 245, 0.08);
    border: 1px solid rgba(192, 211, 227, 0.2);
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: inset 0 2px 4px rgba(75, 108, 190, 0.15), 0 1px 3px 1px rgba(75, 108, 190, 0.05);
    width: fit-content;
}

.footer-logo-cell img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.footer-company-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #F1F0F5;
    line-height: 1.2;
}

.footer-address-cell {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-address-cell address {
    font-style: normal;
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    line-height: 1.9;
    color: #C0D3E3;
}

.footer-contact-link {
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    color: #C0D3E3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease-out;
    min-height: 44px;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-contact-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 211, 227, 0.4);
    border-radius: 4px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 160px;
}

.footer-nav-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #4B6CBE;
    text-transform: uppercase;
    letter-spacing: 0;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(75, 108, 190, 0.3);
}

.footer-nav-col a {
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    color: #C0D3E3;
    text-decoration: none;
    padding: 6px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.18s ease-out;
}

.footer-nav-col a:hover {
    color: #ffffff;
}

.footer-nav-col a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 211, 227, 0.4);
    border-radius: 4px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(192, 211, 227, 0.12);
    background: rgba(0, 0, 0, 0.15);
    position: relative;
}

.footer-bottom-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    color: rgba(192, 211, 227, 0.6);
    line-height: 1.6;
}

.footer-neo-badge {
    background: rgba(75, 108, 190, 0.12);
    border: 1px solid rgba(75, 108, 190, 0.25);
    border-radius: 20px;
    padding: 6px 12px;
    box-shadow: inset 0 1px 3px rgba(75, 108, 190, 0.1), 0 1px 3px 1px rgba(75, 108, 190, 0.05);
}

.footer-neo-badge span {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    color: #C0D3E3;
}

.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: #1b2a5e;
    border-top: 2px solid rgba(75, 108, 190, 0.4);
    box-shadow: 0 -6px 18px 1px rgba(75, 108, 190, 0.12);
}

.cookie-bar-pod {
    max-width: 1024px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 240px;
}

.cookie-svg-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #4B6CBE;
}

.cookie-text {
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    line-height: 1.9;
    color: #C0D3E3;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    min-height: 44px;
    transition: background-color 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out;
}

.cookie-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 211, 227, 0.5);
}

.cookie-btn.accept {
    background: transparent;
    color: #C0D3E3;
    border: 2px solid #4B6CBE;
}

.cookie-btn.accept:hover {
    background: rgba(75, 108, 190, 0.2);
    color: #ffffff;
    border-color: #C0D3E3;
}

.cookie-btn.decline {
    background: transparent;
    color: #C0D3E3;
    border: 2px solid rgba(192, 211, 227, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(192, 211, 227, 0.08);
    color: #ffffff;
    border-color: rgba(192, 211, 227, 0.6);
}

.legal-data {
    max-width: 1024px;
    margin: 0 auto;
    padding: 72px 36px;
    color: #2a2d3e;
    background: #ffffff;
}

.legal-data h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #4B6CBE;
    margin-bottom: 36px;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #C0D3E3;
}

.legal-data h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #2a2d3e;
    margin-top: 72px;
    margin-bottom: 24px;
}

.legal-data h3 {
    font-size: 27px;
    line-height: 1.6;
    color: #3a4a7a;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-data h4 {
    font-size: 20px;
    line-height: 1.6;
    color: #4B6CBE;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-data h5 {
    font-size: 20px;
    line-height: 1.6;
    color: #2a2d3e;
    margin-top: 24px;
    margin-bottom: 6px;
}

.legal-data h6 {
    font-size: 13px;
    line-height: 1.6;
    color: #4B6CBE;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 24px;
    margin-bottom: 6px;
}

.legal-data p {
    font-size: 20px;
    line-height: 1.9;
    color: #2a2d3e;
    margin-top: 0;
    margin-bottom: 24px;
}

.legal-data ul,
.legal-data ol {
    font-size: 20px;
    line-height: 1.9;
    color: #2a2d3e;
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 36px;
}

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

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

.legal-data li {
    margin-bottom: 6px;
    padding-left: 6px;
}

.legal-data li::marker {
    color: #4B6CBE;
}

.legal-data ul ul,
.legal-data ol ol,
.legal-data ul ol,
.legal-data ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
}

.legal-data a {
    color: #4B6CBE;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease-out, text-decoration-color 0.15s ease-out;
}

.legal-data a:hover {
    color: #3a4a7a;
    text-decoration-color: #C0D3E3;
}

.legal-data a:visited {
    color: #6a5aaa;
}

.legal-data div {
    margin-bottom: 24px;
}

.legal-data div p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-data {
        padding: 36px 24px;
    }

    .legal-data h1 {
        font-size: 37px;
    }

    .legal-data h2 {
        font-size: 27px;
        margin-top: 36px;
    }

    .legal-data h3 {
        font-size: 20px;
    }

    .legal-data p,
    .legal-data ul,
    .legal-data ol {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .legal-data {
        padding: 24px 12px;
    }

    .legal-data h1 {
        font-size: 27px;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .legal-data h2 {
        font-size: 20px;
        margin-top: 24px;
    }

    .legal-data p,
    .legal-data ul,
    .legal-data ol {
        font-size: 13px;
        line-height: 1.9;
    }

    .legal-data ul,
    .legal-data ol {
        padding-left: 24px;
    }
}

.lp-root {
    background: #ffffff;
    color: #1b1e2b;
    overflow-x: clip;
}

.lp-root .schema-data {
    display: none;
}

.lp-root .pg-band {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-root .diamond-sep {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4B6CBE;
    transform: rotate(45deg);
    margin: 0 12px;
    vertical-align: middle;
    flex-shrink: 0;
}

.lp-root .partial-rule {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #4B6CBE 50%, transparent 50%);
    margin: 24px 0;
}

.lp-root .partial-rule.right {
    margin-left: auto;
}

@keyframes lp-diag-in {
    from {
        opacity: 0;
        transform: translate(-28px, 28px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes lp-diag-in-r {
    from {
        opacity: 0;
        transform: translate(28px, -28px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes lp-tone-cycle {

    0%,
    100% {
        background-color: #F1F0F5;
    }

    50% {
        background-color: #C0D3E3;
    }
}

.lp-root .title-strip {
    padding: 36px 0;
    position: relative;
}

.lp-root .title-strip .noise-layer {
    position: absolute;
    inset: 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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.lp-root .title-strip .ts-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.lp-root .title-strip .ts-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: lp-diag-in 0.45s ease-out both;
}

.lp-root .title-strip .ts-mosaic {
    flex: 0 0 340px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    animation: lp-diag-in-r 0.4s ease-out 0.1s both;
}

.lp-root .title-strip .ts-mosaic .img-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.lp-root .title-strip .ts-mosaic .img-main img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.lp-root .title-strip .ts-mosaic .img-main .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(75, 108, 190, 0.28) 100%);
    pointer-events: none;
}

.lp-root .title-strip .ts-mosaic .stat-tile {
    background: #F1F0F5;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-root .title-strip .ts-mosaic .stat-tile .st-num {
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
    color: #4B6CBE;
}

.lp-root .title-strip .ts-mosaic .stat-tile .st-label {
    font-size: 13px;
    line-height: 1.6;
    color: #3a4060;
}

.lp-root .title-strip .ts-text .eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
}

.lp-root .title-strip .ts-text .eyebrow span {
    font-size: 13px;
    line-height: 1.6;
    color: #4B6CBE;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-root .title-strip .ts-text .h-primary {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1e2b;
    margin: 0 0 12px 0;
}

.lp-root .title-strip .ts-text .h-primary span {
    display: block;
}

.lp-root .title-strip .ts-text .h-secondary {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
    color: #3a4060;
    margin: 0 0 24px 0;
}

.lp-root .title-strip .ts-text .desc {
    font-size: 13px;
    line-height: 1.9;
    color: #3a4060;
    max-width: 440px;
}

.lp-root .how-strip {
    padding: 72px 0;
    background: #F1F0F5;
    position: relative;
}

.lp-root .how-strip .fish-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.lp-root .how-strip .fish-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 18px 18px, transparent 14px, rgba(75, 108, 190, 0.07) 14px, rgba(75, 108, 190, 0.07) 16px, transparent 16px),
        radial-gradient(circle at 36px 0px, transparent 14px, rgba(75, 108, 190, 0.07) 14px, rgba(75, 108, 190, 0.07) 16px, transparent 16px);
    background-size: 36px 18px;
}

.lp-root .how-strip .hs-inner {
    position: relative;
    z-index: 1;
}

.lp-root .how-strip .hs-head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
    margin-bottom: 36px;
    animation: lp-diag-in 0.35s ease-out both;
}

.lp-root .how-strip .hs-head .hs-label {
    font-size: 13px;
    line-height: 1.6;
    color: #4B6CBE;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 6px;
    flex-shrink: 0;
}

.lp-root .how-strip .hs-head .hs-title {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1e2b;
    margin: 0;
}

.lp-root .how-strip .hs-head .hs-title span {
    display: block;
}

.lp-root .how-strip .steps-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.lp-root .how-strip .step-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05), 0 6px 18px 1px rgba(75, 108, 190, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: lp-diag-in 0.4s ease-out both;
}

.lp-root .how-strip .step-card:nth-child(2) {
    animation-delay: 0.08s;
}

.lp-root .how-strip .step-card:nth-child(3) {
    animation-delay: 0.16s;
}

.lp-root .how-strip .step-card .sc-num {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 800;
    color: #C0D3E3;
}

.lp-root .how-strip .step-card .sc-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1e2b;
    margin: 0;
}

.lp-root .how-strip .step-card .sc-body {
    font-size: 13px;
    line-height: 1.9;
    color: #3a4060;
}

.lp-root .how-strip .step-card .sc-body strong {
    color: #4B6CBE;
    font-weight: 600;
}

.lp-root .how-strip .indicators-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-root .how-strip .ind-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 36px;
    padding: 12px 24px;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
    animation: lp-tone-cycle 6s ease-in-out infinite;
}

.lp-root .how-strip .ind-item:nth-child(2) {
    animation-delay: 1.5s;
}

.lp-root .how-strip .ind-item:nth-child(3) {
    animation-delay: 3s;
}

.lp-root .how-strip .ind-item:nth-child(4) {
    animation-delay: 4.5s;
}

.lp-root .how-strip .ind-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B6CBE 50%, #C0D3E3 50%);
    flex-shrink: 0;
}

.lp-root .how-strip .ind-circle.alt {
    background: linear-gradient(135deg, #C0D3E3 50%, #4B6CBE 50%);
}

.lp-root .how-strip .ind-circle.mid {
    background: linear-gradient(135deg, #4B6CBE 50%, #F1F0F5 50%);
}

.lp-root .how-strip .ind-circle.full {
    background: #4B6CBE;
}

.lp-root .how-strip .ind-text {
    font-size: 13px;
    line-height: 1.6;
    color: #1b1e2b;
    font-weight: 600;
}

.lp-root .detail-strip {
    padding: 72px 0;
    background: #ffffff;
}

.lp-root .detail-strip .ds-inner {
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: flex-start;
}

.lp-root .detail-strip .ds-left {
    flex: 0 0 260px;
    position: relative;
    animation: lp-diag-in-r 0.4s ease-out both;
}

.lp-root .detail-strip .ds-left .polygon-deco {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background: linear-gradient(155deg, #C0D3E3 50%, transparent 50%);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 4px;
}

.lp-root .detail-strip .ds-left .metric-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-root .detail-strip .ds-left .metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-root .detail-strip .ds-left .metric-item .mi-val {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 800;
    color: #4B6CBE;
}

.lp-root .detail-strip .ds-left .metric-item .mi-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #3a4060;
}

.lp-root .detail-strip .ds-left .metric-sep {
    width: 60px;
    height: 1px;
    background: #C0D3E3;
    margin: 6px 0;
}

.lp-root .detail-strip .ds-right {
    flex: 1 1 0;
    animation: lp-diag-in 0.45s ease-out 0.1s both;
}

.lp-root .detail-strip .ds-right .dr-tag {
    font-size: 13px;
    line-height: 1.6;
    color: #4B6CBE;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.lp-root .detail-strip .ds-right .dr-heading {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1e2b;
    margin: 0 0 24px 0;
}

.lp-root .detail-strip .ds-right .dr-heading span {
    display: block;
}

.lp-root .detail-strip .ds-right .para-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-root .detail-strip .ds-right .para-item .pi-lead {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    color: #1b1e2b;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lp-root .detail-strip .ds-right .para-item .pi-lead .accent-word {
    color: #4B6CBE;
}

.lp-root .detail-strip .ds-right .para-item .pi-body {
    font-size: 13px;
    line-height: 1.9;
    color: #3a4060;
}

.lp-root .detail-strip .ds-right .dr-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding: 12px 24px;
    background: #4B6CBE;
    color: #ffffff;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.12);
    transition: background-color 0.2s ease-out, box-shadow 0.25s ease-out;
}

.lp-root .detail-strip .ds-right .dr-link:hover {
    background: #3a5aad;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.18);
}

.lp-root .detail-strip .ds-right .dr-link:focus-visible {
    outline: 2px solid #4B6CBE;
    outline-offset: 3px;
}

.lp-root .detail-strip .ds-right .dr-link svg {
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .lp-root .title-strip .ts-inner {
        flex-direction: column;
    }

    .lp-root .title-strip .ts-mosaic {
        flex: 0 0 auto;
        width: 100%;
    }

    .lp-root .title-strip .ts-text .h-primary {
        font-size: 37px;
    }

    .lp-root .how-strip .steps-row {
        grid-template-columns: 1fr;
    }

    .lp-root .detail-strip .ds-inner {
        flex-direction: column;
        gap: 36px;
    }

    .lp-root .detail-strip .ds-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .lp-root .how-strip .hs-head {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 540px) {
    .lp-root .title-strip .ts-text .h-primary {
        font-size: 27px;
    }

    .lp-root .how-strip .indicators-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-root .detail-strip .ds-right .dr-heading {
        font-size: 27px;
    }
}

.ptl {
    background: #ffffff;
    color: #1b2340;
    overflow-x: clip;
}

.ptl .pg-bound {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

.ptl .t1 {
    font-size: 52px;
    line-height: 1.2;
}

.ptl .t2 {
    font-size: 37px;
    line-height: 1.2;
}

.ptl .t3 {
    font-size: 27px;
    line-height: 1.6;
}

.ptl .t4 {
    font-size: 20px;
    line-height: 1.6;
}

.ptl .t5 {
    font-size: 13px;
    line-height: 1.9;
}

.ptl .accent-word {
    color: #4B6CBE;
}

.ptl .btn-primary {
    display: inline-block;
    padding: 12px 36px;
    background: #4B6CBE;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.ptl .btn-primary:hover {
    background: #3a57a8;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.12);
}

.ptl .btn-primary:active {
    transform: scale(0.98);
}

.ptl .btn-primary.shake {
    animation: btn-shake 0.35s ease-out;
}

@keyframes btn-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.ptl .btn-ghost {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #4B6CBE;
    border: 2px solid #4B6CBE;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease-out, color 0.2s ease-out;
}

.ptl .btn-ghost:hover {
    background: #4B6CBE;
    color: #ffffff;
}

.ptl .lead-label {
    font-size: 13px;
    font-weight: 700;
    color: #4B6CBE;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.ptl .para-text {
    font-size: 20px;
    line-height: 1.6;
    color: #2e3d5c;
}

.ptl .para-text .fw {
    font-weight: 700;
    color: #4B6CBE;
    text-transform: uppercase;
}

.ptl .para-sm {
    font-size: 13px;
    line-height: 1.9;
    color: #3d4f72;
}

.ptl .divider-zigzag {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.ptl .divider-zigzag svg {
    display: block;
    width: 100%;
}

.ptl .noise-bg {
    position: relative;
}

.ptl .noise-bg::before {
    content: '';
    position: absolute;
    inset: 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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

.ptl .noise-bg>* {
    position: relative;
    z-index: 1;
}

@keyframes grad-breathe {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.ptl .title-block {
    padding: 72px 0;
    background: #F1F0F5;
    position: relative;
}

.ptl .title-block .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 36px;
}

.ptl .title-block .tb-img-col {
    flex: 0 0 340px;
    position: relative;
}

.ptl .title-block .tb-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.12);
}

.ptl .title-block .tb-img-frame img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    display: block;
}

.ptl .title-block .tb-img-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, #1b2340 50%, #1b2340 100%);
    pointer-events: none;
}

.ptl .title-block .corner-br {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-bottom: 3px solid #4B6CBE;
    border-right: 3px solid #4B6CBE;
    border-radius: 0 0 4px 0;
    pointer-events: none;
}

.ptl .title-block .corner-tl {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 36px;
    height: 36px;
    border-top: 3px solid #4B6CBE;
    border-left: 3px solid #4B6CBE;
    border-radius: 4px 0 0 0;
    pointer-events: none;
}

.ptl .title-block .tb-text-col {
    flex: 1;
    padding-top: 24px;
}

.ptl .title-block .problem-line {
    font-size: 13px;
    line-height: 1.9;
    color: #3d4f72;
    background: #ffffff;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
}

.ptl .title-block .tb-heading {
    font-size: 52px;
    line-height: 1.2;
    color: #1b2340;
    margin-bottom: 24px;
}

.ptl .title-block .tb-sub {
    font-size: 20px;
    line-height: 1.6;
    color: #2e3d5c;
    margin-bottom: 36px;
}

.ptl .title-block .tb-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 720px) {
    .ptl .title-block .tb-inner {
        flex-direction: column;
    }

    .ptl .title-block .tb-img-col {
        flex: none;
        width: 100%;
    }

    .ptl .title-block .tb-img-frame img {
        width: 100%;
        height: 260px;
    }

    .ptl .title-block .tb-heading {
        font-size: 37px;
    }
}

.ptl .adapt-block {
    padding: 72px 0 0;
    background: #ffffff;
}

.ptl .adapt-block .adapt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.ptl .adapt-block .adapt-text-col {
    padding-right: 24px;
}

.ptl .adapt-block .adapt-heading {
    font-size: 37px;
    line-height: 1.2;
    color: #1b2340;
    margin-bottom: 24px;
}

.ptl .adapt-block .adapt-heading span {
    display: block;
}

.ptl .adapt-block .adapt-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.ptl .adapt-block .adapt-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease-out;
}

.ptl .adapt-block .adapt-img-wrap:hover img {
    transform: scale(1.03);
}

.ptl .adapt-block .milestone-track {
    margin-top: 36px;
    display: flex;
    flex-direction: row;
    gap: 0;
    position: relative;
}

.ptl .adapt-block .milestone-track::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, #4B6CBE 0%, #4B6CBE 50%, #C0D3E3 50%, #C0D3E3 100%);
    z-index: 0;
}

.ptl .adapt-block .ms-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.ptl .adapt-block .ms-dot {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background: #4B6CBE;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.ptl .adapt-block .ms-dot svg {
    width: 16px;
    height: 16px;
}

.ptl .adapt-block .ms-item.future .ms-dot {
    background: #C0D3E3;
}

.ptl .adapt-block .ms-date {
    font-size: 13px;
    line-height: 1.9;
    color: #4B6CBE;
    font-weight: 700;
}

.ptl .adapt-block .ms-label {
    font-size: 13px;
    line-height: 1.9;
    color: #3d4f72;
    text-align: center;
}

.ptl .adapt-block .adapt-zigzag {
    margin-top: 72px;
}

@media (max-width: 720px) {
    .ptl .adapt-block .adapt-grid {
        grid-template-columns: 1fr;
    }

    .ptl .adapt-block .adapt-text-col {
        padding-right: 0;
    }

    .ptl .adapt-block .milestone-track {
        flex-direction: column;
        gap: 12px;
    }

    .ptl .adapt-block .milestone-track::before {
        display: none;
    }

    .ptl .adapt-block .ms-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
}

.ptl .example-block {
    padding: 72px 0;
    background: #1b2340;
    background-size: 200% 200%;
    animation: grad-breathe 8s ease-in-out infinite;
    position: relative;
}

.ptl .example-block .ex-inner {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
}

.ptl .example-block .ex-text {
    flex: 1;
}

.ptl .example-block .ex-heading {
    font-size: 37px;
    line-height: 1.2;
    color: #C0D3E3;
    margin-bottom: 24px;
}

.ptl .example-block .ex-heading span {
    display: block;
}

.ptl .example-block .ex-heading .aw {
    color: #4B6CBE;
}

.ptl .example-block .ex-para {
    font-size: 20px;
    line-height: 1.6;
    color: #C0D3E3;
    margin-bottom: 24px;
}

.ptl .example-block .ex-para .fw {
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.ptl .example-block .ex-para-sm {
    font-size: 13px;
    line-height: 1.9;
    color: #8fa8c8;
    margin-bottom: 24px;
}

.ptl .example-block .ex-img-col {
    flex: 0 0 300px;
}

.ptl .example-block .ex-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.12);
}

.ptl .example-block .ex-img-wrap img {
    width: 300px;
    height: 380px;
    object-fit: cover;
    display: block;
}

.ptl .example-block .detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.ptl .example-block .detail-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(75, 108, 190, 0.12);
    border-radius: 12px;
}

.ptl .example-block .detail-icon {
    flex: 0 0 32px;
    height: 32px;
    background: #4B6CBE;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ptl .example-block .detail-icon svg {
    width: 16px;
    height: 16px;
}

.ptl .example-block .detail-text {
    font-size: 13px;
    line-height: 1.9;
    color: #C0D3E3;
}

@media (max-width: 720px) {
    .ptl .example-block .ex-inner {
        flex-direction: column;
    }

    .ptl .example-block .ex-img-col {
        flex: none;
        width: 100%;
    }

    .ptl .example-block .ex-img-wrap img {
        width: 100%;
        height: 240px;
    }
}

.ptl .fit-block {
    padding: 72px 0;
    position: relative;
}

.ptl .fit-block .noise-overlay {
    position: absolute;
    inset: 0;
    background: #F1F0F5;
    z-index: 0;
}

.ptl .fit-block .noise-overlay::before {
    content: '';
    position: absolute;
    inset: 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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.ptl .fit-block .fit-content {
    position: relative;
    z-index: 1;
}

.ptl .fit-block .fit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.ptl .fit-block .fit-heading {
    font-size: 37px;
    line-height: 1.2;
    color: #1b2340;
    margin-bottom: 24px;
}

.ptl .fit-block .fit-heading span {
    display: block;
}

.ptl .fit-block .fit-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.12);
    margin-top: 36px;
}

.ptl .fit-block .fit-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.ptl .fit-block .fit-img-wrap:hover img {
    transform: scale(1.025);
}

.ptl .fit-block .fit-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ptl .fit-block .fit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
    transition: box-shadow 0.2s ease-out;
}

.ptl .fit-block .fit-card:hover {
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.ptl .fit-block .fit-card-label {
    font-size: 13px;
    font-weight: 700;
    color: #4B6CBE;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ptl .fit-block .fit-card-text {
    font-size: 13px;
    line-height: 1.9;
    color: #3d4f72;
}

.ptl .fit-block .fit-note {
    margin-top: 36px;
    padding: 24px;
    background: #4B6CBE;
    border-radius: 20px;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.12);
}

.ptl .fit-block .fit-note-text {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 720px) {
    .ptl .fit-block .fit-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.ctus {
    background: #F1F0F5;
    min-height: 100vh;
    position: relative;
}

.ctus .lead-strip {
    background: #fff;
    padding: 72px 24px 36px;
    position: relative;
    overflow: hidden;
}

.ctus .lead-strip::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #4B6CBE;
    background: linear-gradient(90deg, #4B6CBE 50%, #F1F0F5 50%);
}

.ctus .lead-strip-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: end;
}

.ctus .lead-desc {
    font-size: 13px;
    color: #4B6CBE;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ctus .lead-heading {
    font-size: 52px;
    line-height: 1.2;
    color: #1b2340;
    margin: 0 0 24px;
    font-weight: 800;
}

.ctus .lead-heading span {
    display: block;
}

.ctus .lead-sub {
    font-size: 20px;
    line-height: 1.6;
    color: #3a4a6b;
    margin: 0;
}

.ctus .contact-facts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus .fact-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.ctus .fact-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: #F1F0F5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
}

.ctus .fact-icon svg {
    width: 18px;
    height: 18px;
    stroke: #4B6CBE;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ctus .fact-label {
    font-size: 13px;
    color: #7a8aaa;
    line-height: 1.2;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ctus .fact-value {
    font-size: 13px;
    color: #1b2340;
    line-height: 1.6;
    font-weight: 500;
}

.ctus .fact-value a {
    color: #4B6CBE;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 108, 190, 0.3);
    transition: border-color 0.2s ease-out, color 0.15s ease-out;
}

.ctus .fact-value a:hover {
    color: #1b2340;
    border-bottom-color: #1b2340;
}

.ctus .arrows-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
    background: #F1F0F5;
}

.ctus .arr {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid rgba(75, 108, 190, 0.25);
}

.ctus .arr.strong {
    border-left-color: #4B6CBE;
}

.ctus .form-area {
    background: #F1F0F5;
    padding: 72px 24px;
    position: relative;
}

.ctus .form-area-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: start;
}

.ctus .form-context {
    position: sticky;
    top: 24px;
}

.ctus .form-context-tag {
    font-size: 13px;
    color: #4B6CBE;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ctus .form-context-heading {
    font-size: 37px;
    line-height: 1.2;
    color: #1b2340;
    font-weight: 800;
    margin: 0 0 24px;
}

.ctus .form-context-heading span {
    display: block;
}

.ctus .form-context-body {
    font-size: 13px;
    line-height: 1.9;
    color: #3a4a6b;
    margin: 0 0 24px;
}

.ctus .form-context-body strong {
    color: #4B6CBE;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 6px;
}

.ctus .hours-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.ctus .hour-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 13px;
    color: #3a4a6b;
    line-height: 1.6;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(75, 108, 190, 0.06);
}

.ctus .hour-row.active {
    background: rgba(75, 108, 190, 0.14);
    color: #1b2340;
    font-weight: 600;
}

.ctus .hour-day {
    font-weight: 500;
}

.ctus .hour-time {
    color: #4B6CBE;
}

.ctus .contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
    position: relative;
}

.ctus .contact-form::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 36px;
    right: 36px;
    height: 3px;
    background: #4B6CBE;
    border-radius: 0 0 4px 4px;
}

.ctus .field-group {
    margin-bottom: 24px;
}

.ctus .field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1b2340;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ctus .field-label .req {
    color: #4B6CBE;
    margin-left: 2px;
}

.ctus .text-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #C0D3E3;
    border-radius: 4px;
    font-size: 13px;
    color: #1b2340;
    background: #fff;
    line-height: 1.6;
    box-shadow: inset 0 2px 4px rgba(75, 108, 190, 0.05);
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
    box-sizing: border-box;
}

.ctus .text-input::placeholder {
    color: #9aaac0;
}

.ctus .text-input:focus {
    outline: none;
    border-color: #4B6CBE;
    box-shadow: inset 0 2px 4px rgba(75, 108, 190, 0.08), 0 0 0 3px rgba(75, 108, 190, 0.12);
}

.ctus .select-wrap {
    position: relative;
    display: block;
}

.ctus .select-input {
    display: block;
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1.5px solid #C0D3E3;
    border-radius: 4px;
    font-size: 13px;
    color: #1b2340;
    background: #fff;
    line-height: 1.6;
    box-shadow: inset 0 2px 4px rgba(75, 108, 190, 0.05);
    transition: border-color 0.2s ease-out;
    appearance: none;
    box-sizing: border-box;
    cursor: pointer;
}

.ctus .select-input:focus {
    outline: none;
    border-color: #4B6CBE;
    box-shadow: inset 0 2px 4px rgba(75, 108, 190, 0.08), 0 0 0 3px rgba(75, 108, 190, 0.12);
}

.ctus .select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #4B6CBE;
}

.ctus .toggle-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #F1F0F5;
    border-radius: 4px;
}

.ctus .toggle-row label {
    font-size: 13px;
    color: #3a4a6b;
    line-height: 1.6;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus .toggle-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4B6CBE;
    cursor: pointer;
    flex-shrink: 0;
}

.ctus .cond-toggle {
    display: none;
}

.ctus .cond-trigger {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    cursor: pointer;
    user-select: none;
}

.ctus .cond-trigger input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4B6CBE;
    cursor: pointer;
    flex-shrink: 0;
}

.ctus .cond-trigger-label {
    font-size: 13px;
    color: #3a4a6b;
    line-height: 1.6;
}

.ctus .cond-field {
    display: none;
    margin-bottom: 24px;
}

.ctus .cond-toggle:checked~.cond-field {
    display: block;
}

.ctus .textarea-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #C0D3E3;
    border-radius: 4px;
    font-size: 13px;
    color: #1b2340;
    background: #fff;
    line-height: 1.9;
    box-shadow: inset 0 2px 4px rgba(75, 108, 190, 0.05);
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
    resize: vertical;
    min-height: 96px;
    box-sizing: border-box;
}

.ctus .textarea-input::placeholder {
    color: #9aaac0;
}

.ctus .textarea-input:focus {
    outline: none;
    border-color: #4B6CBE;
    box-shadow: inset 0 2px 4px rgba(75, 108, 190, 0.08), 0 0 0 3px rgba(75, 108, 190, 0.12);
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 16px;
    border: 1.5px solid #C0D3E3;
    border-radius: 4px;
    background: rgba(75, 108, 190, 0.03);
}

.ctus .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4B6CBE;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.ctus .privacy-text {
    font-size: 13px;
    color: #3a4a6b;
    line-height: 1.9;
}

.ctus .privacy-text a {
    color: #4B6CBE;
    text-decoration: none;
    border-bottom: 1px solid rgba(75, 108, 190, 0.4);
    transition: color 0.2s ease-out, border-color 0.15s ease-out;
}

.ctus .privacy-text a:hover {
    color: #1b2340;
    border-bottom-color: #1b2340;
}

.ctus .submit-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #4B6CBE;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
    transition: background 0.2s ease-out, box-shadow 0.25s ease-out, transform 0.15s ease-out;
    position: relative;
    overflow: hidden;
}

.ctus .submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(192, 211, 227, 0.25);
    transition: left 0.35s ease-out;
}

.ctus .submit-btn:hover::after {
    left: 0;
}

.ctus .submit-btn:hover {
    background: #3a5aad;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.12);
    transform: translateY(-1px);
}

.ctus .submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
}

.ctus .submit-btn:focus {
    outline: 3px solid rgba(75, 108, 190, 0.4);
    outline-offset: 3px;
}

@keyframes shake-once {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }

    100% {
        transform: translateX(0);
    }
}

.ctus .submit-btn:invalid {
    animation: shake-once 0.35s ease-out;
}

.ctus .form-note {
    font-size: 13px;
    color: #7a8aaa;
    line-height: 1.6;
    margin-top: 12px;
}

.ctus .form-note a {
    color: #4B6CBE;
    text-decoration: none;
}

.ctus .frosted-hover {
    border-radius: 12px;
    transition: background 0.3s ease-out, box-shadow 0.3s ease-out;
}

.ctus .frosted-hover:hover {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.ctus .fill-anim {
    position: relative;
    display: inline-block;
    color: #4B6CBE;
    overflow: hidden;
}

.ctus .fill-anim::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    background: #4B6CBE;
    transition: width 0.45s ease-out;
}

.ctus .contact-form:hover .fill-anim::before {
    width: 100%;
}

@media (max-width: 768px) {
    .ctus .lead-strip-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ctus .lead-heading {
        font-size: 37px;
    }

    .ctus .form-area-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ctus .form-context {
        position: static;
    }

    .ctus .form-context-heading {
        font-size: 27px;
    }
}

@media (max-width: 480px) {
    .ctus .lead-strip {
        padding: 36px 24px 24px;
    }

    .ctus .form-area {
        padding: 36px 24px;
    }

    .ctus .contact-form {
        padding: 24px;
    }

    .ctus .lead-heading {
        font-size: 27px;
    }
}

.abt-us {
    background: #ffffff;
    color: #1a2340;
    overflow-x: clip;
}

.abt-us .lead-strip {
    max-width: 1024px;
    margin: 0 auto;
    padding: 72px 36px 36px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 36px;
}

.abt-us .lead-text-zone {
    flex: 0 0 55%;
    position: relative;
}

.abt-us .lead-text-zone::before {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    background: #4B6CBE;
    border-radius: 4px;
    margin-bottom: 24px;
}

.abt-us .lead-eyebrow {
    font-size: 13px;
    line-height: 1.6;
    color: #4B6CBE;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.abt-us .lead-h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2340;
    margin: 0 0 24px;
}

.abt-us .lead-h1 .accent-word {
    color: #4B6CBE;
}

.abt-us .lead-sub {
    font-size: 20px;
    line-height: 1.6;
    color: #3a4560;
    max-width: 480px;
}

.abt-us .lead-img-zone {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.abt-us .lead-img-frame {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.12);
    position: relative;
}

.abt-us .lead-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px) saturate(1.08);
    transition: filter 0.25s ease-out;
}

.abt-us .lead-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(75, 108, 190, 0.08) 0%, rgba(75, 108, 190, 0.08) 50%, transparent 50%);
    border-radius: 12px;
    pointer-events: none;
}

.abt-us .lead-deco {
    position: absolute;
    top: 0;
    left: -18px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(75, 108, 190, 0.12);
    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

.abt-us .story-band {
    background: #F1F0F5;
    padding: 72px 36px;
}

.abt-us .story-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.abt-us .story-img-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abt-us .story-img-primary {
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
}

.abt-us .story-img-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abt-us .story-img-tag {
    display: inline-block;
    background: #4B6CBE;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    align-self: flex-start;
}

.abt-us .story-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .story-h2 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2340;
    margin: 0;
}

.abt-us .story-h2 .accent-word {
    color: #4B6CBE;
}

.abt-us .story-para {
    font-size: 20px;
    line-height: 1.6;
    color: #2e3a55;
    margin: 0;
}

.abt-us .story-para .lead-label {
    font-weight: 700;
    color: #4B6CBE;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 6px;
}

.abt-us .story-para .accent-first {
    color: #4B6CBE;
    font-weight: 700;
    text-transform: uppercase;
}

.abt-us .timeline-band {
    padding: 72px 36px;
    background: #ffffff;
    position: relative;
}

.abt-us .timeline-band::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(192, 211, 227, 0.22) 0%, rgba(192, 211, 227, 0) 70%);
    pointer-events: none;
    border-radius: 50%;
}

.abt-us .timeline-inner {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-us .timeline-header {
    text-align: center;
    margin-bottom: 36px;
}

.abt-us .timeline-h2 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2340;
    margin: 0 0 12px;
}

.abt-us .timeline-h2 .accent-word {
    color: #4B6CBE;
}

.abt-us .timeline-sub {
    font-size: 20px;
    line-height: 1.6;
    color: #3a4560;
    max-width: 520px;
    margin: 0 auto;
}

.abt-us .timeline-track {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.abt-us .timeline-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4B6CBE 0%, #4B6CBE 50%, #C0D3E3 50%, #C0D3E3 100%);
    z-index: 0;
}

.abt-us .timeline-point {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.abt-us .tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #4B6CBE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.abt-us .timeline-point:hover .tl-dot {
    background: #4B6CBE;
}

.abt-us .tl-dot-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4B6CBE;
    transition: background 0.2s ease-out;
}

.abt-us .timeline-point:hover .tl-dot-inner {
    background: #ffffff;
}

.abt-us .tl-card {
    background: #F1F0F5;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
    transition: box-shadow 0.25s ease-out, transform 0.25s ease-out;
}

.abt-us .timeline-point:hover .tl-card {
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
    transform: translateY(-4px);
}

.abt-us .tl-year {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    color: #4B6CBE;
    margin-bottom: 6px;
}

.abt-us .tl-label {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 6px;
}

.abt-us .tl-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #3a4560;
}

.abt-us .team-band {
    background: #1a2340;
    padding: 72px 36px;
    position: relative;
    overflow: hidden;
}

.abt-us .team-band::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(75, 108, 190, 0.12);
    pointer-events: none;
}

.abt-us .team-inner {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-us .team-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 36px;
}

.abt-us .team-h2 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 800;
    color: #F1F0F5;
    margin: 0;
}

.abt-us .team-h2 .accent-word {
    color: #C0D3E3;
}

.abt-us .team-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #C0D3E3;
    max-width: 380px;
    flex-shrink: 0;
}

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

.abt-us .team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 211, 227, 0.15);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.35s ease-out, border-color 0.35s ease-out;
}

.abt-us .team-card:hover {
    background: rgba(75, 108, 190, 0.15);
    border-color: rgba(75, 108, 190, 0.4);
}

.abt-us .team-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
}

.abt-us .team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease-out;
}

.abt-us .team-card:hover .team-card-img img {
    transform: scale(1.04);
}

.abt-us .team-name {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #F1F0F5;
    margin: 0;
}

.abt-us .team-role {
    font-size: 13px;
    line-height: 1.6;
    color: #4B6CBE;
    font-weight: 700;
    text-transform: uppercase;
}

.abt-us .team-bio {
    font-size: 13px;
    line-height: 1.6;
    color: #C0D3E3;
}

.abt-us .team-extra {
    margin-top: 36px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
}

.abt-us .team-stat {
    flex: 1 1 0;
    background: rgba(75, 108, 190, 0.12);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.abt-us .team-stat-num {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 800;
    color: #4B6CBE;
}

.abt-us .team-stat-label {
    font-size: 13px;
    line-height: 1.6;
    color: #C0D3E3;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

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

.abt-us .lead-text-zone {
    animation: slideUp 0.45s ease-out both;
}

.abt-us .lead-img-zone {
    animation: slideUp 0.35s ease-out 0.1s both;
}

.abt-us .story-text-col {
    animation: slideUp 0.4s ease-out 0.05s both;
}

.abt-us .tl-card {
    animation: slideUp 0.3s ease-out both;
}

.abt-us .team-card:nth-child(1) {
    animation: slideUp 0.35s ease-out 0.05s both;
}

.abt-us .team-card:nth-child(2) {
    animation: slideUp 0.35s ease-out 0.15s both;
}

.abt-us .team-card:nth-child(3) {
    animation: slideUp 0.35s ease-out 0.25s both;
}

@media (max-width: 768px) {
    .abt-us .lead-strip {
        flex-direction: column;
        padding: 36px 24px 24px;
        gap: 24px;
    }

    .abt-us .lead-text-zone {
        flex: none;
    }

    .abt-us .lead-h1 {
        font-size: 37px;
    }

    .abt-us .lead-img-zone {
        align-items: flex-start;
    }

    .abt-us .lead-img-frame {
        max-width: 100%;
    }

    .abt-us .story-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .abt-us .timeline-track {
        flex-direction: column;
        gap: 24px;
    }

    .abt-us .timeline-track::before {
        display: none;
    }

    .abt-us .timeline-point {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .abt-us .tl-card {
        flex: 1;
    }

    .abt-us .team-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .abt-us .team-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .abt-us .team-extra {
        flex-direction: column;
        gap: 12px;
    }

    .abt-us .timeline-band,
    .abt-us .story-band,
    .abt-us .team-band {
        padding: 36px 24px;
    }
}

.success-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background-color: #F1F0F5;
}

.success-page .confirm-wrap {
    max-width: 1024px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.success-page .icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-page .icon-ring svg {
    display: block;
}

.success-page .confirm-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 560px;
}

.success-page .confirm-heading {
    font-size: 37px;
    line-height: 1.2;
    color: #1b2a52;
    margin: 0;
}

.success-page .confirm-heading span {
    display: block;
}

.success-page .confirm-note {
    font-size: 20px;
    line-height: 1.6;
    color: #3a4a6b;
    margin: 0;
}

.success-page .confirm-note strong {
    color: #4B6CBE;
    font-weight: 600;
}

.success-page .detail-strip {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.success-page .detail-item {
    background: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 13px;
    line-height: 1.6;
    color: #3a4a6b;
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.success-page .detail-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #4B6CBE;
    flex-shrink: 0;
}

.success-page .divider-line {
    width: 48px;
    height: 2px;
    background: #C0D3E3;
    border-radius: 4px;
}

.success-page .action-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.success-page .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    background: #4B6CBE;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 18px 1px rgba(75, 108, 190, 0.12);
    transition: background 0.2s ease-out, box-shadow 0.25s ease-out, transform 0.15s ease-out;
}

.success-page .btn-primary:hover {
    background: #3a5aaa;
    box-shadow: 0 12px 36px 1px rgba(75, 108, 190, 0.18);
    transform: translateY(-1px);
}

.success-page .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px 1px rgba(75, 108, 190, 0.08);
}

.success-page .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    background: transparent;
    color: #4B6CBE;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
    border: 1.5px solid #C0D3E3;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease-out, color 0.2s ease-out, background 0.25s ease-out;
}

.success-page .btn-ghost:hover {
    border-color: #4B6CBE;
    background: rgba(75, 108, 190, 0.05);
}

.success-page .contact-hint {
    font-size: 13px;
    line-height: 1.9;
    color: #6a7a9b;
    margin: 0;
    text-align: center;
}

.success-page .contact-hint a {
    color: #4B6CBE;
    text-decoration: none;
    border-bottom: 1px solid #C0D3E3;
    transition: border-color 0.2s ease-out;
}

.success-page .contact-hint a:hover {
    border-color: #4B6CBE;
}

@media (max-width: 600px) {
    .success-page .confirm-heading {
        font-size: 27px;
    }

    .success-page .confirm-note {
        font-size: 13px;
    }

    .success-page .action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .success-page .btn-primary,
    .success-page .btn-ghost {
        text-align: center;
    }
}