* {
    box-sizing: border-box
}

html {
    scroll-behavior: auto;
    margin: 0
}

body {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #2a2a2a;
    background: #fefefe
}

.hdr-outer {
    background: linear-gradient(135deg, #f7fbfd 0%, #fff 100%);
    border-bottom: 2px solid #84B2D3;
    box-shadow: -1px 3px 5px 0 #84b2d312
}

.hdr-top-strip {
    background: #84B2D3;
    padding: 6px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px
}

.hdr-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    transition: opacity .14s cubic-bezier(0.4, 0, 1, 1)
}

.hdr-contact-item:hover {
    opacity: .82
}

.hdr-contact-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px #78e4b380;
    border-radius: 2px
}

.hdr-contact-icon {
    width: 16px;
    height: 16px;
    fill: #fff
}

.hdr-middle-band {
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.hdr-logo-box {
    background: #2a2a2a;
    padding: 12px 24px;
    border-radius: 2px 46px 2px 16px;
    box-shadow: -1px 4px 28px 0 #71c7c917;
    margin-right: 48px;
    flex-shrink: 0
}

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

.hdr-location-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    max-width: 420px
}

.hdr-location-icon-wrap {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #71C7C9 0%, #78E4B3 100%);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: -1px 3px 5px 0 #71c7c912
}

.hdr-location-icon {
    width: 22px;
    height: 22px;
    fill: #fff
}

.hdr-location-txt {
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0;
    padding-top: 6px
}

.hdr-nav-row {
    background: #fff;
    border-top: 1px solid #84b2d333
}

.hdr-nav-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.hdr-nav-link {
    display: block;
    padding: 24px;
    font-size: 17px;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    position: relative;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.hdr-nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 24px;
    left: 24px;
    height: 2px;
    background: linear-gradient(90deg, #84B2D3 0%, #71C7C9 50%, #78E4B3 100%);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.hdr-nav-link:hover {
    color: #84B2D3
}

.hdr-nav-link:hover::after {
    transform: scaleX(1)
}

.hdr-nav-link:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #78e4b366;
    border-radius: 2px
}

.ftr-outer {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #f0f0f0;
    padding-top: 96px;
    padding-bottom: 48px;
    margin-top: 96px;
    border-top: 3px solid #84B2D3
}

.ftr-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 48px
}

.ftr-top-block {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 96px
}

.ftr-company-zone {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ftr-brand-name {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -.5px
}

.ftr-brand-desc {
    font-size: 17px;
    line-height: 1.65;
    color: #d0d0d0;
    margin: 0;
    max-width: 620px
}

.ftr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px
}

.ftr-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ftr-col-title {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #71C7C9;
    display: inline-block;
    width: fit-content
}

.ftr-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-link-item {
    margin: 0
}

.ftr-link {
    font-size: 17px;
    color: #d0d0d0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .14s cubic-bezier(0.4, 0, 1, 1), transform .14s cubic-bezier(0.4, 0, 1, 1);
    padding: 6px 0
}

.ftr-link::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #78E4B3;
    border-radius: 46px;
    display: block;
    transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.ftr-link:hover {
    color: #78E4B3;
    transform: translateX(-6px)
}

.ftr-link:hover::before {
    transform: scale(1.4)
}

.ftr-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #78e4b366;
    border-radius: 2px
}

.ftr-trust-box {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #84b2d314;
    border-radius: 2px;
    border: 1px solid #84b2d326
}

.ftr-trust-icon-wrap {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #84B2D3 0%, #71C7C9 100%);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ftr-trust-icon {
    width: 18px;
    height: 18px;
    fill: #fff
}

.ftr-trust-txt {
    font-size: 15px;
    line-height: 1.65;
    color: #d0d0d0;
    margin: 0
}

.ftr-bottom-bar {
    margin-top: 96px;
    padding-top: 48px;
    border-top: 1px solid #84b2d333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px
}

.ftr-logo-final-box {
    background: #fff;
    padding: 12px 24px;
    border-radius: 16px 2px 16px 2px;
    box-shadow: -1px 9px 60px 0 #84b2d31f;
    border: 2px solid #84B2D3
}

.ftr-logo-final-img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain
}

.ftr-copyright-txt {
    font-size: 15px;
    line-height: 1.65;
    color: #a0a0a0;
    text-align: center;
    margin: 0
}

.consent-popup-wrap {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: -1px 9px 60px 0 #84b2d31f -1px 4px 28px 0 #71c7c917;
    padding: 24px;
    z-index: 1500;
    border: 2px solid #84B2D3;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .42s cubic-bezier(0.4, 0, 1, 1), transform .42s cubic-bezier(0.4, 0, 1, 1);
    display: none
}

.consent-popup-wrap.show-popup {
    opacity: 1;
    transform: translateY(0)
}

.consent-headline {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 12px
}

.consent-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 12px
}

.consent-data-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.consent-data-list li {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
    padding-right: 24px;
    position: relative
}

.consent-data-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #71C7C9;
    border-radius: 46px
}

.consent-btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.consent-btn {
    font-size: 15px;
    font-weight: 600;
    color: #84B2D3;
    background: transparent;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    text-decoration: underline;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1);
    font-family: 'Noto Sans', sans-serif
}

.consent-btn:hover {
    color: #71C7C9
}

.consent-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #78e4b380;
    border-radius: 2px
}

.consent-settings-panel {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #84b2d333;
    display: none
}

.consent-settings-panel.expanded {
    display: block
}

.consent-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px
}

.consent-toggle-label {
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0;
    font-weight: 600
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #71C7C9
}

@media (max-width: 768px) {
    .hdr-top-strip {
        flex-direction: column;
        gap: 12px;
        padding: 12px 24px
    }

    .hdr-middle-band {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px
    }

    .hdr-logo-box {
        margin-right: 0
    }

    .hdr-location-box {
        max-width: 100%
    }

    .hdr-nav-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 0
    }

    .hdr-nav-link {
        width: 100%;
        text-align: center;
        padding: 18px 24px
    }

    .hdr-nav-link::after {
        bottom: 6px
    }

    .ftr-container {
        padding: 0 24px
    }

    .ftr-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .ftr-brand-name {
        font-size: 50px
    }

    .consent-popup-wrap {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none
    }
}

@media (max-width: 480px) {
    .ftr-brand-name {
        font-size: 50px
    }

    .hdr-logo-img {
        width: 48px;
        height: 48px
    }

    .ftr-logo-final-img {
        width: 48px;
        height: 48px
    }
}

.policy-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #fff
}

.policy-section h1 {
    font-size: 50px;
    line-height: 1.15;
    margin: 0 0 48px;
    color: #1a1a2e
}

.policy-section h2 {
    font-size: 20px;
    line-height: 1.15;
    margin: 96px 0 24px;
    color: #2d2d44;
    padding-bottom: 12px;
    border-bottom: 1px solid #84B2D3
}

.policy-section h2:first-of-type {
    margin-top: 48px
}

.policy-section h3 {
    font-size: 17px;
    line-height: 1.15;
    margin: 48px 0 24px;
    color: #3a3a52
}

.policy-section h4,
.policy-section h5,
.policy-section h6 {
    font-size: 17px;
    line-height: 1.15;
    margin: 24px 0 12px;
    color: #3a3a52
}

.policy-section p {
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px;
    color: #4a4a5e
}

.policy-section strong,
.policy-section b {
    color: #2d2d44;
    font-weight: 600
}

.policy-section em,
.policy-section i {
    font-style: italic
}

.policy-section hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #84B2D3, #71C7C9, #78E4B3);
    margin: 96px 0
}

.policy-section div {
    margin: 24px 0
}

.policy-section ul,
.policy-section ol {
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 24px;
    padding-right: 24px;
    color: #4a4a5e
}

.policy-section li {
    margin-bottom: 12px
}

.policy-section a {
    color: #84B2D3;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .15s cubic-bezier(0.4, 0, 1, 1)
}

.policy-section a:hover {
    border-bottom-color: #84B2D3
}

@media (max-width: 768px) {
    .policy-section {
        padding: 24px 12px
    }

    .policy-section h1 {
        font-size: 20px;
        margin-bottom: 24px
    }

    .policy-section h2 {
        font-size: 17px;
        margin-top: 48px
    }

    .policy-section h3,
    .policy-section h4,
    .policy-section h5,
    .policy-section h6 {
        font-size: 15px
    }

    .policy-section p,
    .policy-section ul,
    .policy-section ol {
        font-size: 15px
    }

    .policy-section hr {
        margin: 48px 0
    }
}

.intrvw-dtl {
    background: #fff;
    color: #1a1a1a
}

.intrvw-dtl .pg-head {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative
}

.intrvw-dtl .pg-head::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #84B2D3 0%, #71C7C9 50%, #78E4B3 100%);
    opacity: .08;
    border-radius: 46px;
    z-index: 0
}

.intrvw-dtl .txt-area {
    position: relative;
    z-index: 1
}

.intrvw-dtl .meta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px
}

.intrvw-dtl .read-tm {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px
}

.intrvw-dtl .read-tm svg {
    width: 16px;
    height: 16px;
    fill: #84B2D3
}

.intrvw-dtl .like-cnt {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px
}

.intrvw-dtl .like-cnt svg {
    width: 16px;
    height: 16px;
    fill: #71C7C9
}

.intrvw-dtl .main-ttl {
    font-size: 68px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 12px
}

.intrvw-dtl .sub-ttl {
    font-size: 20px;
    line-height: 1.65;
    color: #555;
    margin: 0
}

.intrvw-dtl .img-area {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1
}

.intrvw-dtl .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.intrvw-dtl .img-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to left, #84b2d34d, transparent);
    pointer-events: none
}

.intrvw-dtl .actions-bar {
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

.intrvw-dtl .copy-url-btn {
    padding: 12px 24px;
    background: #fff;
    color: #2a2a2a;
    border: 2px solid #84B2D3;
    border-radius: 46px;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
    cursor: pointer;
    transition: background .14s cubic-bezier(0.4, 0, 1, 1), color .14s cubic-bezier(0.4, 0, 1, 1), transform .1s cubic-bezier(0.4, 0, 1, 1);
    display: flex;
    align-items: center;
    gap: 6px
}

.intrvw-dtl .copy-url-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.intrvw-dtl .copy-url-btn:hover {
    background: #84B2D3;
    color: #fff;
    transform: translateY(-2px)
}

.intrvw-dtl .copy-url-btn:active {
    transform: translateY(0)
}

.intrvw-dtl .print-btn {
    padding: 12px 24px;
    background: #71C7C9;
    color: #fff;
    border: none;
    border-radius: 46px;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
    cursor: pointer;
    transition: background .16s cubic-bezier(0.4, 0, 1, 1), transform .1s cubic-bezier(0.4, 0, 1, 1);
    display: flex;
    align-items: center;
    gap: 6px
}

.intrvw-dtl .print-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.intrvw-dtl .print-btn:hover {
    background: #5eb5b7
}

.intrvw-dtl .print-btn:active {
    transform: scale(0.97)
}

.intrvw-dtl .article-body {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #fefefe;
    position: relative
}

.intrvw-dtl .article-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #84B2D3 50%, transparent 100%)
}

.intrvw-dtl .content-wrap {
    max-width: 820px;
    margin: 0 auto
}

.intrvw-dtl .content-wrap p {
    font-size: 17px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 24px
}

.intrvw-dtl .content-wrap p:last-child {
    margin-bottom: 0
}

.intrvw-dtl .content-wrap h2 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a2a2a;
    margin: 48px 0 24px;
    position: relative;
    padding-top: 24px
}

.intrvw-dtl .content-wrap h2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(to left, #78E4B3, #71C7C9)
}

.intrvw-dtl .content-wrap em {
    font-style: italic;
    color: #84B2D3;
    font-weight: 600
}

.intrvw-dtl .content-wrap ul,
.intrvw-dtl .content-wrap ol {
    margin: 0 0 24px;
    padding: 0 48px 0 0;
    list-style-position: inside
}

.intrvw-dtl .content-wrap ul li,
.intrvw-dtl .content-wrap ol li {
    font-size: 17px;
    line-height: 1.65;
    color: #333;
    margin-bottom: 12px
}

.intrvw-dtl .content-wrap ul li::marker {
    color: #71C7C9
}

.intrvw-dtl .content-wrap ol li::marker {
    color: #84B2D3;
    font-weight: 700
}

.intrvw-dtl .content-wrap table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: -1px 3px 5px 0 #84b2d312
}

.intrvw-dtl .content-wrap thead {
    background: linear-gradient(135deg, #84B2D3 0%, #71C7C9 100%)
}

.intrvw-dtl .content-wrap thead tr th {
    padding: 12px 24px;
    text-align: right;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
    color: #fff
}

.intrvw-dtl .content-wrap tbody tr {
    border-bottom: 1px solid #f0f0f0
}

.intrvw-dtl .content-wrap tbody tr:last-child {
    border-bottom: none
}

.intrvw-dtl .content-wrap tbody tr td {
    padding: 12px 24px;
    text-align: right;
    font-size: 17px;
    line-height: 1.65;
    color: #333
}

.intrvw-dtl .content-wrap tbody tr:hover {
    background: #fafbfc
}

.intrvw-dtl .content-wrap tfoot tr td {
    padding: 12px 24px;
    text-align: right;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 600;
    color: #555;
    background: #f9f9f9
}

.intrvw-dtl .content-wrap time {
    font-size: 15px;
    line-height: 1.65;
    color: #84B2D3;
    font-weight: 600
}

.intrvw-dtl .insight-cards {
    background: linear-gradient(225deg, #f8f9fa 0%, #fff 100%);
    padding: 96px 24px;
    position: relative
}

.intrvw-dtl .insight-cards::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent #84B2D3;
    opacity: .12
}

.intrvw-dtl .insight-cards::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 80px 80px 0 0;
    border-color: #71C7C9 transparent transparent;
    opacity: .12
}

.intrvw-dtl .cards-container {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.intrvw-dtl .sec-label {
    font-size: 15px;
    line-height: 1.65;
    font-weight: 700;
    color: #71C7C9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 6px;
    text-align: center
}

.intrvw-dtl .sec-heading {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 48px;
    text-align: center
}

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

.intrvw-dtl .insight-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 4px 28px 0 #71c7c917;
    position: relative;
    transition: transform .16s cubic-bezier(0.4, 0, 1, 1), box-shadow .16s cubic-bezier(0.4, 0, 1, 1)
}

.intrvw-dtl .insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #84B2D3, #71C7C9);
    border-radius: 0 0 16px 0;
    opacity: .15
}

.intrvw-dtl .insight-card:hover {
    transform: translateY(-6px);
    box-shadow: -1px 9px 60px 0 #71c7c91f
}

.intrvw-dtl .card-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #84B2D3 0%, #71C7C9 100%);
    border-radius: 46px
}

.intrvw-dtl .card-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.intrvw-dtl .card-ttl {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 12px
}

.intrvw-dtl .card-desc {
    font-size: 17px;
    line-height: 1.65;
    color: #555;
    margin: 0
}

.intrvw-dtl .metrics-sec {
    background: url(https://images.unsplash.com/photo-1554224311-beee460c201f?w=1600&h=900&fit=crop) center/cover;
    position: relative;
    padding: 96px 24px
}

.intrvw-dtl .metrics-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #84b2d3eb, #71c7c9e0);
    z-index: 1
}

.intrvw-dtl .metrics-wrap {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.intrvw-dtl .metrics-heading {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0 0 48px;
    text-align: center
}

.intrvw-dtl .ranked-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto
}

.intrvw-dtl .rank-item {
    background: #ffffff26;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 24px;
    align-items: center;
    transition: background .14s cubic-bezier(0.4, 0, 1, 1), transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.intrvw-dtl .rank-item:hover {
    background: #ffffff40;
    transform: translateX(-6px)
}

.intrvw-dtl .rank-num {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #71C7C9
}

.intrvw-dtl .rank-content {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.intrvw-dtl .rank-label {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.intrvw-dtl .rank-detail {
    font-size: 15px;
    line-height: 1.65;
    color: #ffffffe6;
    margin: 0
}

.intrvw-dtl .rank-bar {
    width: 200px;
    height: 8px;
    background: #ffffff40;
    border-radius: 46px;
    overflow: hidden;
    position: relative
}

.intrvw-dtl .rank-bar-fill {
    height: 100%;
    background: linear-gradient(to left, #fff, #fffc);
    border-radius: 46px;
    transition: width .18s cubic-bezier(0.4, 0, 1, 1)
}

.intrvw-dtl .process-flow {
    background: #fff;
    padding: 96px 24px;
    position: relative
}

.intrvw-dtl .process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, #71C7C9 20%, #71C7C9 80%, transparent 100%)
}

.intrvw-dtl .process-flow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, #84B2D3 20%, #84B2D3 80%, transparent 100%)
}

.intrvw-dtl .process-container {
    max-width: 1170px;
    margin: 0 auto
}

.intrvw-dtl .process-ttl {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 12px;
    text-align: center
}

.intrvw-dtl .process-intro {
    font-size: 17px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 48px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

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

.intrvw-dtl .step-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    border-radius: 2px;
    padding: 24px;
    box-shadow: inset -1px 3px 5px 0 #84b2d312;
    position: relative;
    transition: box-shadow .14s cubic-bezier(0.4, 0, 1, 1)
}

.intrvw-dtl .step-card:hover {
    box-shadow: inset -1px 4px 28px 0 #84b2d317
}

.intrvw-dtl .step-num {
    font-size: 68px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #84B2D3 0%, #71C7C9 50%, #78E4B3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px
}

.intrvw-dtl .step-name {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 12px
}

.intrvw-dtl .step-info {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    margin: 0
}

.intrvw-dtl ::selection {
    background: #84B2D3;
    color: #fff
}

@media (max-width: 1024px) {
    .intrvw-dtl .pg-head {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 24px 24px
    }

    .intrvw-dtl .img-area {
        max-width: 500px;
        margin: 0 auto
    }

    .intrvw-dtl .main-ttl {
        font-size: 50px
    }

    .intrvw-dtl .card-grid {
        grid-template-columns: 1fr
    }

    .intrvw-dtl .steps-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .intrvw-dtl .rank-bar {
        width: 150px
    }
}

@media (max-width: 768px) {
    .intrvw-dtl .pg-head {
        padding: 24px
    }

    .intrvw-dtl .main-ttl {
        font-size: 50px
    }

    .intrvw-dtl .sec-heading,
    .intrvw-dtl .metrics-heading,
    .intrvw-dtl .process-ttl {
        font-size: 50px
    }

    .intrvw-dtl .content-wrap h2 {
        font-size: 50px
    }

    .intrvw-dtl .actions-bar {
        flex-direction: column
    }

    .intrvw-dtl .copy-url-btn,
    .intrvw-dtl .print-btn {
        width: 100%;
        justify-content: center
    }

    .intrvw-dtl .steps-grid {
        grid-template-columns: 1fr
    }

    .intrvw-dtl .rank-item {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .intrvw-dtl .rank-bar {
        width: 100%
    }

    .intrvw-dtl .meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }
}

@media print {

    .intrvw-dtl .actions-bar,
    .intrvw-dtl .pg-head::before,
    .intrvw-dtl .insight-cards::before,
    .intrvw-dtl .insight-cards::after,
    .intrvw-dtl .insight-card::before {
        display: none
    }

    .intrvw-dtl .pg-head {
        padding: 24px 0
    }

    .intrvw-dtl .article-body,
    .intrvw-dtl .insight-cards,
    .intrvw-dtl .metrics-sec,
    .intrvw-dtl .process-flow {
        padding: 24px 0
    }

    .intrvw-dtl .metrics-sec {
        background: #f5f5f5
    }

    .intrvw-dtl .metrics-sec::before {
        display: none
    }

    .intrvw-dtl .metrics-heading {
        color: #2a2a2a
    }

    .intrvw-dtl .rank-item {
        background: #f9f9f9;
        page-break-inside: avoid
    }

    .intrvw-dtl .rank-label {
        color: #2a2a2a
    }

    .intrvw-dtl .rank-detail {
        color: #555
    }

    .intrvw-dtl .insight-card,
    .intrvw-dtl .step-card {
        page-break-inside: avoid
    }
}

.cntct-us {
    background: #fff;
    color: #1a0f0a;
    overflow-x: clip
}

.cntct-us .intro-pnl {
    background: linear-gradient(127deg, #f8fafb 0%, #fff 48%, #f5f9fa 100%);
    padding: 96px 24px 48px;
    position: relative;
    margin-left: 48px
}

.intro-pnl::before {
    content: '';
    position: absolute;
    top: 0;
    left: -48px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #84B2D3 0%, #71C7C9 50%, #78E4B3 100%)
}

.intro-pnl .ctr-wrap {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.intro-pnl .img-col {
    flex: 0 0 280px;
    position: relative
}

.intro-pnl .img-col img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    position: relative;
    box-shadow: -1px 4px 28px 0 #84b2d317
}

.intro-pnl .img-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2px;
    background: radial-gradient(circle at 0% 0%, #0006 0%, transparent 50%), radial-gradient(circle at 100% 0%, #0006 0%, transparent 50%), radial-gradient(circle at 0% 100%, #0006 0%, transparent 50%), radial-gradient(circle at 100% 100%, #0006 0%, transparent 50%);
    pointer-events: none
}

.intro-pnl .txt-col {
    flex: 1;
    padding-top: 96px
}

.intro-pnl .dcr-accent {
    width: 60px;
    height: 60px;
    border-radius: 46px;
    background: #84b2d314;
    position: absolute;
    top: 24px;
    right: 96px;
    pointer-events: none
}

.intro-pnl h1 {
    font-size: 68px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a0f0a;
    margin: 0 0 24px
}

.intro-pnl .act-lnk {
    display: inline-block;
    font-size: 17px;
    line-height: 1.65;
    color: #71C7C9;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #71C7C9;
    border-radius: 2px;
    transition: background .14s cubic-bezier(0.4, 0, 1, 1), color .14s cubic-bezier(0.4, 0, 1, 1)
}

.intro-pnl .act-lnk:hover {
    background: #71C7C9;
    color: #fff
}

.intro-pnl .act-lnk:focus {
    outline: 3px solid #71c7c94d;
    outline-offset: 2px
}

.cntct-us .form-sec {
    padding: 96px 24px;
    background: #fff;
    position: relative;
    margin-right: 96px
}

.form-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #84B2D3 20%, #71C7C9 50%, #78E4B3 80%, transparent 100%)
}

.form-sec .ctr-wrap {
    max-width: 1170px;
    margin: 0 auto
}

.form-sec .ovr-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #84B2D3 0%, #71C7C9 100%);
    margin: 0 0 12px
}

.form-sec h2 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 600;
    color: #1a0f0a;
    margin: 0 0 48px
}

.form-sec .frm-ctr {
    background: #fafcfd;
    padding: 48px;
    border-radius: 16px;
    box-shadow: inset -1px 3px 5px 0 #84b2d312;
    position: relative
}

.form-sec .frm-ctr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, #84b2d308, transparent 40%), radial-gradient(circle at 80% 70%, #71c7c908, transparent 40%), radial-gradient(circle at 50% 50%, #78e4b308, transparent 50%);
    border-radius: 16px;
    pointer-events: none
}

.form-sec .ptrn-bg {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 200px;
    height: 200px;
    opacity: .05;
    pointer-events: none
}

.form-sec .ptrn-bg::before,
.form-sec .ptrn-bg::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #84B2D3;
    border-radius: 50%
}

.form-sec .ptrn-bg::before {
    top: 0;
    left: 0;
    box-shadow: 24px 0 0 #84B2D3, 48px 0 0 #71C7C9, 0 24px 0 #71C7C9, 24px 24px 0 #78E4B3, 48px 24px 0 #84B2D3, 0 48px 0 #78E4B3, 24px 48px 0 #84B2D3, 48px 48px 0 #71C7C9
}

.form-sec .ptrn-bg::after {
    top: 12px;
    left: 12px;
    box-shadow: 24px 0 0 #71C7C9, 48px 0 0 #78E4B3, 0 24px 0 #84B2D3, 24px 24px 0 #71C7C9, 48px 24px 0 #78E4B3, 0 48px 0 #71C7C9, 24px 48px 0 #78E4B3, 48px 48px 0 #84B2D3
}

.form-sec form {
    position: relative;
    z-index: 1
}

.form-sec .fld-grp {
    margin: 0 0 24px
}

.form-sec .fld-grp label {
    display: block;
    font-size: 15px;
    line-height: 1.65;
    color: #2d1f17;
    font-weight: 600;
    margin: 0 0 6px
}

.form-sec .fld-grp input[type="text"],
.form-sec .fld-grp input[type="email"],
.form-sec .fld-grp input[type="tel"] {
    width: 100%;
    padding: 12px 24px;
    font-size: 17px;
    line-height: 1.65;
    color: #1a0f0a;
    background: #fff;
    border: 2px solid #e8eef2;
    border-radius: 2px;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.form-sec .fld-grp input[type="text"]::placeholder,
.form-sec .fld-grp input[type="email"]::placeholder,
.form-sec .fld-grp input[type="tel"]::placeholder {
    color: #9ba8b3
}

.form-sec .fld-grp input[type="text"]:focus,
.form-sec .fld-grp input[type="email"]:focus,
.form-sec .fld-grp input[type="tel"]:focus {
    outline: none;
    border-color: #84B2D3;
    box-shadow: -1px 3px 5px 0 #84b2d312
}

.form-sec .fld-grp input[type="text"]:invalid:not(:placeholder-shown),
.form-sec .fld-grp input[type="email"]:invalid:not(:placeholder-shown),
.form-sec .fld-grp input[type="tel"]:invalid:not(:placeholder-shown) {
    border-color: #d94848;
    animation: shk .16s cubic-bezier(0.4, 0, 1, 1)
}

@keyframes shk {

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

    25% {
        transform: translateX(-6px)
    }

    75% {
        transform: translateX(6px)
    }
}

.form-sec .tm-slct {
    position: relative
}

.form-sec .tm-slct select {
    width: 100%;
    padding: 12px 24px;
    font-size: 17px;
    line-height: 1.65;
    color: #1a0f0a;
    background: #fff;
    border: 2px solid #e8eef2;
    border-radius: 2px;
    appearance: none;
    cursor: pointer;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.form-sec .tm-slct select:focus {
    outline: none;
    border-color: #71C7C9;
    box-shadow: -1px 3px 5px 0 #71c7c912
}

.form-sec .tm-slct::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #84B2D3;
    pointer-events: none
}

.form-sec .prv-chk {
    margin: 24px 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.form-sec .prv-chk input[type="checkbox"] {
    margin: 6px 0 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #78E4B3
}

.form-sec .prv-chk label {
    font-size: 15px;
    line-height: 1.65;
    color: #2d1f17;
    margin: 0
}

.form-sec .prv-chk a {
    color: #71C7C9;
    text-decoration: underline;
    transition: color .11s cubic-bezier(0.4, 0, 1, 1)
}

.form-sec .prv-chk a:hover {
    color: #84B2D3
}

.form-sec .sbmt-btn {
    width: 100%;
    padding: 24px 48px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #84B2D3 0%, #71C7C9 100%);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: transform .14s cubic-bezier(0.4, 0, 1, 1), box-shadow .14s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: -1px 4px 28px 0 #84b2d317
}

.form-sec .sbmt-btn:hover {
    transform: translateY(-2px);
    box-shadow: -1px 9px 60px 0 #84b2d31f
}

.form-sec .sbmt-btn:active {
    transform: translateY(0);
    box-shadow: -1px 3px 5px 0 #84b2d312
}

.form-sec .sbmt-btn:focus {
    outline: 3px solid #84b2d34d;
    outline-offset: 2px
}

.cntct-us .dtls-sec {
    padding: 48px 24px 96px;
    background: linear-gradient(180deg, #f9fbfc 0%, #fff 100%);
    position: relative;
    margin-left: 24px
}

.dtls-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #84B2D3 0%, transparent 10%, transparent 90%, #78E4B3 100%)
}

.dtls-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #71C7C9 0%, transparent 15%, transparent 85%, #84B2D3 100%)
}

.dtls-sec .ctr-wrap {
    max-width: 1170px;
    margin: 0 auto
}

.dtls-sec h2 {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a0f0a;
    margin: 0 0 6px
}

.dtls-sec .spr-dmnd {
    width: 12px;
    height: 12px;
    background: #78E4B3;
    transform: rotate(45deg);
    margin: 24px 0
}

.dtls-sec .info-grd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin: 48px 0 0
}

.dtls-sec .info-crd {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: -1px 4px 28px 0 #71c7c917;
    position: relative;
    transition: transform .16s cubic-bezier(0.4, 0, 1, 1), box-shadow .16s cubic-bezier(0.4, 0, 1, 1)
}

.dtls-sec .info-crd:hover {
    transform: translateY(-12px);
    box-shadow: -1px 9px 60px 0 #71c7c91f
}

.dtls-sec .info-crd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #84B2D3 0%, #71C7C9 50%, #78E4B3 100%);
    border-radius: 16px 0 0 16px
}

.dtls-sec .crd-icn {
    width: 48px;
    height: 48px;
    margin: 0 0 12px
}

.dtls-sec .crd-icn svg {
    width: 100%;
    height: 100%
}

.dtls-sec .info-crd h3 {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    color: #1a0f0a;
    margin: 0 0 12px
}

.dtls-sec .info-crd p {
    font-size: 17px;
    line-height: 1.65;
    color: #3d2f25;
    margin: 0
}

.dtls-sec .info-crd a {
    color: #71C7C9;
    text-decoration: none;
    transition: color .11s cubic-bezier(0.4, 0, 1, 1)
}

.dtls-sec .info-crd a:hover {
    color: #84B2D3;
    text-decoration: underline
}

.dtls-sec .crv-cnct {
    position: absolute;
    top: -48px;
    right: 96px;
    width: 120px;
    height: 120px;
    pointer-events: none
}

.dtls-sec .crv-cnct svg {
    width: 100%;
    height: 100%
}

@media (max-width: 768px) {
    .intro-pnl {
        margin-left: 0;
        padding: 48px 24px 24px
    }

    .intro-pnl::before {
        display: none
    }

    .intro-pnl .ctr-wrap {
        flex-direction: column;
        gap: 24px
    }

    .intro-pnl .img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .intro-pnl .img-col img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1
    }

    .intro-pnl .txt-col {
        padding-top: 0
    }

    .intro-pnl h1 {
        font-size: 50px
    }

    .intro-pnl .dcr-accent {
        right: 24px
    }

    .form-sec {
        margin-right: 0;
        padding: 48px 24px
    }

    .form-sec h2 {
        font-size: 50px
    }

    .form-sec .frm-ctr {
        padding: 24px
    }

    .dtls-sec {
        margin-left: 0;
        padding: 24px 24px 48px
    }

    .dtls-sec h2 {
        font-size: 50px
    }

    .dtls-sec .info-grd {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .dtls-sec .crv-cnct {
        display: none
    }
}

.cntct-us .blur-rvl {
    animation: blr-in .18s cubic-bezier(0.4, 0, 1, 1) forwards
}

@keyframes blr-in {
    from {
        filter: blur(8px);
        opacity: 0
    }

    to {
        filter: blur(0);
        opacity: 1
    }
}

.intro-pnl h1,
.intro-pnl .act-lnk {
    animation: blr-in .18s cubic-bezier(0.4, 0, 1, 1) forwards
}

.intro-pnl h1 {
    animation-delay: .1s;
    opacity: 0
}

.intro-pnl .act-lnk {
    animation-delay: .16s;
    opacity: 0
}

.lnch {
    background: #fff;
    color: #2a2a2a
}

.lnch .ttl-wrp {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 24px;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-direction: row-reverse
}

.lnch .ttl-img-zone {
    flex: 0 0 420px;
    position: relative;
    overflow: hidden
}

.lnch .ttl-shape {
    width: 420px;
    height: 420px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    position: relative;
    overflow: hidden
}

.lnch .ttl-shape::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle at 20% 30%, #84B2D3, #71C7C9, #78E4B3);
    opacity: .15;
    z-index: -1
}

.lnch .ttl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: contrast(1.1) brightness(0.92)
}

.lnch .ttl-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, #00000008 0px, transparent 1px, transparent 2px, #00000008 3px);
    pointer-events: none
}

.lnch .ttl-txt-zone {
    flex: 1;
    position: relative
}

.lnch .ttl-txt-zone::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 0;
    width: 2px;
    height: 68px;
    background: linear-gradient(180deg, #84B2D3, #71C7C9)
}

.lnch .ttl-problem {
    font-size: 20px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 24px
}

.lnch .ttl-solution {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0
}

.lnch .ptrn-wrp {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.lnch .ptrn-wrp::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #84B2D3, transparent)
}

.lnch .ptrn-inner {
    max-width: 1170px;
    margin: 0 auto
}

.lnch .ptrn-ovrln {
    font-size: 15px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #84B2D3;
    margin: 0 0 12px;
    font-weight: 600
}

.lnch .ptrn-hdng {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 48px
}

.lnch .ptrn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px
}

.lnch .ptrn-crd {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: -1px 4px 28px 0 #84b2d317;
    position: relative;
    border-right: 3px solid #78E4B3
}

.lnch .ptrn-crd::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 46px;
    background: radial-gradient(circle at 30% 30%, #84B2D3, #71C7C9);
    opacity: .12
}

.lnch .ptrn-nm {
    font-size: 17px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px
}

.lnch .ptrn-role {
    font-size: 15px;
    line-height: 1.15;
    color: #71C7C9;
    margin: 0 0 24px
}

.lnch .ptrn-txt {
    font-size: 17px;
    line-height: 1.65;
    color: #444;
    margin: 0
}

.lnch .stns-wrp {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.lnch .stns-dvdr {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 60px;
    overflow: hidden
}

.lnch .stns-dvdr svg {
    width: 100%;
    height: 100%;
    display: block
}

.lnch .stns-inner {
    max-width: 1170px;
    margin: 0 auto
}

.lnch .stns-hdng {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 48px;
    text-align: center
}

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

.lnch .stns-itm {
    background: #fafbfc;
    padding: 48px 24px;
    border-radius: 2px;
    box-shadow: inset -1px 3px 5px 0 #71c7c912;
    position: relative;
    transition: transform .14s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .stns-itm:hover {
    transform: translateY(-6px)
}

.lnch .stns-itm::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #84B2D3, #71C7C9, #78E4B3)
}

.lnch .stns-icn {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 40% 40%, #84b2d326, #71c7c926, #78e4b326);
    border-radius: 46px
}

.lnch .stns-icn svg {
    width: 32px;
    height: 32px;
    fill: #71C7C9
}

.lnch .stns-lbl {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    text-align: center
}

.lnch .stns-dsc {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0;
    text-align: center
}

.lnch .rcg-wrp {
    background: #2a2a2a;
    padding: 96px 24px;
    position: relative
}

.lnch .rcg-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center
}

.lnch .rcg-txt-zone {
    flex: 1
}

.lnch .rcg-hdng {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px
}

.lnch .rcg-prg {
    font-size: 17px;
    line-height: 1.65;
    color: #d0d0d0;
    margin: 0 0 24px
}

.lnch .rcg-prg:last-child {
    margin-bottom: 0
}

.lnch .rcg-img-zone {
    flex: 0 0 380px
}

.lnch .rcg-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: -1px 9px 60px 0 #84b2d31f;
    display: block
}

.lnch .adpt-wrp {
    padding: 96px 24px;
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
    position: relative
}

.lnch .adpt-inner {
    max-width: 1170px;
    margin: 0 auto
}

.lnch .adpt-ovrln {
    font-size: 15px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #71C7C9;
    margin: 0 0 12px;
    font-weight: 600
}

.lnch .adpt-hdng {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 48px
}

.lnch .adpt-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px
}

.lnch .adpt-sdbr {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch .adpt-prtrt {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 46px;
    box-shadow: -1px 4px 28px 0 #78e4b317;
    display: block
}

.lnch .adpt-cntnt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lnch .adpt-blk {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: inset -1px 3px 5px 0 #84b2d312;
    position: relative;
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    animation: adpt-rvl .16s cubic-bezier(0.4, 0, 1, 1) forwards
}

.lnch .adpt-blk:nth-child(1) {
    animation-delay: .1s
}

.lnch .adpt-blk:nth-child(2) {
    animation-delay: .24s
}

.lnch .adpt-blk:nth-child(3) {
    animation-delay: .38s
}

@keyframes adpt-rvl {
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0)
    }
}

.lnch .adpt-blk::before {
    content: '';
    position: absolute;
    right: 0;
    top: 24px;
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, #84B2D3, #78E4B3)
}

.lnch .adpt-subhdng {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px
}

.lnch .adpt-txt {
    font-size: 17px;
    line-height: 1.65;
    color: #444;
    margin: 0
}

.lnch .scl-wrp {
    padding: 96px 24px;
    background: #fff;
    position: relative;
    overflow: hidden
}

.lnch .scl-wrp::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, #84b2d30d, transparent 50%), radial-gradient(circle at 20% 80%, #71c7c90d, transparent 50%), radial-gradient(circle at 50% 50%, #78e4b30d, transparent 60%);
    pointer-events: none;
    z-index: 0
}

.lnch .scl-inner {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.lnch .scl-hdng {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 48px;
    text-align: center
}

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

.lnch .scl-mtrc {
    background: #fafbfc;
    padding: 48px 24px;
    border-radius: 16px;
    box-shadow: -1px 3px 5px 0 #71c7c912;
    text-align: center;
    position: relative;
    transition: box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.lnch .scl-mtrc:hover {
    box-shadow: -1px 9px 60px 0 #71c7c91f
}

.lnch .scl-mtrc::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #71C7C9, transparent)
}

.lnch .scl-num {
    font-size: 68px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #84B2D3, #71C7C9, #78E4B3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px;
    display: block
}

.lnch .scl-lbl {
    font-size: 17px;
    line-height: 1.15;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px
}

.lnch .scl-dsc {
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    margin: 0
}

.lnch .scl-ftr {
    margin-top: 48px;
    text-align: center
}

.lnch .scl-ftr-txt {
    font-size: 17px;
    line-height: 1.65;
    color: #555;
    margin: 0
}

@media (max-width: 768px) {
    .lnch .ttl-wrp {
        flex-direction: column;
        padding: 48px 24px;
        gap: 24px
    }

    .lnch .ttl-img-zone {
        flex: 0 0 auto
    }

    .lnch .ttl-shape {
        width: 280px;
        height: 280px
    }

    .lnch .ttl-solution {
        font-size: 20px
    }

    .lnch .ptrn-wrp {
        padding: 48px 24px
    }

    .lnch .ptrn-hdng {
        font-size: 20px
    }

    .lnch .ptrn-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .lnch .ptrn-crd {
        padding: 24px
    }

    .lnch .stns-wrp {
        padding: 48px 24px
    }

    .lnch .stns-hdng {
        font-size: 20px
    }

    .lnch .stns-grid {
        grid-template-columns: 1fr
    }

    .lnch .rcg-wrp {
        padding: 48px 24px
    }

    .lnch .rcg-inner {
        flex-direction: column
    }

    .lnch .rcg-hdng {
        font-size: 20px
    }

    .lnch .rcg-img-zone {
        flex: 0 0 auto;
        width: 100%
    }

    .lnch .rcg-img {
        height: 240px
    }

    .lnch .adpt-wrp {
        padding: 48px 24px
    }

    .lnch .adpt-hdng {
        font-size: 20px
    }

    .lnch .adpt-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .lnch .adpt-prtrt {
        height: 320px
    }

    .lnch .adpt-blk {
        padding: 24px
    }

    .lnch .scl-wrp {
        padding: 48px 24px
    }

    .lnch .scl-hdng {
        font-size: 20px
    }

    .lnch .scl-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lnch .scl-num {
        font-size: 50px
    }
}

.intrvw-pg {
    background: #fff;
    color: #1a1a1a;
    overflow-x: clip
}

.intrvw-pg .splt-hdr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    position: relative;
    overflow: hidden
}

.intrvw-pg .splt-hdr .clr-zn-a {
    background: #84B2D3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative
}

.intrvw-pg .splt-hdr .clr-zn-b {
    background: #71C7C9;
    position: relative;
    overflow: hidden
}

.intrvw-pg .splt-hdr .img-ctnr {
    width: 100%;
    height: 100%;
    position: relative
}

.intrvw-pg .splt-hdr .img-ctnr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.intrvw-pg .splt-hdr .img-ctnr::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #0009 100%);
    pointer-events: none
}

.intrvw-pg .splt-hdr .txt-wrp {
    max-width: 520px;
    position: relative;
    z-index: 2
}

.intrvw-pg .splt-hdr h1 {
    font-size: 50px;
    line-height: 1.15;
    color: #fff;
    margin: 0
}

.intrvw-pg .splt-hdr .wv-shp {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3
}

.intrvw-pg .splt-hdr .wv-shp svg {
    display: block;
    width: 100%;
    height: 100%
}

.intrvw-pg .pst-grd {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 24px
}

.intrvw-pg .pst-grd .ovr-ln {
    width: 60px;
    height: 2px;
    background: #84B2D3;
    margin-bottom: 12px
}

.intrvw-pg .pst-grd h2 {
    font-size: 50px;
    line-height: 1.15;
    color: #2a2a2a;
    margin: 0 0 48px
}

.intrvw-pg .crd-grp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px
}

.intrvw-pg .pst-crd {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 3px 5px 0 #84b2d312;
    transition: box-shadow .14s cubic-bezier(0.4, 0, 1, 1), transform .14s cubic-bezier(0.4, 0, 1, 1);
    display: flex;
    flex-direction: column;
    position: relative
}

.intrvw-pg .pst-crd:hover {
    box-shadow: -1px 9px 60px 0 #84b2d31f;
    transform: translateY(-4px)
}

.intrvw-pg .pst-crd .img-bx {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: #f5f5f5
}

.intrvw-pg .pst-crd .img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.intrvw-pg .pst-crd .img-bx::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #00000080 100%);
    pointer-events: none
}

.intrvw-pg .pst-crd .cntnt-bx {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.intrvw-pg .pst-crd .pll-lbl {
    display: inline-block;
    background: #78E4B3;
    color: #2a2a2a;
    font-size: 15px;
    line-height: 1.15;
    padding: 6px 12px;
    border-radius: 46px;
    margin-bottom: 12px;
    align-self: flex-start
}

.intrvw-pg .pst-crd h3 {
    font-size: 20px;
    line-height: 1.15;
    color: #2a2a2a;
    margin: 0 0 6px
}

.intrvw-pg .pst-crd .sub-txt {
    font-size: 17px;
    line-height: 1.65;
    color: #5a5a5a;
    margin: 0 0 12px
}

.intrvw-pg .pst-crd .dsc-txt {
    font-size: 15px;
    line-height: 1.65;
    color: #6a6a6a;
    margin: 0 0 24px;
    flex-grow: 1
}

.intrvw-pg .pst-crd .mt-rw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #e8e8e8
}

.intrvw-pg .pst-crd .tm-inf {
    font-size: 15px;
    line-height: 1.15;
    color: #7a7a7a;
    display: flex;
    align-items: center;
    gap: 6px
}

.intrvw-pg .pst-crd .tm-inf svg {
    width: 16px;
    height: 16px;
    fill: #84B2D3
}

.intrvw-pg .pst-crd .lk-inf {
    font-size: 15px;
    line-height: 1.15;
    color: #7a7a7a;
    display: flex;
    align-items: center;
    gap: 6px
}

.intrvw-pg .pst-crd .lk-inf svg {
    width: 16px;
    height: 16px;
    fill: #71C7C9
}

.intrvw-pg .pst-crd .rd-lnk {
    text-decoration: none;
    color: inherit;
    position: absolute;
    inset: 0;
    z-index: 1
}

.intrvw-pg .asym-blk {
    max-width: 1170px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: center
}

.intrvw-pg .asym-blk .sml-zn {
    position: relative
}

.intrvw-pg .asym-blk .arrw-dcr {
    position: absolute;
    top: -24px;
    right: 24px;
    width: 40px;
    height: 40px;
    opacity: .15
}

.intrvw-pg .asym-blk .arrw-dcr svg {
    width: 100%;
    height: 100%;
    fill: #84B2D3
}

.intrvw-pg .asym-blk .ovr-ln {
    width: 60px;
    height: 2px;
    background: #71C7C9;
    margin-bottom: 12px
}

.intrvw-pg .asym-blk h2 {
    font-size: 50px;
    line-height: 1.15;
    color: #2a2a2a;
    margin: 0 0 24px
}

.intrvw-pg .asym-blk .lrg-zn p {
    font-size: 17px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0 0 24px
}

.intrvw-pg .asym-blk .lrg-zn p:last-child {
    margin-bottom: 0
}

.intrvw-pg .asym-blk .hl-bnd {
    display: inline-block;
    position: relative;
    padding-bottom: 2px
}

.intrvw-pg .asym-blk .hl-bnd::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #84B2D3 0%, #71C7C9 50%, #78E4B3 100%);
    transition: width .16s cubic-bezier(0.4, 0, 1, 1)
}

.intrvw-pg .asym-blk .hl-bnd:hover::after {
    width: 100%
}

.intrvw-pg .msh-sctn {
    background: radial-gradient(circle at 20% 30%, #84b2d31f 0%, transparent 50%), radial-gradient(circle at 80% 60%, #71c7c914 0%, transparent 50%), radial-gradient(circle at 50% 80%, #78e4b31a 0%, transparent 50%), #fff;
    animation: msh-shft 8s ease-in-out infinite;
    padding: 96px 24px
}

@keyframes msh-shft {

    0%,
    100% {
        background: radial-gradient(circle at 20% 30%, #84b2d31f 0%, transparent 50%), radial-gradient(circle at 80% 60%, #71c7c914 0%, transparent 50%), radial-gradient(circle at 50% 80%, #78e4b31a 0%, transparent 50%), #fff
    }

    50% {
        background: radial-gradient(circle at 30% 50%, #71c7c91a 0%, transparent 50%), radial-gradient(circle at 70% 40%, #78e4b31f 0%, transparent 50%), radial-gradient(circle at 40% 70%, #84b2d314 0%, transparent 50%), #fff
    }
}

.intrvw-pg .msh-sctn .cntnt-mx {
    max-width: 1170px;
    margin: 0 auto
}

.intrvw-pg .msh-sctn .ovr-ln {
    width: 60px;
    height: 2px;
    background: #78E4B3;
    margin-bottom: 12px
}

.intrvw-pg .msh-sctn h2 {
    font-size: 50px;
    line-height: 1.15;
    color: #2a2a2a;
    margin: 0 0 48px
}

.intrvw-pg .qa-crd {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: inset -1px 3px 5px 0 #71c7c912;
    max-width: 800px
}

.intrvw-pg .qa-crd .qstn {
    font-size: 20px;
    line-height: 1.15;
    color: #2a2a2a;
    margin: 0 0 24px;
    font-weight: 600
}

.intrvw-pg .qa-crd .answr {
    display: grid;
    gap: 12px
}

.intrvw-pg .qa-crd .answr-itm {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start
}

.intrvw-pg .qa-crd .answr-itm .chk-icn {
    width: 24px;
    height: 24px;
    margin-top: 2px
}

.intrvw-pg .qa-crd .answr-itm .chk-icn svg {
    width: 100%;
    height: 100%;
    fill: #78E4B3
}

.intrvw-pg .qa-crd .answr-itm p {
    font-size: 17px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0
}

.intrvw-pg .dvdr-crss {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden
}

.intrvw-pg .dvdr-crss .crss-ln {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px
}

.intrvw-pg .dvdr-crss .crss-shp {
    width: 12px;
    height: 12px;
    position: relative
}

.intrvw-pg .dvdr-crss .crss-shp::before,
.intrvw-pg .dvdr-crss .crss-shp::after {
    content: '';
    position: absolute;
    background: #84B2D3
}

.intrvw-pg .dvdr-crss .crss-shp::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%)
}

.intrvw-pg .dvdr-crss .crss-shp::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%)
}

@media (max-width: 768px) {
    .intrvw-pg .splt-hdr {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .intrvw-pg .splt-hdr .clr-zn-a {
        padding: 48px 24px
    }

    .intrvw-pg .splt-hdr .clr-zn-b {
        min-height: 400px
    }

    .intrvw-pg .splt-hdr h1 {
        font-size: 50px
    }

    .intrvw-pg .pst-grd {
        padding: 48px 24px
    }

    .intrvw-pg .pst-grd h2 {
        font-size: 50px;
        margin-bottom: 24px
    }

    .intrvw-pg .crd-grp {
        grid-template-columns: 1fr
    }

    .intrvw-pg .asym-blk {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 24px
    }

    .intrvw-pg .asym-blk h2 {
        font-size: 50px
    }

    .intrvw-pg .msh-sctn {
        padding: 48px 24px
    }

    .intrvw-pg .msh-sctn h2 {
        font-size: 50px;
        margin-bottom: 24px
    }

    .intrvw-pg .dvdr-crss {
        padding: 24px
    }
}

.abt-pg {
    max-width: 100%;
    overflow-x: clip
}

.abt-pg .intro-bnr {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f1f3f5 100%);
    padding: 96px 24px;
    overflow: hidden
}

.abt-pg .intro-bnr::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 40%, #84b2d326, transparent 60%), radial-gradient(circle at 70% 60%, #71c7c91f, transparent 55%), radial-gradient(circle at 50% 50%, #78e4b31a, transparent 65%);
    transform: translate(-50%, -50%);
    animation: bnr-pulse 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
    z-index: 1
}

@keyframes bnr-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: .85
    }
}

.abt-pg .intro-bnr .geo-shape {
    position: absolute;
    opacity: .06;
    pointer-events: none;
    z-index: 2
}

.abt-pg .intro-bnr .geo-shape.circ-1 {
    top: 48px;
    right: 96px;
    width: 140px;
    height: 140px;
    border: 2px solid #84B2D3;
    border-radius: 50%
}

.abt-pg .intro-bnr .geo-shape.rect-1 {
    bottom: 96px;
    left: 48px;
    width: 180px;
    height: 180px;
    border: 2px solid #71C7C9;
    transform: rotate(25deg)
}

.abt-pg .intro-bnr .geo-shape.tri-1 {
    top: 120px;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid #78e4b314
}

.abt-pg .intro-bnr .ctr-wrap {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
    z-index: 3
}

.abt-pg .intro-bnr .hd-txt {
    font-size: 68px;
    line-height: 1.15;
    color: #1a1a2e;
    margin: 0 0 24px;
    text-align: center
}

.abt-pg .intro-bnr .hd-txt .marked {
    position: relative;
    display: inline-block;
    color: #1a1a2e
}

.abt-pg .intro-bnr .hd-txt .marked::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 12px;
    background: linear-gradient(90deg, #84b2d34d, #71c7c94d);
    z-index: -1
}

.abt-pg .intro-bnr .lead-txt {
    font-size: 20px;
    line-height: 1.65;
    color: #2d3748;
    text-align: center;
    max-width: 780px;
    margin: 0 auto
}

.abt-pg .story-blk {
    background: #fff;
    padding: 96px 24px;
    position: relative
}

.abt-pg .story-blk::before {
    content: 'CL';
    position: absolute;
    top: 48px;
    right: 96px;
    font-size: 280px;
    font-weight: 700;
    color: #84b2d30a;
    line-height: 1;
    pointer-events: none;
    z-index: 1
}

.abt-pg .story-blk .ctr-wrap {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.abt-pg .story-blk .grid-lay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center
}

.abt-pg .story-blk .txt-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .story-blk .ovr-ln {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #84B2D3, #71C7C9);
    margin: 0 0 12px
}

.abt-pg .story-blk .sub-hd {
    font-size: 50px;
    line-height: 1.15;
    color: #1a1a2e;
    margin: 0
}

.abt-pg .story-blk .desc-txt {
    font-size: 17px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0
}

.abt-pg .story-blk .img-col {
    position: relative
}

.abt-pg .story-blk .img-frm {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 4px 28px 0 #84b2d317
}

.abt-pg .story-blk .img-frm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.abt-pg .story-blk .img-frm:hover img {
    transform: scale(1.05)
}

.abt-pg .vals-blk {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 96px 24px;
    position: relative
}

.abt-pg .vals-blk .ctr-wrap {
    max-width: 1170px;
    margin: 0 auto
}

.abt-pg .vals-blk .hd-area {
    text-align: center;
    margin: 0 0 48px
}

.abt-pg .vals-blk .ovr-ln {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #71C7C9, #78E4B3);
    margin: 0 auto 12px
}

.abt-pg .vals-blk .sec-hd {
    font-size: 50px;
    line-height: 1.15;
    color: #1a1a2e;
    margin: 0
}

.abt-pg .vals-blk .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px
}

.abt-pg .vals-blk .val-card {
    background: #fff;
    padding: 48px 24px;
    border-radius: 16px;
    box-shadow: -1px 3px 5px 0 #71c7c912;
    position: relative;
    overflow: hidden;
    transition: box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.abt-pg .vals-blk .val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #84B2D3, #71C7C9, #78E4B3)
}

.abt-pg .vals-blk .val-card:hover {
    box-shadow: -1px 9px 60px 0 #71c7c91f
}

.abt-pg .vals-blk .val-card .inner-wrap {
    position: relative;
    opacity: 1;
    transition: opacity .14s cubic-bezier(0.4, 0, 1, 1)
}

.abt-pg .vals-blk .val-card:hover .inner-wrap {
    opacity: .92
}

.abt-pg .vals-blk .val-card .ico-area {
    width: 68px;
    height: 68px;
    margin: 0 0 24px;
    position: relative
}

.abt-pg .vals-blk .val-card .ico-svg {
    width: 100%;
    height: 100%
}

.abt-pg .vals-blk .val-card .card-hd {
    font-size: 20px;
    line-height: 1.15;
    color: #1a1a2e;
    margin: 0 0 12px
}

.abt-pg .vals-blk .val-card .card-txt {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0
}

.abt-pg .team-blk {
    background: #fff;
    padding: 96px 24px;
    position: relative
}

.abt-pg .team-blk .ctr-wrap {
    max-width: 1170px;
    margin: 0 auto
}

.abt-pg .team-blk .hd-area {
    margin: 0 0 48px
}

.abt-pg .team-blk .ovr-ln {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #78E4B3, #84B2D3);
    margin: 0 0 12px
}

.abt-pg .team-blk .sec-hd {
    font-size: 50px;
    line-height: 1.15;
    color: #1a1a2e;
    margin: 0 0 24px
}

.abt-pg .team-blk .intro-txt {
    font-size: 17px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0;
    max-width: 780px
}

.abt-pg .team-blk .mem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
    margin: 48px 0 0
}

.abt-pg .team-blk .mem-card {
    display: flex;
    gap: 24px;
    align-items: flex-start
}

.abt-pg .team-blk .port-wrap {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    position: relative
}

.abt-pg .team-blk .port-frm {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: -1px 4px 28px 0 #78e4b317;
    position: relative
}

.abt-pg .team-blk .port-frm::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #84b2d333;
    pointer-events: none
}

.abt-pg .team-blk .port-frm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.abt-pg .team-blk .mem-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.abt-pg .team-blk .mem-name {
    font-size: 20px;
    line-height: 1.15;
    color: #1a1a2e;
    margin: 0
}

.abt-pg .team-blk .mem-role {
    font-size: 15px;
    line-height: 1.15;
    color: #71C7C9;
    margin: 0;
    font-weight: 600
}

.abt-pg .team-blk .mem-bio {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0
}

.abt-pg .divider-curve {
    position: relative;
    height: 48px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%)
}

.abt-pg .divider-curve svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

@media (max-width: 768px) {
    .abt-pg .intro-bnr {
        padding: 48px 24px
    }

    .abt-pg .intro-bnr .hd-txt {
        font-size: 50px
    }

    .abt-pg .intro-bnr .lead-txt {
        font-size: 17px
    }

    .abt-pg .intro-bnr .geo-shape.circ-1 {
        width: 80px;
        height: 80px;
        right: 24px;
        top: 24px
    }

    .abt-pg .intro-bnr .geo-shape.rect-1 {
        width: 100px;
        height: 100px;
        left: 24px
    }

    .abt-pg .intro-bnr .geo-shape.tri-1 {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 70px solid #78e4b314
    }

    .abt-pg .story-blk {
        padding: 48px 24px
    }

    .abt-pg .story-blk::before {
        font-size: 180px;
        right: 24px;
        top: 24px
    }

    .abt-pg .story-blk .grid-lay {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .abt-pg .story-blk .sub-hd {
        font-size: 50px
    }

    .abt-pg .vals-blk {
        padding: 48px 24px
    }

    .abt-pg .vals-blk .sec-hd {
        font-size: 50px
    }

    .abt-pg .vals-blk .card-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abt-pg .team-blk {
        padding: 48px 24px
    }

    .abt-pg .team-blk .sec-hd {
        font-size: 50px
    }

    .abt-pg .team-blk .mem-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .abt-pg .team-blk .mem-card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .abt-pg .team-blk .port-wrap {
        width: 140px;
        height: 140px
    }
}

.success-flow {
    background: linear-gradient(circle at 28% 19%, #84b2d314, transparent 41%), linear-gradient(circle at 71% 64%, #71c7c90f, transparent 38%), linear-gradient(circle at 49% 82%, #78e4b30d, transparent 44%), #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px
}

.success-flow .confirm-wrap {
    max-width: 580px;
    width: 100%
}

.success-flow .icon-holder {
    width: 92px;
    height: 92px;
    margin: 0 auto 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-flow .check-ring {
    width: 92px;
    height: 92px;
    border: 3px solid #71C7C9;
    border-radius: 46px;
    position: relative;
    background: #fff;
    box-shadow: -1px 4px 28px 0 #71c7c917
}

.success-flow .check-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px
}

.success-flow .check-mark svg {
    width: 100%;
    height: 100%
}

.success-flow .check-mark path {
    fill: none;
    stroke: #71C7C9;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: draw-check .16s cubic-bezier(0.4, 0, 1, 1) .12s forwards
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0
    }
}

.success-flow .msg-box {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    box-shadow: -1px 3px 5px 0 #84b2d312
}

.success-flow .msg-box h1 {
    font-size: 50px;
    line-height: 1.15;
    color: #1a2b3c;
    margin: 0 0 12px
}

.success-flow .msg-box .status-line {
    font-size: 17px;
    line-height: 1.65;
    color: #5a6c7d;
    margin: 0 0 24px
}

.success-flow .detail-card {
    background: #fafbfc;
    border-radius: 2px;
    padding: 24px;
    margin: 24px 0;
    text-align: right
}

.success-flow .detail-card .info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 0 0 12px
}

.success-flow .detail-card .info-row:last-child {
    margin: 0
}

.success-flow .detail-card .label {
    font-size: 15px;
    line-height: 1.65;
    color: #7a8a9a
}

.success-flow .detail-card .value {
    font-size: 17px;
    line-height: 1.65;
    color: #2a3b4c;
    font-weight: 600
}

.success-flow .next-step {
    font-size: 15px;
    line-height: 1.65;
    color: #6a7b8c;
    margin: 24px 0 0
}

.success-flow .action-set {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 48px 0 0
}

.success-flow .btn-primary {
    background: linear-gradient(128deg, #84B2D3, #71C7C9);
    color: #fff;
    border: none;
    border-radius: 46px;
    padding: 12px 48px;
    font-size: 17px;
    line-height: 1.65;
    cursor: pointer;
    transition: transform .14s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: -1px 3px 5px 0 #84b2d312
}

.success-flow .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: -1px 4px 28px 0 #84b2d317
}

.success-flow .btn-secondary {
    background: transparent;
    color: #84B2D3;
    border: 2px solid #84B2D3;
    border-radius: 46px;
    padding: 10px 24px;
    font-size: 15px;
    line-height: 1.65;
    cursor: pointer;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1)
}

.success-flow .btn-secondary:hover {
    background: #84B2D3;
    color: #fff
}

.success-flow .ref-tag {
    display: inline-block;
    background: #f0f8ff;
    color: #84B2D3;
    padding: 6px 12px;
    border-radius: 2px;
    font-size: 15px;
    line-height: 1.15;
    margin: 0 0 6px;
    font-weight: 600
}

@media (max-width: 768px) {
    .success-flow {
        padding: 24px 12px
    }

    .success-flow .msg-box {
        padding: 24px
    }

    .success-flow .msg-box h1 {
        font-size: 50px
    }

    .success-flow .action-set {
        flex-direction: column;
        gap: 12px
    }

    .success-flow .btn-primary,
    .success-flow .btn-secondary {
        width: 100%
    }

    .success-flow .detail-card .info-row {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px
    }
}