html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
}

.hd-strip {
    background: linear-gradient(90deg, #A656AE 0%, #8a3d93 60%, #7b2f84 100%);
    width: 100%;
}

.hd-strip-pod {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-height: 44px;
}

.hd-strip-pod a {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #f5edf7;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.hd-strip-pod a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(101%);
    transition: transform 0.25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
    border-radius: 5px;
}

.hd-strip-pod a:hover::before {
    transform: translateX(0);
}

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

.hd-strip-pod a:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.hd-strip-pod .sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.hd-strip-pod a.active {
    color: #ffffff;
    font-weight: 700;
}

.hd-main {
    background: #ffffff;
    border-bottom: 1px solid #E9DBED;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.hd-main-pod {
    max-width: 1366px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.brand-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-frame {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #C2A5C0;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07), inset 0 0 0 2px rgba(255, 255, 255, 0.9);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

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

.brand-name {
    font-family: 'Archivo', sans-serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #2d1a30;
}

.brand-sub {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    font-weight: 500;
    margin-top: 2px;
}

.hd-contact-strip {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.hd-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #3d2040;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd-contact-item:hover {
    color: #A656AE;
}

.hd-contact-item:focus {
    outline: none;
    color: #A656AE;
}

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

.ft-root {
    background: linear-gradient(135deg, #2d1a30 0%, #3d2040 50%, #4a2650 100%);
    padding: 48px 0 24px;
}

.ft-pod {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.ft-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(194, 165, 192, 0.2);
    flex-wrap: wrap;
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.ft-logo-frame {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    border: 1px solid rgba(194, 165, 192, 0.5);
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07), 0 0 0 3px rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.ft-logo-frame img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.ft-brand-name {
    font-family: 'Archivo', sans-serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #f5edf7;
}

.ft-links-deck {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ft-links-deck a {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #C2A5C0;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.ft-links-deck a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(166, 86, 174, 0.18);
    transform: translateX(101%);
    transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
    border-radius: 5px;
}

.ft-links-deck a:hover::before {
    transform: translateX(0);
}

.ft-links-deck a:hover {
    color: #f5edf7;
}

.ft-links-deck a:focus {
    outline: none;
    background: rgba(166, 86, 174, 0.22);
    color: #f5edf7;
}

.ft-links-deck .sep {
    width: 1px;
    height: 14px;
    background: rgba(194, 165, 192, 0.25);
    flex-shrink: 0;
}

.ft-bottom {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ft-copy {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(194, 165, 192, 0.65);
}

.ft-addr {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(194, 165, 192, 0.55);
    display: flex;
    align-items: center;
    gap: 6px;
}

.ft-addr-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.6;
}

.ck-bar {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 48px);
    max-width: 560px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11), 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    border: 1px solid #E9DBED;
    z-index: 1500;
    font-family: 'Archivo', sans-serif;
    overflow: hidden;
}

.ck-main {
    padding: 24px;
}

.ck-txt {
    font-size: 14px;
    line-height: 1.65;
    color: #2d1a30;
    margin: 0 0 12px;
}

.ck-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ck-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.ck-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(101%);
    transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
}

.ck-btn:hover::before {
    transform: translateX(0);
}

.ck-accept {
    background: #A656AE;
    color: #ffffff;
}

.ck-accept::before {
    background: #7b2f84;
}

.ck-accept:focus {
    outline: none;
    background: #7b2f84;
}

.ck-reject {
    background: #E9DBED;
    color: #2d1a30;
}

.ck-reject::before {
    background: #C2A5C0;
}

.ck-reject:focus {
    outline: none;
    background: #C2A5C0;
}

.ck-manage-btn {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 6px;
    display: inline-block;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-manage-btn:hover {
    color: #7b2f84;
}

.ck-manage-btn:focus {
    outline: none;
    color: #7b2f84;
}

.ck-panel {
    border-top: 1px solid #E9DBED;
    padding: 12px 24px 24px;
    display: none;
}

.ck-panel.open {
    display: block;
}

.ck-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E9DBED;
    gap: 12px;
}

.ck-cat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ck-cat-label {
    font-size: 14px;
    line-height: 1.4;
    color: #2d1a30;
    font-weight: 500;
}

.ck-cat-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #6b5070;
    margin-top: 2px;
}

.ck-toggle-wrap {
    flex-shrink: 0;
}

.ck-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    display: inline-block;
}

.ck-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ck-slider {
    position: absolute;
    inset: 0;
    background: #E9DBED;
    border-radius: 40px;
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.ck-slider::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 40px;
    background: #ffffff;
    top: 3px;
    left: 3px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
}

.ck-toggle input:checked+.ck-slider {
    background: #A656AE;
}

.ck-toggle input:checked+.ck-slider::after {
    transform: translateX(18px);
}

.ck-toggle input:focus+.ck-slider {
    outline: 2px solid #A656AE;
    outline-offset: 2px;
}

.ck-always-on {
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    font-weight: 700;
    flex-shrink: 0;
}

.ck-save-btn {
    margin-top: 12px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    border: none;
    background: #A656AE;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.ck-save-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #7b2f84;
    transform: translateX(101%);
    transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
}

.ck-save-btn:hover::before {
    transform: translateX(0);
}

.ck-save-btn:focus {
    outline: none;
    background: #7b2f84;
}

@media (max-width: 1200px) {
    .hd-strip-pod {
        padding: 0 24px;
    }

    .hd-main-pod {
        padding: 24px;
        gap: 24px;
    }

    .ft-pod {
        padding: 0 24px;
    }
}

@media (max-width: 900px) {
    .hd-contact-strip {
        display: none;
    }

    .hd-main-pod {
        flex-wrap: wrap;
        gap: 12px;
    }

    .ft-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .hd-strip-pod {
        padding: 0 12px;
        gap: 0;
        flex-wrap: wrap;
        min-height: auto;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .hd-strip-pod a {
        padding: 6px 6px;
        font-size: 14px;
    }

    .hd-main-pod {
        padding: 12px;
    }

    .ft-pod {
        padding: 0 12px;
    }

    .ft-links-deck {
        gap: 0;
    }

    .ck-btns {
        flex-direction: column;
    }

    .ck-btn {
        min-width: unset;
    }
}

.terms-content {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 48px;
}

.terms-content h1 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b1b2e;
    margin-bottom: 24px;
    margin-top: 0;
}

.terms-content h2 {
    font-size: 29px;
    line-height: 1.4;
    letter-spacing: -0.015em;
    color: #1b1b2e;
    margin-top: 48px;
    margin-bottom: 24px;
}

.terms-content h3 {
    font-size: 29px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #2a1f2e;
    margin-top: 48px;
    margin-bottom: 12px;
}

.terms-content h4 {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #A656AE;
    margin-top: 24px;
    margin-bottom: 12px;
}

.terms-content h5 {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0.04em;
    color: #2a1f2e;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 6px;
}

.terms-content h6 {
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: #5a4a60;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 6px;
}

.terms-content p {
    font-size: 14px;
    line-height: 1.85;
    color: #2f2535;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 72ch;
}

.terms-content ul,
.terms-content ol {
    font-size: 14px;
    line-height: 1.85;
    color: #2f2535;
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    max-width: 72ch;
}

.terms-content ul {
    list-style: none;
    padding-left: 0;
}

.terms-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 6px;
}

.terms-content ul li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 40px;
    background-color: #A656AE;
}

.terms-content ol {
    list-style: decimal;
}

.terms-content ol li {
    margin-bottom: 6px;
    padding-left: 6px;
}

.terms-content ol li::marker {
    color: #A656AE;
    font-weight: 600;
}

.terms-content ul ul,
.terms-content ol ol,
.terms-content ul ol,
.terms-content ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
}

.terms-content em,
.terms-content i {
    font-style: italic;
    color: #5a3d60;
}

.terms-content a {
    color: #A656AE;
    text-decoration: underline;
    text-decoration-color: #C2A5C0;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.18s cubic-bezier(0.0, 0, 0.2, 1);
}

.terms-content a:hover {
    color: #7a3a82;
    text-decoration-color: #A656AE;
}

.terms-content a:focus-visible {
    outline: 2px solid #A656AE;
    outline-offset: 2px;
    border-radius: 5px;
}

.terms-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.65;
    color: #2f2535;
    margin-bottom: 48px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    border-radius: 10px;
    overflow: hidden;
}

.terms-content thead {
    background-color: #E9DBED;
}

.terms-content thead th {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5a2e62;
    padding: 12px 24px;
    text-align: left;
    border-bottom: 2px solid #C2A5C0;
}

.terms-content tbody tr {
    border-bottom: 1px solid #E9DBED;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-content tbody tr:last-child {
    border-bottom: none;
}

.terms-content tbody tr:hover {
    background-color: #f7f1f8;
}

.terms-content td {
    padding: 12px 24px;
    vertical-align: top;
    color: #2f2535;
}

.terms-content tbody tr:nth-child(even) {
    background-color: #fbf8fc;
}

.terms-content tbody tr:nth-child(even):hover {
    background-color: #f7f1f8;
}

.terms-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C2A5C0 30%, #C2A5C0 70%, transparent);
    margin-top: 48px;
    margin-bottom: 48px;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .terms-content {
        padding: 48px 24px;
    }

    .terms-content h1 {
        font-size: 55px;
    }

    .terms-content h2 {
        font-size: 29px;
        margin-top: 48px;
    }

    .terms-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 600px) {
    .terms-content {
        padding: 48px 12px;
    }

    .terms-content h1 {
        font-size: 29px;
        letter-spacing: -0.01em;
    }

    .terms-content h2 {
        font-size: 29px;
        margin-top: 48px;
    }

    .terms-content h3 {
        margin-top: 24px;
    }

    .terms-content p,
    .terms-content ul,
    .terms-content ol {
        max-width: 100%;
    }

    .terms-content thead th,
    .terms-content td {
        padding: 12px;
    }

    .terms-content hr {
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.st-proj {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip;
}

.st-proj .div-diamond {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.st-proj .div-diamond span {
    flex: 1;
    height: 1px;
    background: #C2A5C0;
    max-width: 80px;
}

.st-proj .div-diamond i {
    width: 8px;
    height: 8px;
    background: #A656AE;
    transform: rotate(45deg);
    display: block;
    flex-shrink: 0;
}

.st-proj .accent-dash {
    color: #A656AE;
    font-weight: 700;
    margin: 0 4px;
}

.st-proj .circ-dot {
    width: 10px;
    height: 10px;
    border-radius: 40px;
    background: #A656AE;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 5px;
}

.st-proj .left-bar {
    border-left: 3px solid #A656AE;
    padding-left: 12px;
}

.st-proj .tag-badge {
    display: inline-block;
    background: #E9DBED;
    color: #5a2e60;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid #C2A5C0;
}

.st-proj .tag-sm {
    background: #A656AE;
    color: #fff;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1.4;
}

.st-proj .tb {
    padding: 48px 48px 24px;
    background: #fff;
    border-bottom: 1px solid #E9DBED;
}

.st-proj .tb-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1366px;
}

.st-proj .tb-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.st-proj .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.st-proj .tb-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(166, 86, 174, 0.38) 0%, transparent 60%);
    pointer-events: none;
}

.st-proj .tb-flow-line {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 48px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
}

.st-proj .tb-flow-line::after {
    content: "";
    position: absolute;
    right: -6px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #fff;
}

.st-proj .tb-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.st-proj .tb-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.st-proj .tb-h1 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b0d1e;
    margin: 0;
}

.st-proj .tb-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #3d2040;
    max-width: 520px;
    margin: 0;
}

.st-proj .tb-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.st-proj .tb-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.st-proj .tb-stat strong {
    font-size: 29px;
    line-height: 1.15;
    color: #A656AE;
    letter-spacing: -0.01em;
}

.st-proj .tb-stat span {
    font-size: 14px;
    line-height: 1.4;
    color: #5a2e60;
}

.st-proj .tb-dashed {
    border: none;
    border-top: 1px dashed #C2A5C0;
    margin: 0;
}

.st-proj .pg {
    padding: 48px;
    background: #f7f2f8;
}

.st-proj .pg-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.st-proj .pg-h2 {
    font-size: 29px;
    line-height: 1.15;
    color: #1b0d1e;
    margin: 0;
    letter-spacing: -0.01em;
}

.st-proj .pg-sub {
    font-size: 14px;
    line-height: 1.65;
    color: #3d2040;
    max-width: 420px;
    margin: 0;
}

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

.st-proj .proj-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E9DBED;
}

.st-proj .proj-card:hover {
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
    transform: translateY(-3px);
}

.st-proj .proj-card-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.st-proj .proj-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #E9DBED;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.st-proj .proj-icon svg {
    width: 22px;
    height: 22px;
}

.st-proj .proj-card-h {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #1b0d1e;
    margin: 0;
}

.st-proj .proj-card-p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d2040;
    margin: 0;
    flex: 1;
}

.st-proj .proj-card-student {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding-top: 6px;
    border-top: 1px solid #E9DBED;
}

.st-proj .proj-card-student span {
    font-size: 14px;
    line-height: 1.4;
    color: #5a2e60;
}

.st-proj .proj-card-student strong {
    font-size: 14px;
    line-height: 1.4;
    color: #1b0d1e;
}

.st-proj .feat {
    padding: 96px 48px;
    background: #1b0d1e;
    position: relative;
}

.st-proj .feat-bg {
    position: absolute;
    inset: 0;
    background-image: url('./visual_library/main-02_07-30.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.25);
    border-radius: 0;
    pointer-events: none;
}

.st-proj .feat-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.st-proj .feat-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.st-proj .feat-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.st-proj .feat-label-dot {
    width: 10px;
    height: 10px;
    border-radius: 40px;
    background: #A656AE;
    flex-shrink: 0;
}

.st-proj .feat-label span {
    font-size: 14px;
    line-height: 1.4;
    color: #C2A5C0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.st-proj .feat-h2 {
    font-size: 55px;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
}

.st-proj .feat-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #d4bcd8;
    margin: 0;
}

.st-proj .feat-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.st-proj .feat-metric {
    background: rgba(162, 86, 174, 0.15);
    border: 1px solid rgba(194, 165, 192, 0.25);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: inset 0 1px 6px -2px rgba(166, 86, 174, 0.18);
    animation: contrast-breathe 5s ease-in-out infinite;
}

.st-proj .feat-metric:nth-child(2) {
    animation-delay: 1.2s;
}

.st-proj .feat-metric:nth-child(3) {
    animation-delay: 2.4s;
}

.st-proj .feat-metric:nth-child(4) {
    animation-delay: 3.6s;
}

@keyframes contrast-breathe {

    0%,
    100% {
        filter: contrast(1);
    }

    50% {
        filter: contrast(1.06);
    }
}

.st-proj .feat-metric strong {
    font-size: 29px;
    line-height: 1.15;
    color: #A656AE;
    letter-spacing: -0.01em;
}

.st-proj .feat-metric span {
    font-size: 14px;
    line-height: 1.4;
    color: #C2A5C0;
}

.st-proj .feat-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.st-proj .feat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(194, 165, 192, 0.18);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-proj .feat-item:hover {
    background: rgba(166, 86, 174, 0.12);
    border-color: rgba(166, 86, 174, 0.4);
}

.st-proj .feat-item-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.st-proj .feat-item-num {
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    font-weight: 700;
    min-width: 28px;
}

.st-proj .feat-item-h {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.st-proj .feat-item-p {
    font-size: 14px;
    line-height: 1.65;
    color: #d4bcd8;
    margin: 0;
    padding-left: 40px;
}

.st-proj .feat-dashed {
    border: none;
    border-top: 1px dashed rgba(194, 165, 192, 0.3);
    margin: 0;
}

.st-proj .rec {
    padding: 48px;
    background: #fff;
}

.st-proj .rec-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.st-proj .rec-h2 {
    font-size: 29px;
    line-height: 1.15;
    color: #1b0d1e;
    margin: 0;
    letter-spacing: -0.01em;
}

.st-proj .rec-intro {
    font-size: 14px;
    line-height: 1.65;
    color: #3d2040;
    max-width: 480px;
    margin: 0;
}

.st-proj .rec-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.st-proj .rec-row {
    display: grid;
    grid-template-columns: 48px 1fr 1fr 160px;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #E9DBED;
    background: #f7f2f8;
    transition: box-shadow 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}

.st-proj .rec-row:hover {
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.st-proj .rec-num {
    font-size: 29px;
    line-height: 1.15;
    color: #C2A5C0;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.st-proj .rec-student-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.st-proj .rec-name {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #1b0d1e;
}

.st-proj .rec-detail {
    font-size: 14px;
    line-height: 1.4;
    color: #5a2e60;
}

.st-proj .rec-proj-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.st-proj .rec-proj-name {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #3d2040;
}

.st-proj .rec-proj-cat {
    font-size: 14px;
    line-height: 1.4;
    color: #5a2e60;
}

.st-proj .rec-score-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.st-proj .rec-score-bar {
    width: 100%;
    height: 6px;
    background: #E9DBED;
    border-radius: 5px;
    overflow: hidden;
}

.st-proj .rec-score-fill {
    height: 100%;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    border-radius: 5px;
    transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-proj .rec-score-val {
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    font-weight: 700;
}

.st-proj .und-link {
    position: relative;
    display: inline-block;
    color: #A656AE;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 2px;
}

.st-proj .und-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #A656AE;
    border-radius: 5px;
    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1), right 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-proj .und-link:hover::after,
.st-proj .und-link:focus::after {
    left: 0;
    right: 0;
}

.st-proj .und-link:focus {
    outline: 2px solid #A656AE;
    outline-offset: 3px;
    border-radius: 5px;
}

.st-proj .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1b0d1e;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.st-proj .btn-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #A656AE;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.st-proj .btn-dark:hover::before,
.st-proj .btn-dark:focus::before {
    transform: translateX(0);
}

.st-proj .btn-dark span,
.st-proj .btn-dark ion-icon {
    position: relative;
    z-index: 1;
}

.st-proj .btn-dark:focus {
    outline: 2px solid #A656AE;
    outline-offset: 3px;
}

@media (max-width: 1200px) {
    .st-proj .tb-grid {
        grid-template-columns: 280px 1fr;
        gap: 24px;
    }

    .st-proj .pg-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .st-proj .feat-body {
        grid-template-columns: 1fr;
    }

    .st-proj .feat-h2 {
        font-size: 29px;
    }

    .st-proj .feat {
        padding: 48px;
    }
}

@media (max-width: 900px) {
    .st-proj .tb {
        padding: 24px;
    }

    .st-proj .tb-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .st-proj .tb-h1 {
        font-size: 29px;
    }

    .st-proj .tb-img-wrap {
        aspect-ratio: 16/7;
    }

    .st-proj .pg {
        padding: 24px;
    }

    .st-proj .pg-grid {
        grid-template-columns: 1fr;
    }

    .st-proj .feat {
        padding: 24px;
    }

    .st-proj .rec {
        padding: 24px;
    }

    .st-proj .rec-row {
        grid-template-columns: 36px 1fr 1fr;
    }

    .st-proj .rec-score-wrap {
        grid-column: 2 / 4;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .st-proj .tb-h1 {
        font-size: 29px;
    }

    .st-proj .tb-meta {
        gap: 12px;
    }

    .st-proj .rec-row {
        grid-template-columns: 1fr;
    }

    .st-proj .rec-num {
        display: none;
    }

    .st-proj .feat-metrics {
        grid-template-columns: 1fr;
    }

    .st-proj .feat-item-p {
        padding-left: 0;
    }
}

.cmp-pg {
    width: 100%;
    overflow-x: hidden;
}

.cmp-pg *,
.cmp-pg *::before,
.cmp-pg *::after {
    box-sizing: border-box;
}

@keyframes clip-reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

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

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes char-shift {

    0%,
    100% {
        color: inherit;
    }

    50% {
        color: #A656AE;
    }
}

.cmp-pg .schema-data {
    display: none;
}

.cmp-pg .ttl-band {
    background: #fff;
    padding: 48px 0 0 0;
    position: relative;
}

.cmp-pg .ttl-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
    min-height: 220px;
}

.cmp-pg .ttl-text-zone {
    flex: 1 1 60%;
    padding-bottom: 48px;
    position: relative;
}

.cmp-pg .ttl-deco-quote {
    position: absolute;
    top: -24px;
    left: -12px;
    font-size: 160px;
    line-height: 1.15;
    color: #E9DBED;
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.cmp-pg .ttl-strokes {
    position: absolute;
    top: 12px;
    right: -6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.cmp-pg .ttl-strokes span {
    display: block;
    height: 2px;
    background: #C2A5C0;
    border-radius: 5px;
}

.cmp-pg .ttl-strokes span:nth-child(1) {
    width: 28px;
}

.cmp-pg .ttl-strokes span:nth-child(2) {
    width: 20px;
}

.cmp-pg .ttl-strokes span:nth-child(3) {
    width: 34px;
}

.cmp-pg .ttl-strokes span:nth-child(4) {
    width: 16px;
}

.cmp-pg .ttl-h1 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1200;
    color: #2a1f00;
    color: #221900;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
    animation: fade-up 0.28s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.cmp-pg .ttl-h1 .grad-word {
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.cmp-pg .ttl-h1 .deco-ul {
    display: inline;
    position: relative;
}

.cmp-pg .ttl-h1 .deco-ul::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    border-radius: 5px;
}

.cmp-pg .ttl-sub {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3f30;
    max-width: 480px;
    position: relative;
    z-index: 1;
    animation: fade-up 0.26s 0.1s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.cmp-pg .ttl-img-zone {
    flex: 0 0 320px;
    align-self: flex-end;
}

.cmp-pg .ttl-img-wrap {
    width: 320px;
    height: 200px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    filter: brightness(1.04) saturate(1.1) sepia(0.08);
    animation: clip-reveal 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.cmp-pg .ttl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cmp-pg .ttl-divider {
    border: none;
    border-top: 1.5px solid #C2A5C0;
    border-bottom: 1.5px solid #E9DBED;
    margin: 0;
}

.cmp-pg .ba-sec {
    background: #f5f0f6;
    padding: 96px 0;
}

.cmp-pg .ba-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.cmp-pg .ba-hd-row {
    margin-bottom: 48px;
    padding-left: 16px;
    border-left: 4px solid #A656AE;
}

.cmp-pg .ba-hd {
    font-size: 29px;
    line-height: 1.4;
    color: #221900;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.cmp-pg .ba-hd .accent-dash {
    color: #A656AE;
    font-weight: 700;
}

.cmp-pg .ba-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3f30;
    max-width: 520px;
    margin: 0;
}

.cmp-pg .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cmp-pg .ba-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cmp-pg .ba-col-head {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 10px 10px 0 0;
}

.cmp-pg .ba-col.before .ba-col-head {
    background: #E9DBED;
    color: #5a3060;
}

.cmp-pg .ba-col.after .ba-col-head {
    background: #A656AE;
    color: #fff;
}

.cmp-pg .ba-entry-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.cmp-pg .ba-entry-mark .mark-dot {
    width: 8px;
    height: 8px;
    border-radius: 40px;
    flex-shrink: 0;
}

.cmp-pg .ba-col.before .mark-dot {
    background: #C2A5C0;
}

.cmp-pg .ba-col.after .mark-dot {
    background: #A656AE;
}

.cmp-pg .ba-entry-mark .mark-txt {
    font-size: 14px;
    line-height: 1.65;
    color: #2a1f00;
}

.cmp-pg .ba-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cmp-pg .ba-card-label {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #5a3060;
    margin: 0 0 6px 0;
}

.cmp-pg .ba-entry-exit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 5px;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
}

.cmp-pg .ba-entry {
    background: #E9DBED;
    color: #5a3060;
}

.cmp-pg .ba-exit {
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    color: #fff;
}

.cmp-pg .ba-entry-exit ion-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.cmp-pg .plans-sec {
    background: #221900;
    padding: 96px 0;
    position: relative;
}

.cmp-pg .plans-deco-strokes {
    position: absolute;
    bottom: 48px;
    right: 48px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.cmp-pg .plans-deco-strokes span {
    display: block;
    height: 2px;
    background: #A656AE;
    border-radius: 5px;
    opacity: 0.4;
}

.cmp-pg .plans-deco-strokes span:nth-child(1) {
    width: 40px;
}

.cmp-pg .plans-deco-strokes span:nth-child(2) {
    width: 28px;
}

.cmp-pg .plans-deco-strokes span:nth-child(3) {
    width: 52px;
}

.cmp-pg .plans-deco-strokes span:nth-child(4) {
    width: 22px;
}

.cmp-pg .plans-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.cmp-pg .plans-hd-row {
    margin-bottom: 48px;
    padding-left: 16px;
    border-left: 4px solid #A656AE;
}

.cmp-pg .plans-hd {
    font-size: 29px;
    line-height: 1.4;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.cmp-pg .plans-sub {
    font-size: 14px;
    line-height: 1.65;
    color: #C2A5C0;
    max-width: 500px;
    margin: 0;
}

.cmp-pg .plans-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
}

.cmp-pg .plans-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #2e2310;
    border-radius: 10px;
}

.cmp-pg .plans-table thead tr {
    background: #3a2d18;
}

.cmp-pg .plans-table th {
    padding: 24px;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #A656AE;
}

.cmp-pg .plans-table th:first-child {
    border-radius: 10px 0 0 0;
}

.cmp-pg .plans-table th:last-child {
    border-radius: 0 10px 0 0;
}

.cmp-pg .plans-table th.col-grp {
    background: rgba(166, 86, 174, 0.18);
    color: #C2A5C0;
}

.cmp-pg .plans-table th.col-priv {
    background: rgba(166, 86, 174, 0.30);
    color: #fff;
}

.cmp-pg .plans-table td {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.65;
    color: #d4c4b0;
    border-bottom: 1px solid rgba(194, 165, 192, 0.12);
    vertical-align: middle;
}

.cmp-pg .plans-table td:first-child {
    color: #fff;
    font-weight: 600;
}

.cmp-pg .plans-table tr:last-child td {
    border-bottom: none;
}

.cmp-pg .plans-table tr:hover td {
    background: rgba(166, 86, 174, 0.07);
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-pg .chk-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 40px;
    background: #A656AE;
}

.cmp-pg .chk-yes svg {
    width: 12px;
    height: 12px;
}

.cmp-pg .chk-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 40px;
    background: rgba(194, 165, 192, 0.15);
}

.cmp-pg .chk-no svg {
    width: 10px;
    height: 10px;
}

.cmp-pg .badge-grp {
    display: inline-block;
    background: rgba(166, 86, 174, 0.18);
    color: #C2A5C0;
    font-size: 14px;
    padding: 2px 12px;
    border-radius: 40px;
    font-weight: 600;
}

.cmp-pg .badge-priv {
    display: inline-block;
    background: rgba(166, 86, 174, 0.35);
    color: #fff;
    font-size: 14px;
    padding: 2px 12px;
    border-radius: 40px;
    font-weight: 600;
}

.cmp-pg .detail-sec {
    background: #fff;
    padding: 96px 0;
}

.cmp-pg .detail-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.cmp-pg .detail-hd-row {
    margin-bottom: 48px;
    text-align: center;
}

.cmp-pg .detail-hd {
    font-size: 29px;
    line-height: 1.4;
    color: #221900;
    letter-spacing: -0.02em;
    margin: 0 0 6px 0;
}

.cmp-pg .detail-hd .deco-ul {
    position: relative;
    display: inline;
}

.cmp-pg .detail-hd .deco-ul::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    border-radius: 5px;
}

.cmp-pg .detail-sub {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3f30;
    max-width: 420px;
    margin: 12px auto 0 auto;
}

.cmp-pg .detail-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.cmp-pg .detail-col-a {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cmp-pg .detail-col-b {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.cmp-pg .d-card {
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    position: relative;
    background: #fff;
    border: 1px solid #E9DBED;
    transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-pg .d-card:hover {
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
    border-color: #C2A5C0;
}

.cmp-pg .d-card-tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 12px;
    border-radius: 40px;
    margin-bottom: 12px;
}

.cmp-pg .tag-grp {
    background: #E9DBED;
    color: #5a3060;
}

.cmp-pg .tag-priv {
    background: #A656AE;
    color: #fff;
}

.cmp-pg .d-card-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #221900;
    margin: 0 0 6px 0;
    padding-left: 12px;
    border-left: 3px solid #A656AE;
}

.cmp-pg .d-card-body {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3f30;
    margin: 0;
}

.cmp-pg .d-card-entry {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #E9DBED;
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    font-weight: 600;
}

.cmp-pg .d-card-entry ion-icon {
    font-size: 16px;
}

.cmp-pg .d-card-exit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: #C2A5C0;
    font-weight: 600;
}

.cmp-pg .d-card-exit ion-icon {
    font-size: 16px;
}

.cmp-pg .detail-cta-row {
    margin-top: 48px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.cmp-pg .btn-dark {
    display: inline-block;
    padding: 12px 48px;
    background: #221900;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-pg .btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #A656AE;
    transform: translateX(100%);
    transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cmp-pg .btn-dark:hover::before {
    transform: translateX(0);
}

.cmp-pg .btn-dark span {
    position: relative;
    z-index: 1;
}

.cmp-pg .btn-outline {
    display: inline-block;
    padding: 12px 48px;
    background: transparent;
    color: #221900;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #221900;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-pg .btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #221900;
    transform: translateX(100%);
    transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cmp-pg .btn-outline:hover::before {
    transform: translateX(0);
}

.cmp-pg .btn-outline:hover {
    color: #fff;
}

.cmp-pg .btn-outline span {
    position: relative;
    z-index: 1;
}

.cmp-pg .char-hover {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
}

.cmp-pg .char-hover .ch {
    display: inline-block;
    transition: color 0.08s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmp-pg .char-hover:hover .ch:nth-child(1) {
    color: #A656AE;
    transition-delay: 0s;
}

.cmp-pg .char-hover:hover .ch:nth-child(2) {
    color: #A656AE;
    transition-delay: 0.04s;
}

.cmp-pg .char-hover:hover .ch:nth-child(3) {
    color: #A656AE;
    transition-delay: 0.08s;
}

.cmp-pg .char-hover:hover .ch:nth-child(4) {
    color: #A656AE;
    transition-delay: 0.12s;
}

.cmp-pg .char-hover:hover .ch:nth-child(5) {
    color: #A656AE;
    transition-delay: 0.16s;
}

.cmp-pg .char-hover:hover .ch:nth-child(6) {
    color: #A656AE;
    transition-delay: 0.20s;
}

.cmp-pg .char-hover:hover .ch:nth-child(7) {
    color: #A656AE;
    transition-delay: 0.24s;
}

.cmp-pg .char-hover:hover .ch:nth-child(8) {
    color: #A656AE;
    transition-delay: 0.28s;
}

.cmp-pg .char-hover:hover .ch:nth-child(9) {
    color: #A656AE;
    transition-delay: 0.32s;
}

.cmp-pg .char-hover:hover .ch:nth-child(10) {
    color: #A656AE;
    transition-delay: 0.36s;
}

.cmp-pg .char-hover:hover .ch:nth-child(11) {
    color: #A656AE;
    transition-delay: 0.40s;
}

.cmp-pg .char-hover:hover .ch:nth-child(12) {
    color: #A656AE;
    transition-delay: 0.44s;
}

.cmp-pg .dbl-divider {
    border: none;
    border-top: 1.5px solid #C2A5C0;
    margin: 0;
    position: relative;
}

.cmp-pg .dbl-divider::after {
    content: '';
    display: block;
    border-top: 1px solid #E9DBED;
    margin-top: 3px;
}

.cmp-pg .narrow-p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .cmp-pg .ttl-inner {
        padding: 0 24px;
        gap: 24px;
    }

    .cmp-pg .ba-inner,
    .cmp-pg .plans-inner,
    .cmp-pg .detail-inner {
        padding: 0 24px;
    }

    .cmp-pg .ttl-img-wrap {
        width: 240px;
        height: 160px;
    }

    .cmp-pg .ttl-img-zone {
        flex: 0 0 240px;
    }
}

@media (max-width: 900px) {
    .cmp-pg .ttl-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 24px;
    }

    .cmp-pg .ttl-img-zone {
        flex: 0 0 auto;
        width: 100%;
    }

    .cmp-pg .ttl-img-wrap {
        width: 100%;
        height: 180px;
    }

    .cmp-pg .ttl-h1 {
        font-size: 29px;
    }

    .cmp-pg .ba-grid {
        grid-template-columns: 1fr;
    }

    .cmp-pg .detail-cols {
        grid-template-columns: 1fr;
    }

    .cmp-pg .detail-col-b {
        margin-top: 0;
    }

    .cmp-pg .ba-sec,
    .cmp-pg .plans-sec,
    .cmp-pg .detail-sec {
        padding: 48px 0;
    }

    .cmp-pg .detail-cta-row {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .cmp-pg .ttl-inner {
        padding: 0 12px;
    }

    .cmp-pg .ba-inner,
    .cmp-pg .plans-inner,
    .cmp-pg .detail-inner {
        padding: 0 12px;
    }

    .cmp-pg .ttl-h1 {
        font-size: 29px;
    }

    .cmp-pg .plans-sec {
        padding: 48px 0;
    }

    .cmp-pg .btn-dark,
    .cmp-pg .btn-outline {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .cmp-pg .detail-cta-row {
        flex-direction: column;
        gap: 12px;
    }
}

.lrn-prog {
    background: #fff;
    overflow-x: clip;
}

.lrn-prog * {
    box-sizing: border-box;
}

.lrn-prog .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 900px) {
    .lrn-prog .pg-wrap {
        padding: 0 24px;
    }
}

@media (max-width: 600px) {
    .lrn-prog .pg-wrap {
        padding: 0 12px;
    }
}

.lrn-prog .divider-rad {
    width: 100%;
    height: 2px;
    background: radial-gradient(ellipse at 50% 50%, #A656AE 0%, #C2A5C0 40%, transparent 100%);
    border: none;
    margin: 0;
}

.lrn-prog ::selection {
    background: #A656AE;
    color: #fff;
}

.lrn-prog .accent-dash {
    color: #A656AE;
    margin: 0 4px;
}

.lrn-prog .tag-pill {
    display: inline-block;
    background: #E9DBED;
    color: #4a2050;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lrn-prog .tag-pill.accent {
    background: #A656AE;
    color: #fff;
}

.lrn-prog .tag-pill.mid {
    background: #C2A5C0;
    color: #2d0f33;
}

.lrn-prog .btn-dark {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: #2d0f33;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 24px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.lrn-prog .btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #A656AE;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
}

.lrn-prog .btn-dark:hover::before,
.lrn-prog .btn-dark:focus::before {
    transform: translateX(0);
}

.lrn-prog .btn-dark:focus {
    outline: 3px solid #A656AE;
    outline-offset: 3px;
}

.lrn-prog .btn-light {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #2d0f33;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 24px;
    border-radius: 5px;
    border: 2px solid #fff;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.lrn-prog .btn-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #E9DBED;
    transform: translateX(100%);
    transition: transform 0.25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
}

.lrn-prog .btn-light:hover::before,
.lrn-prog .btn-light:focus::before {
    transform: translateX(0);
}

.lrn-prog .btn-light:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.lrn-prog .left-line {
    border-left: 4px solid #A656AE;
    padding-left: 12px;
}

.lrn-prog .title-blk {
    padding: 96px 0 48px;
    background: #fff;
    position: relative;
}

.lrn-prog .title-blk .dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background-image: radial-gradient(circle, #C2A5C0 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
}

.lrn-prog .title-blk .tb-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .lrn-prog .title-blk .tb-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.lrn-prog .title-blk .tb-text {
    padding-right: 48px;
}

@media (max-width: 900px) {
    .lrn-prog .title-blk .tb-text {
        padding-right: 0;
    }
}

.lrn-prog .title-blk .tb-text .pre-label {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.lrn-prog .title-blk .tb-text h1 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a0520;
    margin: 0 0 24px;
    font-weight: 800;
}

@media (max-width: 600px) {
    .lrn-prog .title-blk .tb-text h1 {
        font-size: 29px;
    }
}

.lrn-prog .title-blk .tb-text .sub-p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d1545;
    margin: 0 0 24px;
    max-width: 420px;
}

.lrn-prog .title-blk .tb-text .stat-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.lrn-prog .title-blk .tb-text .stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lrn-prog .title-blk .tb-text .stat-num {
    font-size: 29px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a0520;
    letter-spacing: -0.02em;
}

.lrn-prog .title-blk .tb-text .stat-num .int-part {
    color: #1a0520;
}

.lrn-prog .title-blk .tb-text .stat-num .frac-part {
    color: #A656AE;
}

.lrn-prog .title-blk .tb-text .stat-lbl {
    font-size: 14px;
    line-height: 1.4;
    color: #6b3878;
}

.lrn-prog .title-blk .tb-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.lrn-prog .title-blk .tb-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.lrn-prog .title-blk .tb-img:hover img {
    transform: scale(1.03);
}

.lrn-prog .title-blk .tb-img .vignette {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(26, 5, 32, 0.55) 100%);
    pointer-events: none;
}

.lrn-prog .title-blk .tb-img .img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(26, 5, 32, 0);
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.lrn-prog .title-blk .tb-img:hover .img-overlay {
    background: rgba(166, 86, 174, 0.55);
    pointer-events: none;
}

.lrn-prog .title-blk .tb-img .img-overlay-txt {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 24px;
}

.lrn-prog .title-blk .tb-img:hover .img-overlay-txt {
    opacity: 1;
}

@keyframes reveal-scale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lrn-prog .title-blk .tb-inner {
    animation: reveal-scale 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.lrn-prog .prog-struct {
    padding: 96px 0 48px;
    background: conic-gradient(from 107deg at 30% 60%, #E9DBED 0%, #C2A5C0 40%, #E9DBED 100%);
}

.lrn-prog .prog-struct .ps-head {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.lrn-prog .prog-struct .ps-head h2 {
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1a0520;
    margin: 0 0 12px;
    font-weight: 800;
}

.lrn-prog .prog-struct .ps-head p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d1545;
    margin: 0;
}

.lrn-prog .prog-struct .ps-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    align-items: start;
}

@media (max-width: 900px) {
    .lrn-prog .prog-struct .ps-grid {
        grid-template-columns: 1fr;
    }
}

.lrn-prog .prog-struct .ps-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lrn-prog .prog-struct .ps-sidebar .sdb-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lrn-prog .prog-struct .ps-sidebar .sdb-block h4 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a0520;
    margin: 0;
}

.lrn-prog .prog-struct .ps-sidebar .sdb-block p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d1545;
    margin: 0;
}

.lrn-prog .prog-struct .ps-sidebar .sdb-sep {
    height: 1px;
    background: #E9DBED;
}

.lrn-prog .prog-struct .ps-sidebar .sdb-icon-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.lrn-prog .prog-struct .ps-sidebar .sdb-icon {
    width: 36px;
    height: 36px;
    background: #E9DBED;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lrn-prog .prog-struct .ps-sidebar .sdb-icon ion-icon {
    font-size: 18px;
    color: #A656AE;
}

.lrn-prog .prog-struct .ps-modules {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lrn-prog .prog-struct .mod-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: start;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E9DBED;
    animation: reveal-scale 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.lrn-prog .prog-struct .mod-card:hover {
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
    transform: translateY(-2px);
}

.lrn-prog .prog-struct .mod-card .mod-num {
    font-size: 29px;
    line-height: 1.15;
    font-weight: 800;
    text-align: center;
}

.lrn-prog .prog-struct .mod-card .mod-num .int-part {
    color: #1a0520;
}

.lrn-prog .prog-struct .mod-card .mod-num .frac-part {
    color: #A656AE;
}

.lrn-prog .prog-struct .mod-card .mod-body h5 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a0520;
    margin: 0 0 6px;
}

.lrn-prog .prog-struct .mod-card .mod-body p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d1545;
    margin: 0 0 12px;
}

.lrn-prog .prog-struct .mod-card .mod-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}

@media (max-width: 600px) {
    .lrn-prog .prog-struct .mod-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.lrn-prog .paths-blk {
    padding: 96px 0;
    background: #fff;
}

.lrn-prog .paths-blk .path-head {
    margin-bottom: 48px;
}

.lrn-prog .paths-blk .path-head h2 {
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1a0520;
    margin: 0 0 12px;
    font-weight: 800;
}

.lrn-prog .paths-blk .path-head p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d1545;
    margin: 0;
    max-width: 540px;
    padding-left: 96px;
}

@media (max-width: 900px) {
    .lrn-prog .paths-blk .path-head p {
        padding-left: 0;
    }
}

.lrn-prog .paths-blk .paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .lrn-prog .paths-blk .paths-grid {
        grid-template-columns: 1fr;
    }
}

.lrn-prog .paths-blk .path-card {
    border-radius: 10px;
    padding: 48px 24px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid #E9DBED;
    background: #fff;
}

.lrn-prog .paths-blk .path-card.featured {
    background: #2d0f33;
    border-color: #2d0f33;
}

.lrn-prog .paths-blk .path-card:hover {
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
}

.lrn-prog .paths-blk .path-card .pc-badge {
    position: absolute;
    top: -1px;
    left: 24px;
    background: #A656AE;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0 0 10px 10px;
}

.lrn-prog .paths-blk .path-card h3 {
    font-size: 29px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a0520;
    margin: 0;
}

.lrn-prog .paths-blk .path-card.featured h3 {
    color: #fff;
}

.lrn-prog .paths-blk .path-card .pc-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #3d1545;
    margin: 0;
}

.lrn-prog .paths-blk .path-card.featured .pc-desc {
    color: #C2A5C0;
}

.lrn-prog .paths-blk .path-card .pc-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lrn-prog .paths-blk .path-card .pc-list li {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.65;
    color: #3d1545;
}

.lrn-prog .paths-blk .path-card.featured .pc-list li {
    color: #E9DBED;
}

.lrn-prog .paths-blk .path-card .pc-list li ion-icon {
    color: #A656AE;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.lrn-prog .paths-blk .path-card.featured .pc-list li ion-icon {
    color: #C2A5C0;
}

.lrn-prog .paths-blk .path-card .pc-price-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: baseline;
    margin-top: 12px;
    border-top: 1px solid #E9DBED;
    padding-top: 12px;
}

.lrn-prog .paths-blk .path-card.featured .pc-price-row {
    border-top-color: rgba(194, 165, 192, 0.3);
}

.lrn-prog .paths-blk .path-card .pc-price {
    font-size: 29px;
    line-height: 1.15;
    font-weight: 800;
    color: #1a0520;
    letter-spacing: -0.02em;
}

.lrn-prog .paths-blk .path-card .pc-price .int-part {
    color: #1a0520;
}

.lrn-prog .paths-blk .path-card .pc-price .frac-part {
    color: #A656AE;
    font-size: 14px;
}

.lrn-prog .paths-blk .path-card.featured .pc-price .int-part {
    color: #fff;
}

.lrn-prog .paths-blk .path-card .pc-period {
    font-size: 14px;
    line-height: 1.4;
    color: #6b3878;
}

.lrn-prog .paths-blk .path-card.featured .pc-period {
    color: #C2A5C0;
}

.lrn-prog .team-cta {
    padding: 96px 0;
    background: #1a0520;
    position: relative;
}

.lrn-prog .team-cta .tc-bg-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(166, 86, 174, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.lrn-prog .team-cta .tc-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .lrn-prog .team-cta .tc-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.lrn-prog .team-cta .tc-head-col {
    grid-column: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 900px) {
    .lrn-prog .team-cta .tc-head-col {
        grid-column: auto;
    }
}

.lrn-prog .team-cta .tc-head-col h2 {
    font-size: 29px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.lrn-prog .team-cta .tc-head-col p {
    font-size: 14px;
    line-height: 1.65;
    color: #C2A5C0;
    margin: 0;
}

.lrn-prog .team-cta .tc-head-col .cta-box {
    background: #A656AE;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.lrn-prog .team-cta .tc-head-col .cta-box h4 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.lrn-prog .team-cta .tc-head-col .cta-box p {
    font-size: 14px;
    line-height: 1.65;
    color: #E9DBED;
    margin: 0;
}

.lrn-prog .team-cta .instr-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lrn-prog .team-cta .instr-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(194, 165, 192, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(194, 165, 192, 0.1);
}

.lrn-prog .team-cta .instr-card:hover {
    background: rgba(166, 86, 174, 0.15);
    border-color: rgba(166, 86, 174, 0.4);
}

.lrn-prog .team-cta .instr-card .ic-top {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.lrn-prog .team-cta .instr-card .ic-avatar {
    width: 48px;
    height: 48px;
    border-radius: 40px;
    background: conic-gradient(from 107deg at 30% 60%, #A656AE 0%, #C2A5C0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.lrn-prog .team-cta .instr-card .ic-meta h5 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.lrn-prog .team-cta .instr-card .ic-meta span {
    font-size: 14px;
    line-height: 1.4;
    color: #C2A5C0;
}

.lrn-prog .team-cta .instr-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #C2A5C0;
    margin: 0;
}

.lrn-prog .team-cta .instr-card .ic-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}

.lrn-prog .team-cta .instr-card .ic-tags .tag-pill {
    background: rgba(233, 219, 237, 0.15);
    color: #E9DBED;
    font-size: 14px;
}

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

.ct-us .pg-ld {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.ct-us .anch {
    display: block;
    width: 100%;
}

.ct-us .tb {
    background: #fff;
    padding: 96px 0 48px;
    position: relative;
}

.ct-us .tb-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.ct-us .tb-text {
    position: relative;
    z-index: 1;
}

.ct-us .tb-deco {
    position: absolute;
    top: 24px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.ct-us .tb-deco span {
    display: block;
    height: 2px;
    background: #A656AE;
    opacity: 0.28;
    border-radius: 5px;
}

.ct-us .tb-deco span:nth-child(1) {
    width: 36px;
}

.ct-us .tb-deco span:nth-child(2) {
    width: 24px;
}

.ct-us .tb-deco span:nth-child(3) {
    width: 18px;
}

.ct-us .tb-deco span:nth-child(4) {
    width: 28px;
}

.ct-us .tb-deco span:nth-child(5) {
    width: 14px;
}

.ct-us .tb-label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A656AE;
    font-weight: 600;
    margin-bottom: 12px;
}

.ct-us .tb-h1 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b1035;
    margin: 0 0 24px;
    font-weight: 800;
}

.ct-us .tb-h1 em {
    font-style: normal;
    color: #A656AE;
}

.ct-us .tb-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #3d3450;
    max-width: 380px;
    margin: 0;
}

.ct-us .tb-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10), 0 12px 60px -2px rgba(166, 86, 174, 0.11);
}

.ct-us .tb-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.ct-us .tb-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(107deg, rgba(166, 86, 174, 0.62) 0%, rgba(194, 165, 192, 0.28) 100%);
    pointer-events: none;
}

.ct-us .cf-blk {
    background: #f3eef5;
    padding: 96px 0;
    position: relative;
}

.ct-us .cf-blk::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0, #A656AE);
    pointer-events: none;
}

.ct-us .cf-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    gap: 96px;
    align-items: start;
}

.ct-us .cf-meta {
    position: sticky;
    top: 48px;
}

.ct-us .cf-meta-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A656AE;
    font-weight: 600;
    margin-bottom: 12px;
}

.ct-us .cf-meta-h2 {
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #1b1035;
    font-weight: 700;
    margin: 0 0 24px;
    padding-left: 12px;
    border-left: 3px solid #A656AE;
}

.ct-us .cf-meta-p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d3450;
    margin: 0 0 48px;
    max-width: 300px;
}

.ct-us .cf-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ct-us .cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-us .cf-field.full {
    grid-column: 1 / -1;
}

.ct-us .cf-field label {
    font-size: 14px;
    line-height: 1.4;
    color: #1b1035;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.ct-us .cf-field input,
.ct-us .cf-field select,
.ct-us .cf-field textarea {
    padding: 12px;
    border: 1.5px solid #C2A5C0;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.65;
    color: #1b1035;
    background: #fff;
    outline: none;
    transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    appearance: none;
    -webkit-appearance: none;
}

.ct-us .cf-field input::placeholder,
.ct-us .cf-field textarea::placeholder {
    color: #9b8ea8;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.ct-us .cf-field input:focus,
.ct-us .cf-field select:focus,
.ct-us .cf-field textarea:focus {
    border-color: #A656AE;
    box-shadow: 0 0 0 3px rgba(166, 86, 174, 0.13), inset 0 1px 6px -2px rgba(166, 86, 174, 0.07);
}

.ct-us .cf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23A656AE' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.ct-us .cf-field select option {
    color: #1b1035;
}

.ct-us .cf-field textarea {
    resize: vertical;
    min-height: 96px;
}

.ct-us .cf-privacy {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 6px;
}

.ct-us .cf-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #A656AE;
    margin-top: 2px;
    cursor: pointer;
}

.ct-us .cf-privacy-txt {
    font-size: 14px;
    line-height: 1.65;
    color: #3d3450;
}

.ct-us .cf-privacy-txt a {
    color: #A656AE;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .cf-privacy-txt a:hover {
    color: #7a3e80;
}

.ct-us .cf-submit-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ct-us .cf-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 48px;
    background: #1b1035;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.24s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.ct-us .cf-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #A656AE;
    transform: translateX(100%);
    transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.ct-us .cf-btn:hover::before {
    transform: translateX(0);
}

.ct-us .cf-btn span {
    position: relative;
    z-index: 1;
}

.ct-us .cf-btn:focus {
    outline: 2px solid #A656AE;
    outline-offset: 3px;
}

.ct-us .cf-btn:active {
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
}

.ct-us .cd-blk {
    background: #1b1035;
    padding: 96px 0;
    position: relative;
}

.ct-us .cd-blk::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 48px;
    width: 3px;
    height: 60px;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    border-radius: 5px;
    pointer-events: none;
}

.ct-us .cd-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.ct-us .cd-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.ct-us .cd-top-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C2A5C0;
    font-weight: 600;
    margin-bottom: 12px;
}

.ct-us .cd-top-h2 {
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fff;
    font-weight: 700;
    margin: 0;
    padding-left: 12px;
    border-left: 3px solid #A656AE;
}

.ct-us .cd-top-note {
    font-size: 14px;
    line-height: 1.65;
    color: #C2A5C0;
    max-width: 320px;
    margin: 0;
    text-align: right;
}

.ct-us .cd-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ct-us .cd-card {
    background: rgba(194, 165, 192, 0.08);
    border: 1px solid rgba(166, 86, 174, 0.22);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
}

.ct-us .cd-card:hover {
    border-color: #A656AE;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.ct-us .cd-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(166, 86, 174, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-us .cd-card-icon svg {
    width: 20px;
    height: 20px;
    fill: #C2A5C0;
}

.ct-us .cd-card-lbl {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C2A5C0;
    font-weight: 600;
}

.ct-us .cd-card-val {
    font-size: 14px;
    line-height: 1.65;
    color: #fff;
    font-weight: 500;
    word-break: break-word;
}

.ct-us .cd-card-val a {
    color: #E9DBED;
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ct-us .cd-card-val a:hover {
    color: #A656AE;
}

@keyframes col-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.ct-us .cd-card:nth-child(1) {
    animation: col-in 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.08s both;
}

.ct-us .cd-card:nth-child(2) {
    animation: col-in 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.16s both;
}

.ct-us .cd-card:nth-child(3) {
    animation: col-in 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.24s both;
}

.ct-us .cd-card:nth-child(4) {
    animation: col-in 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.32s both;
}

.ct-us .tb-text {
    animation: col-in 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.06s both;
}

.ct-us .tb-img-wrap {
    animation: col-in 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.14s both;
}

.ct-us .cf-btn:active {
    outline: 2px solid #A656AE;
    outline-offset: 5px;
    transition: outline-offset 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1200px) {
    .ct-us .tb-inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .ct-us .cf-inner {
        grid-template-columns: 1fr 1.4fr;
        gap: 48px;
    }

    .ct-us .cd-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .ct-us .tb-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ct-us .tb-h1 {
        font-size: 29px;
    }

    .ct-us .tb-img-wrap img {
        height: 280px;
    }

    .ct-us .cf-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ct-us .cf-meta {
        position: static;
    }

    .ct-us .cf-meta-p {
        max-width: 100%;
        margin-bottom: 0;
    }

    .ct-us .cd-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .ct-us .cd-top-note {
        text-align: left;
    }

    .ct-us .cd-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ct-us .tb {
        padding: 48px 0 24px;
    }

    .ct-us .tb-inner,
    .ct-us .cf-inner,
    .ct-us .cd-inner {
        padding: 0 24px;
    }

    .ct-us .cf-blk,
    .ct-us .cd-blk {
        padding: 48px 0;
    }

    .ct-us .cf-fields-grid {
        grid-template-columns: 1fr;
    }

    .ct-us .cf-field.full {
        grid-column: 1;
    }

    .ct-us .cf-privacy {
        grid-column: 1;
    }

    .ct-us .cf-submit-row {
        grid-column: 1;
        flex-direction: column;
        align-items: flex-start;
    }

    .ct-us .cd-cards {
        grid-template-columns: 1fr;
    }

    .ct-us .cd-blk::after {
        right: 24px;
    }
}

.frt {
    background: #fff;
    overflow-x: clip;
    position: relative;
}

.frt .bg-anim {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(107deg,
            rgba(166, 86, 174, 0.04) 0px,
            rgba(166, 86, 174, 0.04) 1px,
            transparent 1px,
            transparent 60px), repeating-linear-gradient(17deg,
            rgba(194, 165, 192, 0.03) 0px,
            rgba(194, 165, 192, 0.03) 1px,
            transparent 1px,
            transparent 80px);
    background-size: 120px 120px, 160px 160px;
    animation: diagdrift 18s linear infinite;
}

@keyframes diagdrift {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 120px 120px, -160px 160px;
    }
}

.frt .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.frt .divider-diamonds {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 0;
    overflow: hidden;
}

.frt .divider-diamonds span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #C2A5C0;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.frt .divider-diamonds span.accent {
    background: #A656AE;
    width: 8px;
    height: 8px;
}

.frt .divider-line-center {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}

.frt .divider-line-center .ln {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C2A5C0, transparent);
}

.frt .divider-line-center .ctr-el {
    width: 10px;
    height: 10px;
    border: 2px solid #A656AE;
    transform: rotate(45deg);
    background: #fff;
}

.frt .ttl-blk {
    padding: 48px 0 24px;
    position: relative;
    z-index: 1;
}

.frt .ttl-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.frt .ttl-img-wrap {
    position: relative;
    width: 100%;
    max-width: 860px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
}

.frt .ttl-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

.frt .ttl-img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(107deg,
            rgba(166, 86, 174, 0.72) 0%,
            rgba(194, 165, 192, 0.38) 55%,
            transparent 100%);
}

.frt .ttl-text-zone {
    position: relative;
    text-align: center;
    max-width: 760px;
    padding: 24px 48px;
}

.frt .ttl-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #C2A5C0 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.25;
    pointer-events: none;
    border-radius: 10px;
}

.frt .ttl-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E9DBED;
    color: #A656AE;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.frt .ttl-h1 {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1b1224;
    margin: 0 0 12px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.frt .ttl-h1 .outlined {
    -webkit-text-stroke: 2px #A656AE;
    color: transparent;
}

.frt .ttl-sub {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3d52;
    margin: 0 0 24px;
    position: relative;
    z-index: 1;
}

.frt .ttl-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.frt .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1b1224;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1b1224;
    position: relative;
    overflow: hidden;
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.frt .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #A656AE;
    transform: translateX(100%);
    transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
}

.frt .btn-primary:hover::before {
    transform: translateX(0);
}

.frt .btn-primary:hover {
    border-color: #A656AE;
}

.frt .btn-primary span {
    position: relative;
    z-index: 1;
}

.frt .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #1b1224;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #C2A5C0;
    position: relative;
    overflow: hidden;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.frt .btn-ghost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #E9DBED;
    transform: translateX(100%);
    transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
}

.frt .btn-ghost:hover::before {
    transform: translateX(0);
}

.frt .btn-ghost span {
    position: relative;
    z-index: 1;
}

.frt .val-blk {
    padding: 96px 0 48px;
    position: relative;
    z-index: 1;
}

.frt .val-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.frt .val-left .sec-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E9DBED;
    color: #A656AE;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}

.frt .val-left h2 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1b1224;
    margin: 0 0 24px;
    font-weight: 800;
}

.frt .val-left h2 .outlined {
    -webkit-text-stroke: 2px #A656AE;
    color: transparent;
}

.frt .val-left .body-col {
    padding: 0 30% 0 0;
}

.frt .val-left .body-col p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d2f45;
    margin: 0 0 12px;
}

.frt .val-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.frt .val-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #E9DBED;
    border-left: 4px solid #A656AE;
    background: #fff;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-left-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.frt .val-item:hover {
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    border-left-color: #1b1224;
}

.frt .val-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background: #E9DBED;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.frt .val-item-icon ion-icon {
    font-size: 18px;
    color: #A656AE;
}

.frt .val-item-txt h5 {
    font-size: 14px;
    line-height: 1.4;
    color: #1b1224;
    font-weight: 700;
    margin: 0 0 6px;
}

.frt .val-item-txt p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3d52;
    margin: 0;
}

.frt .val-right {
    position: sticky;
    top: 24px;
}

.frt .val-img-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
    position: relative;
}

.frt .val-img-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.frt .val-img-tint {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 107deg at 30% 70%, rgba(166, 86, 174, 0.55), rgba(194, 165, 192, 0.35), transparent);
}

.frt .val-stat-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 12px;
}

.frt .val-stat {
    flex: 1;
    background: #1b1224;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.frt .val-stat .num {
    font-size: 29px;
    line-height: 1.15;
    font-weight: 800;
    color: #C2A5C0;
    display: block;
}

.frt .val-stat .lbl {
    font-size: 14px;
    line-height: 1.4;
    color: #d4c0d8;
    display: block;
}

.frt .fit-blk {
    padding: 96px 0;
    position: relative;
    z-index: 1;
    background: #1b1224;
}

.frt .fit-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("./visual_library/IMG_4246.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.08;
    pointer-events: none;
}

.frt .fit-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.frt .fit-left .sec-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(166, 86, 174, 0.25);
    color: #C2A5C0;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}

.frt .fit-left h2 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
    font-weight: 800;
    margin: 0 0 24px;
}

.frt .fit-left h2 em {
    font-style: normal;
    -webkit-text-stroke: 1.5px #C2A5C0;
    color: transparent;
}

.frt .fit-left p {
    font-size: 14px;
    line-height: 1.65;
    color: #c4b2cc;
    margin: 0;
}

.frt .fit-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.frt .fit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.frt .fit-card {
    border-radius: 10px;
    padding: 24px;
    position: relative;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.frt .fit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
}

.frt .fit-card.yes {
    background: rgba(166, 86, 174, 0.12);
    border: 1px solid rgba(166, 86, 174, 0.3);
}

.frt .fit-card.no {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.frt .fit-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 40px;
}

.frt .fit-card.yes .fit-card-tag {
    background: rgba(166, 86, 174, 0.2);
    color: #C2A5C0;
}

.frt .fit-card.no .fit-card-tag {
    background: rgba(255, 255, 255, 0.06);
    color: #7a6882;
}

.frt .fit-card h5 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}

.frt .fit-card.no h5 {
    color: #7a6882;
}

.frt .fit-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #c4b2cc;
    margin: 0;
}

.frt .fit-card.no p {
    color: #5c4f65;
}

.frt .curr-blk {
    padding: 96px 0 48px;
    position: relative;
    z-index: 1;
    background: #fff;
}

.frt .curr-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
}

.frt .curr-top-left .sec-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E9DBED;
    color: #A656AE;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}

.frt .curr-top-left h2 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1b1224;
    font-weight: 800;
    margin: 0;
}

.frt .curr-top-left h2 .outlined {
    -webkit-text-stroke: 2px #A656AE;
    color: transparent;
}

.frt .curr-top-right p {
    font-size: 14px;
    line-height: 1.65;
    color: #3d2f45;
    margin: 0;
}

.frt .curr-checker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.frt .chk-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 48px;
}

.frt .chk-item:nth-child(1) {
    border-bottom: 1px solid #E9DBED;
    border-right: 1px solid #E9DBED;
}

.frt .chk-item:nth-child(2) {
    border-bottom: 1px solid #E9DBED;
    background: #E9DBED;
    padding-left: 48px;
}

.frt .chk-item:nth-child(3) {
    border-right: 1px solid #E9DBED;
    background: #E9DBED;
}

.frt .chk-item:nth-child(4) {
    background: #fff;
}

.frt .chk-num {
    font-size: 55px;
    line-height: 1.15;
    font-weight: 800;
    color: #A656AE;
    opacity: 0.25;
    flex-shrink: 0;
    letter-spacing: -0.03em;
}

.frt .chk-txt h4 {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: #1b1224;
    margin: 0 0 6px;
    border-left: 3px solid #A656AE;
    padding-left: 12px;
}

.frt .chk-txt p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3d52;
    margin: 0;
    padding-left: 15px;
}

.frt .curr-img-strip {
    margin-top: 48px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.frt .curr-img-strip img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
}

.frt .curr-img-tint {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 107deg at 70% 40%, rgba(166, 86, 174, 0.6), rgba(194, 165, 192, 0.3), transparent 60%);
}

.frt .curr-img-caption {
    position: absolute;
    bottom: 24px;
    left: 48px;
    right: 48px;
}

.frt .curr-img-caption h3 {
    font-size: 29px;
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.frt .sup-blk {
    padding: 96px 0;
    position: relative;
    z-index: 1;
    background: #f5f0f7;
}

.frt .sup-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 107deg at 80% 20%, rgba(166, 86, 174, 0.07), rgba(194, 165, 192, 0.04), transparent 50%);
    pointer-events: none;
}

.frt .sup-head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.frt .sup-head .sec-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E9DBED;
    color: #A656AE;
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}

.frt .sup-head h2 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1b1224;
    font-weight: 800;
    margin: 0 0 12px;
}

.frt .sup-head p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3d52;
    max-width: 540px;
    margin: 0 auto;
}

.frt .sup-accord {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.frt .acc-item {
    border-radius: 10px;
    background: #fff;
    border: 1px solid #E9DBED;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    overflow: hidden;
}

.frt .acc-toggle {
    display: none;
}

.frt .acc-lbl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.frt .acc-lbl:hover {
    background: #f5f0f7;
}

.frt .acc-lbl h4 {
    font-size: 14px;
    line-height: 1.4;
    color: #1b1224;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.frt .acc-lbl h4 .acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: #E9DBED;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.frt .acc-lbl h4 .acc-icon ion-icon {
    font-size: 16px;
    color: #A656AE;
}

.frt .acc-arrow {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.frt .acc-arrow ion-icon {
    font-size: 16px;
    color: #A656AE;
}

.frt .acc-toggle:checked+.acc-lbl .acc-arrow {
    transform: rotate(180deg);
}

.frt .acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.frt .acc-toggle:checked+.acc-lbl+.acc-body {
    max-height: 300px;
}

.frt .acc-body-inner {
    padding: 0 24px 24px;
    padding-left: 68px;
}

.frt .acc-body-inner p {
    font-size: 14px;
    line-height: 1.65;
    color: #4a3d52;
    margin: 0;
}

@media (max-width: 1200px) {
    .frt .pg-wrap {
        padding: 0 24px;
    }

    .frt .val-grid {
        grid-template-columns: 1fr 280px;
    }

    .frt .fit-grid {
        grid-template-columns: 340px 1fr;
    }

    .frt .ttl-h1 {
        font-size: 55px;
    }

    .frt .val-left h2 {
        font-size: 55px;
    }

    .frt .val-left .body-col {
        padding-right: 10%;
    }
}

@media (max-width: 900px) {
    .frt .val-grid {
        grid-template-columns: 1fr;
    }

    .frt .val-right {
        position: static;
    }

    .frt .fit-grid {
        grid-template-columns: 1fr;
    }

    .frt .curr-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .frt .curr-checker {
        grid-template-columns: 1fr;
    }

    .frt .chk-item:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #E9DBED;
    }

    .frt .chk-item:nth-child(2) {
        border-bottom: 1px solid #d4c0d8;
    }

    .frt .chk-item:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #d4c0d8;
    }

    .frt .fit-row {
        grid-template-columns: 1fr;
    }

    .frt .ttl-h1 {
        font-size: 55px;
    }

    .frt .ttl-text-zone {
        padding: 24px;
    }

    .frt .val-left .body-col {
        padding-right: 0;
    }

    .frt .chk-item {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .frt .pg-wrap {
        padding: 0 12px;
    }

    .frt .ttl-h1 {
        font-size: 29px;
    }

    .frt .val-left h2 {
        font-size: 29px;
    }

    .frt .fit-left h2 {
        font-size: 29px;
    }

    .frt .curr-top-left h2 {
        font-size: 29px;
    }

    .frt .sup-head h2 {
        font-size: 29px;
    }

    .frt .val-blk {
        padding: 48px 0 24px;
    }

    .frt .fit-blk {
        padding: 48px 0;
    }

    .frt .curr-blk {
        padding: 48px 0 24px;
    }

    .frt .sup-blk {
        padding: 48px 0;
    }

    .frt .ttl-img-wrap img {
        height: 240px;
    }

    .frt .val-img-card img {
        height: 220px;
    }

    .frt .curr-img-strip img {
        height: 200px;
    }

    .frt .curr-img-caption {
        left: 24px;
        right: 24px;
        bottom: 12px;
    }

    .frt .curr-img-caption h3 {
        font-size: 14px;
    }

    .frt .val-stat-row {
        flex-direction: column;
    }

    .frt .ttl-links {
        flex-direction: column;
        align-items: center;
    }
}

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

.ab-us .dbl-div {
    width: 100%;
    height: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ab-us .dbl-div span {
    display: block;
    width: 100%;
    height: 2px;
    background: #A656AE;
}

.ab-us .dbl-div span:last-child {
    background: #C2A5C0;
}

.ab-us .t-blk {
    width: 100%;
    padding-top: 96px;
    padding-bottom: 48px;
    background: #fff;
    position: relative;
}

.ab-us .t-blk .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(166, 86, 174, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(166, 86, 174, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.ab-us .t-blk .out-shape {
    position: absolute;
    right: 48px;
    top: 48px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(166, 86, 174, 0.12);
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    pointer-events: none;
}

.ab-us .t-blk .inner-t {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.ab-us .t-blk .txt-z {
    flex: 1 1 0;
    min-width: 0;
}

.ab-us .t-blk .txt-z h1 {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1b1523;
    margin: 0 0 6px 0;
    padding-left: 18px;
    border-left: 5px solid #A656AE;
}

.ab-us .t-blk .txt-z .dash-tag {
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    padding-left: 18px;
}

.ab-us .t-blk .img-z {
    flex: 0 0 420px;
    width: 420px;
    height: 340px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    clip-path: polygon(12% 0%, 100% 0%, 100% 88%, 88% 100%, 0% 100%, 0% 12%);
    box-shadow: 0 12px 60px -2px rgba(166, 86, 174, 0.11);
}

.ab-us .t-blk .img-z img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    filter: sepia(0.3) hue-rotate(0deg) saturate(1.4) brightness(0.92);
}

.ab-us .t-blk .img-z:hover img {
    transform: translateX(-4%) scale(1.04);
}

.ab-us .ab-body {
    width: 100%;
    background: #f5eef7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%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='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    padding-top: 48px;
    padding-bottom: 96px;
}

.ab-us .ab-body .inner-b {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.ab-us .ab-body .dense-g {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.ab-us .ab-body .anch {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: #fff;
    border-radius: 10px;
    padding: 48px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.ab-us .ab-body .anch::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 10px 10px 0 0;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0, #A656AE);
}

.ab-us .ab-body .anch h2 {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #1b1523;
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid #A656AE;
}

.ab-us .ab-body .anch .body-p {
    font-size: 14px;
    line-height: 1.65;
    color: #2e2035;
    margin: 0 96px 0 0;
}

.ab-us .ab-body .anch .body-p+.body-p {
    margin-top: 0;
}

.ab-us .ab-body .anch .met-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.ab-us .ab-body .anch .met {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ab-us .ab-body .anch .met .num {
    font-size: 29px;
    line-height: 1.15;
    color: #A656AE;
    letter-spacing: -0.02em;
}

.ab-us .ab-body .anch .met .lbl {
    font-size: 14px;
    line-height: 1.4;
    color: #6b4e7a;
}

.ab-us .ab-body .crd {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-us .ab-body .crd h5 {
    font-size: 14px;
    line-height: 1.4;
    color: #1b1523;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding-left: 12px;
    border-left: 3px solid #C2A5C0;
}

.ab-us .ab-body .crd p {
    font-size: 14px;
    line-height: 1.65;
    color: #3a2848;
    margin: 0;
}

.ab-us .ab-body .crd.img-crd {
    padding: 0;
    overflow: hidden;
    height: 200px;
}

.ab-us .ab-body .crd.img-crd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
    filter: sepia(0.2) saturate(1.3) brightness(0.94);
}

.ab-us .ab-body .crd.img-crd:hover img {
    transform: translateY(-3%) scale(1.05);
}

.ab-us .ab-body .team-row {
    margin-top: 48px;
}

.ab-us .ab-body .team-row h3 {
    font-size: 29px;
    line-height: 1.15;
    color: #1b1523;
    margin: 0 0 24px 0;
    padding-left: 14px;
    border-left: 4px solid #A656AE;
    letter-spacing: -0.015em;
}

.ab-us .ab-body .team-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ab-us .ab-body .pers {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-us .ab-body .pers:hover {
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.ab-us .ab-body .pers .p-ico {
    width: 48px;
    height: 48px;
    border-radius: 40px;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-us .ab-body .pers .p-ico svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.ab-us .ab-body .pers h6 {
    font-size: 14px;
    line-height: 1.4;
    color: #1b1523;
    margin: 0;
    font-weight: 700;
}

.ab-us .ab-body .pers .role {
    font-size: 14px;
    line-height: 1.4;
    color: #A656AE;
    margin: 0;
}

.ab-us .ab-body .pers .bio {
    font-size: 14px;
    line-height: 1.65;
    color: #3a2848;
    margin: 0;
}

.ab-us .ab-body .icon-trail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    justify-content: center;
}

.ab-us .ab-body .icon-trail .i-node {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #E9DBED;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 8px rgba(166, 86, 174, 0.10);
}

.ab-us .ab-body .icon-trail .i-node ion-icon {
    font-size: 22px;
    color: #A656AE;
}

.ab-us .ab-body .icon-trail .dash-line {
    flex: 1;
    border-top: 2px dashed #C2A5C0;
    max-width: 120px;
}

.ab-us .ab-body .img-wide {
    margin-top: 48px;
    border-radius: 10px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
    position: relative;
}

.ab-us .ab-body .img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.28s cubic-bezier(0.0, 0, 0.2, 1);
    filter: sepia(0.25) saturate(1.3) brightness(0.93);
}

.ab-us .ab-body .img-wide:hover img {
    transform: translateX(3%) scale(1.04);
}

.ab-us .ab-body .img-wide .ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(107deg, rgba(166, 86, 174, 0.45), rgba(194, 165, 192, 0.18));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px 48px;
}

.ab-us .ab-body .img-wide .ov p {
    font-size: 29px;
    line-height: 1.15;
    color: #fff;
    margin: 0;
    letter-spacing: -0.015em;
    max-width: 560px;
}

@keyframes col-appear {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

.ab-us .ab-body .anch {
    animation: col-appear 0.26s cubic-bezier(0.4, 0, 0.2, 1) 0.05s both;
}

.ab-us .ab-body .crd:nth-child(2) {
    animation: col-appear 0.24s cubic-bezier(0.4, 0, 0.2, 1) 0.12s both;
}

.ab-us .ab-body .crd:nth-child(3) {
    animation: col-appear 0.24s cubic-bezier(0.4, 0, 0.2, 1) 0.18s both;
}

.ab-us .ab-body .crd:nth-child(4) {
    animation: col-appear 0.22s cubic-bezier(0.4, 0, 0.2, 1) 0.24s both;
}

.ab-us .ab-body .crd:nth-child(5) {
    animation: col-appear 0.22s cubic-bezier(0.4, 0, 0.2, 1) 0.30s both;
}

@media (max-width: 1200px) {
    .ab-us .t-blk .img-z {
        flex: 0 0 320px;
        width: 320px;
        height: 280px;
    }

    .ab-us .t-blk .txt-z h1 {
        font-size: 55px;
    }

    .ab-us .ab-body .dense-g {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .ab-us .ab-body .anch {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .ab-us .ab-body .anch .body-p {
        margin-right: 0;
    }

    .ab-us .ab-body .team-g {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .ab-us .t-blk .inner-t {
        flex-direction: column;
        padding: 0 24px;
    }

    .ab-us .t-blk .img-z {
        flex: 0 0 auto;
        width: 100%;
        height: 240px;
        clip-path: polygon(6% 0%, 100% 0%, 100% 94%, 94% 100%, 0% 100%, 0% 6%);
    }

    .ab-us .t-blk .txt-z h1 {
        font-size: 55px;
    }

    .ab-us .t-blk .out-shape {
        display: none;
    }

    .ab-us .ab-body .inner-b {
        padding: 0 24px;
    }

    .ab-us .ab-body .dense-g {
        grid-template-columns: 1fr;
    }

    .ab-us .ab-body .anch {
        grid-column: 1 / 2;
        padding: 24px;
    }

    .ab-us .ab-body .anch h2 {
        font-size: 29px;
    }

    .ab-us .ab-body .team-g {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ab-us .t-blk {
        padding-top: 48px;
        padding-bottom: 24px;
    }

    .ab-us .t-blk .inner-t {
        padding: 0 12px;
        gap: 24px;
    }

    .ab-us .t-blk .txt-z h1 {
        font-size: 29px;
    }

    .ab-us .t-blk .txt-z .dash-tag {
        margin-bottom: 12px;
    }

    .ab-us .ab-body {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .ab-us .ab-body .inner-b {
        padding: 0 12px;
    }

    .ab-us .ab-body .anch {
        padding: 24px 12px;
        gap: 12px;
    }

    .ab-us .ab-body .anch .met-row {
        gap: 12px;
    }

    .ab-us .ab-body .img-wide {
        height: 180px;
    }

    .ab-us .ab-body .img-wide .ov {
        padding: 12px;
    }

    .ab-us .ab-body .img-wide .ov p {
        font-size: 14px;
    }

    .ab-us .ab-body .icon-trail .dash-line {
        max-width: 48px;
    }
}

.suc-pg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 24px;
    background: #fff;
}

.suc-pg .suc-wrap {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.suc-pg .suc-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E9DBED;
    border-radius: 40px;
    box-shadow: 0 5px 18px -2px rgba(166, 86, 174, 0.10);
}

.suc-pg .suc-icon svg {
    display: block;
}

.suc-pg .suc-head {
    font-size: 55px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b0e1d;
    margin: 0 0 24px;
}

.suc-pg .suc-head .dash {
    color: #A656AE;
}

.suc-pg .suc-txt {
    font-size: 14px;
    line-height: 1.65;
    color: #3a2640;
    margin: 0 0 48px;
    padding: 0 24px;
}

.suc-pg .suc-divider {
    width: 48px;
    height: 3px;
    background: conic-gradient(from 107deg, #A656AE, #C2A5C0);
    border-radius: 5px;
    margin: 0 auto 48px;
}

.suc-pg .suc-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #E9DBED;
    border-radius: 10px;
    padding: 12px 24px;
    margin-bottom: 48px;
}

.suc-pg .suc-meta .meta-label {
    font-size: 14px;
    line-height: 1.4;
    color: #5a2f60;
}

.suc-pg .suc-meta .meta-dot {
    width: 5px;
    height: 5px;
    border-radius: 40px;
    background: #A656AE;
    flex-shrink: 0;
}

.suc-pg .suc-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.suc-pg .btn-prim {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: #1b0e1d;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 1px 6px -2px rgba(166, 86, 174, 0.07);
    transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.suc-pg .btn-prim::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #A656AE;
    transform: translateX(100%);
    transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
    border-radius: 5px;
}

.suc-pg .btn-prim:hover::before,
.suc-pg .btn-prim:focus-visible::before {
    transform: translateX(0);
}

.suc-pg .btn-prim:focus-visible {
    outline: 2px solid #A656AE;
    outline-offset: 3px;
}

.suc-pg .btn-sec {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: #fff;
    color: #1b0e1d;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 5px;
    border: 1.5px solid #C2A5C0;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.suc-pg .btn-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #E9DBED;
    transform: translateX(100%);
    transition: transform 0.26s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: -1;
    border-radius: 4px;
}

.suc-pg .btn-sec:hover::before,
.suc-pg .btn-sec:focus-visible::before {
    transform: translateX(0);
}

.suc-pg .btn-sec:focus-visible {
    outline: 2px solid #A656AE;
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .suc-pg {
        padding: 48px 24px;
    }

    .suc-pg .suc-head {
        font-size: 29px;
    }

    .suc-pg .suc-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .suc-pg .btn-prim,
    .suc-pg .btn-sec {
        justify-content: center;
    }
}