* {
    box-sizing: border-box;
}

body {
    margin: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

.hx_bar {
    background: linear-gradient(100deg, #BA2D94 0%, #C37580 100%);
    padding: 6px 0;
}

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

.hx_contact_link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    transition: opacity 0.18s ease-out;
    position: relative;
}

.hx_contact_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.hx_contact_link:hover::after {
    width: 100%;
}

.hx_contact_link:hover {
    opacity: 0.85;
}

.hx_contact_link:focus {
    outline: none;
}

.hx_contact_link:focus-visible::before {
    content: 'link';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 14px;
    color: #fff;
    background: rgba(186, 45, 148, 0.85);
    padding: 0 6px;
    border-radius: 8px;
    pointer-events: none;
}

.hx_identity {
    background: #fff;
    border-bottom: 1px solid #E2D5D2;
    padding: 24px 0 0;
}

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

.hx_brand_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hx_logo_hex {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #E2D5D2;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05), 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
}

.hx_logo_hex img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.hx_brand_name {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    background: linear-gradient(90deg, #BA2D94 0%, #C37580 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hx_tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a54;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
}

.hx_nav_strip {
    width: 100%;
    border-top: 1px solid #E2D5D2;
}

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

.hx_nav_item {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: #3a2535;
    text-decoration: none;
    position: relative;
    transition: color 0.18s ease-out;
}

.hx_nav_item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 0;
    height: 2px;
    background: #BA2D94;
    transition: width 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.hx_nav_item:hover {
    color: #BA2D94;
}

.hx_nav_item:hover::after {
    width: calc(100% - 48px);
}

.hx_nav_item:focus {
    outline: none;
}

.hx_nav_item:focus-visible {
    outline: none;
}

.hx_nav_item:focus-visible::before {
    content: 'link';
    position: absolute;
    top: 2px;
    left: 24px;
    font-size: 14px;
    color: #fff;
    background: rgba(186, 45, 148, 0.9);
    padding: 0 6px;
    border-radius: 8px;
    pointer-events: none;
}

.ft_base {
    background: #f5f0f3;
    border-top: 1px solid #E2D5D2;
}

.ft_upper {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.ft_brand_cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 180px;
}

.ft_logo_hex {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #E2D5D2;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}

.ft_logo_hex img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.ft_brand_label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #3a2535;
}

.ft_brand_sub {
    font-size: 14px;
    line-height: 1.6;
    color: #7a5f6e;
    font-weight: 400;
    max-width: 220px;
}

.ft_links_cell {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
}

.ft_links_label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #3a2535;
    text-transform: uppercase;
    letter-spacing: 0;
}

.ft_link {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a54;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.18s ease-out;
}

.ft_link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #BA2D94;
    transition: width 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ft_link:hover {
    color: #BA2D94;
}

.ft_link:hover::after {
    width: 100%;
}

.ft_link:focus {
    outline: none;
}

.ft_link:focus-visible::before {
    content: 'link';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 14px;
    color: #fff;
    background: rgba(186, 45, 148, 0.9);
    padding: 0 6px;
    border-radius: 8px;
    pointer-events: none;
}

.ft_contact_cell {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

.ft_contact_label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #3a2535;
    text-transform: uppercase;
}

.ft_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a54;
}

.ft_contact_item a {
    color: #5a4a54;
    text-decoration: none;
    position: relative;
    transition: color 0.18s ease-out;
}

.ft_contact_item a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #BA2D94;
    transition: width 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ft_contact_item a:hover {
    color: #BA2D94;
}

.ft_contact_item a:hover::after {
    width: 100%;
}

.ft_contact_item a:focus {
    outline: none;
}

.ft_contact_item a:focus-visible::before {
    content: 'link';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 14px;
    color: #fff;
    background: rgba(186, 45, 148, 0.9);
    padding: 0 6px;
    border-radius: 8px;
    pointer-events: none;
}

.ft_contact_icon {
    color: #BA2D94;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ft_lower {
    border-top: 1px solid #E2D5D2;
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ft_copy {
    font-size: 14px;
    line-height: 1.6;
    color: #7a5f6e;
}

.ft_legal_links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ck_popup {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 560px;
    max-width: calc(100% - 48px);
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    z-index: 1200;
    padding: 24px;
    border: 1px solid #E2D5D2;
}

.ck_icon_row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ck_shield_icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: #BA2D94;
    font-size: 36px;
}

.ck_intro {
    font-size: 14px;
    line-height: 1.6;
    color: #3a2535;
    margin-bottom: 12px;
}

.ck_intro strong {
    font-weight: 700;
}

.ck_sale_notice {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a54;
    background: #f5f0f3;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
}

.ck_sale_notice strong {
    color: #BA2D94;
    font-weight: 700;
}

.ck_categories {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.ck_cat_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.6;
    color: #3a2535;
}

.ck_cat_label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ck_cat_label span {
    font-size: 14px;
    color: #7a5f6e;
    font-style: italic;
}

.ck_toggle {
    position: relative;
    width: 36px;
    height: 20px;
    flex-shrink: 0;
}

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

.ck_toggle_track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E2D5D2;
    border-radius: 36px;
    transition: background 0.18s ease-out;
    cursor: pointer;
}

.ck_toggle input:checked+.ck_toggle_track {
    background: #BA2D94;
}

.ck_toggle_track::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 48px;
    top: 3px;
    left: 3px;
    transition: transform 0.18s ease-out;
}

.ck_toggle input:checked+.ck_toggle_track::after {
    transform: translateX(16px);
}

.ck_toggle input:focus-visible+.ck_toggle_track {
    outline: 2px solid #BA2D94;
    outline-offset: 2px;
}

.ck_always_on {
    font-size: 14px;
    color: #7a5f6e;
    font-style: italic;
}

.ck_sale_toggle_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.6;
    color: #3a2535;
    margin-bottom: 12px;
    padding: 12px;
    background: #fff5fb;
    border-radius: 8px;
    border: 1px solid #E2D5D2;
}

.ck_btn_row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ck_accept_btn {
    flex: 1;
    min-width: 120px;
    background: #BA2D94;
    color: #fff;
    border: 2px solid #BA2D94;
    border-radius: 36px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.18s ease-out, color 0.18s ease-out;
    position: relative;
    overflow: hidden;
}

.ck_accept_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 36px;
    border: 2px solid #BA2D94;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ck_accept_btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

.ck_accept_btn:hover {
    background: #9e2580;
}

.ck_accept_btn:focus {
    outline: none;
}

.ck_accept_btn:focus-visible {
    outline: 2px solid #BA2D94;
    outline-offset: 3px;
}

.ck_reject_btn {
    flex: 1;
    min-width: 120px;
    background: transparent;
    color: #3a2535;
    border: 2px solid #E2D5D2;
    border-radius: 36px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.18s ease-out, color 0.18s ease-out;
    position: relative;
}

.ck_reject_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 36px;
    border: 2px solid #C37580;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ck_reject_btn:hover::before {
    transform: scale(1);
    opacity: 1;
}

.ck_reject_btn:hover {
    border-color: #C37580;
    color: #C37580;
}

.ck_reject_btn:focus {
    outline: none;
}

.ck_reject_btn:focus-visible {
    outline: 2px solid #C37580;
    outline-offset: 3px;
}

.ck_settings_trigger {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #E2D5D2;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    transition: box-shadow 0.18s ease-out, border-color 0.18s ease-out;
    color: #BA2D94;
    font-size: 20px;
}

.ck_settings_trigger:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    border-color: #BA2D94;
}

.ck_settings_trigger:focus {
    outline: none;
}

.ck_settings_trigger:focus-visible {
    outline: 2px solid #BA2D94;
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .ft_upper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hx_nav_item {
        padding: 12px 12px;
    }

    .hx_nav_item::after {
        left: 12px;
    }

    .hx_nav_item:hover::after {
        width: calc(100% - 24px);
    }

    .ft_lower {
        flex-direction: column;
        align-items: flex-start;
    }

    .ck_btn_row {
        flex-direction: column;
    }

    .ck_accept_btn,
    .ck_reject_btn {
        width: 100%;
    }
}

.policy-region {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
}

.policy-region h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #2a1a24;
    margin-bottom: 24px;
    margin-top: 0;
}

.policy-region h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #2a1a24;
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E2D5D2;
}

.policy-region h3 {
    font-size: 16px;
    line-height: 1.6;
    color: #2a1a24;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.policy-region h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #BA2D94;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-region h5 {
    font-size: 14px;
    line-height: 1.6;
    color: #2a1a24;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-region h6 {
    font-size: 14px;
    line-height: 1.6;
    color: #C37580;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 12px;
}

.policy-region p {
    font-size: 16px;
    line-height: 1.9;
    color: #3d2535;
    margin-top: 0;
    margin-bottom: 24px;
}

.policy-region ul,
.policy-region ol {
    font-size: 16px;
    line-height: 1.9;
    color: #3d2535;
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
}

.policy-region ul {
    list-style: none;
    padding-left: 24px;
}

.policy-region ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.policy-region ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background-color: #BA2D94;
}

.policy-region ol {
    list-style: none;
    counter-reset: policy-counter;
    padding-left: 24px;
}

.policy-region ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    counter-increment: policy-counter;
}

.policy-region ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: #BA2D94;
    line-height: 1.9;
}

.policy-region ul ul,
.policy-region ol ol,
.policy-region ul ol,
.policy-region ol ul {
    margin-top: 12px;
    margin-bottom: 6px;
}

.policy-region ul ul li::before {
    background-color: #C37580;
    width: 6px;
    height: 6px;
    top: 13px;
}

.policy-region em,
.policy-region i {
    font-style: italic;
    color: #C37580;
}

.policy-region a {
    color: #BA2D94;
    text-decoration: none;
    font-weight: 500;
    background-image: linear-gradient(#BA2D94, #BA2D94);
    background-repeat: no-repeat;
    background-size: 0% 1.5px;
    background-position: left bottom;
    transition: background-size 0.18s cubic-bezier(0.4, 0, 0.6, 1), color 0.14s ease-out;
    padding-bottom: 1px;
}

.policy-region a:hover {
    color: #8a1f6e;
    background-size: 100% 1.5px;
}

.policy-region table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    border-radius: 13px;
    overflow: hidden;
}

.policy-region thead {
    background: linear-gradient(135deg, #BA2D94 0%, #C37580 100%);
}

.policy-region thead th {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    text-align: left;
    line-height: 1.6;
}

.policy-region tbody tr {
    border-bottom: 1px solid #E2D5D2;
    transition: background-color 0.14s ease-out;
}

.policy-region tbody tr:last-child {
    border-bottom: none;
}

.policy-region tbody tr:nth-child(even) {
    background-color: #fdf7fb;
}

.policy-region tbody tr:hover {
    background-color: #f7edf4;
}

.policy-region td {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #3d2535;
    vertical-align: top;
}

.policy-region th {
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.6;
    vertical-align: middle;
}

.policy-region div {
    font-size: 16px;
    line-height: 1.9;
}

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

    .policy-region h1 {
        font-size: 36px;
    }

    .policy-region h2 {
        font-size: 36px;
        margin-top: 24px;
    }

    .policy-region table {
        display: none;
    }

    .policy-region tbody tr {
        display: block;
        margin-bottom: 12px;
        border-radius: 8px;
        border: 1px solid #E2D5D2;
        box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
        overflow: hidden;
    }

    .policy-region thead {
        display: none;
    }

    .policy-region tbody {
        display: block;
        width: 100%;
    }

    .policy-region table.policy-table-mobile {
        display: table;
    }

    .policy-region td {
        display: flex;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid #E2D5D2;
        font-size: 14px;
    }

    .policy-region td:last-child {
        border-bottom: none;
    }

    .policy-region td[data-label]::before {
        content: attr(data-label);
        font-weight: 700;
        color: #BA2D94;
        min-width: 120px;
        flex-shrink: 0;
    }
}

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

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

.svc_dtl .title_row {
    padding: 48px 0;
    background: #fff;
}

.svc_dtl .title_row .pg_inner {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.svc_dtl .title_col_text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
}

.svc_dtl .title_col_img {
    flex: 0 0 480px;
    max-width: 480px;
    position: relative;
}

.svc_dtl .title_img_wrap {
    border-radius: 13px;
    overflow: hidden;
    position: relative;
}

.svc_dtl .title_img_wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
    border-radius: 13px;
}

.svc_dtl .title_img_wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(186, 45, 148, 0.10) 100%);
    pointer-events: none;
}

.svc_dtl .shape_tri {
    position: absolute;
    width: 64px;
    height: 64px;
    top: -24px;
    right: -24px;
    pointer-events: none;
    z-index: 1;
}

.svc_dtl .shape_circ {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 24px;
    left: -20px;
    border-radius: 48px;
    background: linear-gradient(to left, #C37580, transparent);
    opacity: 0.55;
    pointer-events: none;
}

.svc_dtl .ttl_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #BA2D94;
    font-weight: 600;
    letter-spacing: 0;
}

.svc_dtl .ttl_eyebrow .ph {
    font-size: 16px;
}

.svc_dtl .ttl_h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1b1028;
    margin: 0;
}

.svc_dtl .ttl_h1 .outlined_word {
    -webkit-text-stroke: 2px #BA2D94;
    color: transparent;
}

.svc_dtl .ttl_sub {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d54;
    margin: 0;
    max-width: 480px;
}

.svc_dtl .meta_pills {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.svc_dtl .meta_pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 36px;
    background: #f5eef3;
    font-size: 14px;
    line-height: 1.6;
    color: #5a3060;
    border: 1px solid rgba(186, 45, 148, 0.12);
}

.svc_dtl .meta_pill .ph {
    color: #BA2D94;
    font-size: 16px;
}

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

.svc_dtl .price_fig {
    font-size: 36px;
    line-height: 1.2;
    color: #BA2D94;
    font-weight: 700;
}

.svc_dtl .seats_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(186, 45, 148, 0.07);
    font-size: 14px;
    line-height: 1.6;
    color: #BA2D94;
    font-weight: 600;
}

.svc_dtl .btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 13px;
    background: #BA2D94;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #BA2D94;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.18s cubic-bezier(0.4, 0, 0.6, 1), color 0.18s cubic-bezier(0.4, 0, 0.6, 1), border-color 0.18s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
}

.svc_dtl .btn_primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    border: 2px solid #fff;
    opacity: 0;
    transition: opacity 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.svc_dtl .btn_primary:hover {
    background: #fff;
    color: #BA2D94;
    border-color: #BA2D94;
}

.svc_dtl .btn_primary:hover::before {
    opacity: 1;
}

.svc_dtl .btn_primary:focus-visible {
    outline: 3px solid #BA2D94;
    outline-offset: 3px;
}

@keyframes drop_settle {
    0% {
        opacity: 0;
        transform: translateY(-32px) scale(1.04);
    }

    70% {
        opacity: 1;
        transform: translateY(4px) scale(0.99);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes zoom_out_settle {
    0% {
        transform: scale(1.09);
        opacity: 0.7;
    }

    70% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.svc_dtl .title_col_text {
    animation: drop_settle 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.svc_dtl .title_col_img {
    animation: zoom_out_settle 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s both;
}

.svc_dtl .div_dots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 24px;
    max-width: 1170px;
    margin: 0 auto;
}

.svc_dtl .div_dots_row {
    border-top: 2px dotted rgba(186, 45, 148, 0.22);
}

.svc_dtl .prog_sec {
    padding: 48px 0;
    background: linear-gradient(to left, rgba(195, 117, 128, 0.08), transparent);
    position: relative;
}

.svc_dtl .prog_sec .pg_inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

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

.svc_dtl .prog_aside_label {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc_dtl .accent_line {
    width: 36px;
    height: 3px;
    border-radius: 36px;
    background: #BA2D94;
}

.svc_dtl .prog_aside_h {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1028;
    margin: 0;
    text-align: center;
}

.svc_dtl .prog_aside_p {
    font-size: 14px;
    line-height: 1.9;
    color: #5a3060;
    margin: 0;
    text-align: left;
}

.svc_dtl .prog_dashed_path {
    position: absolute;
    top: 0;
    right: 24px;
    width: 120px;
    height: 100%;
    pointer-events: none;
    opacity: 0.18;
}

.svc_dtl .prog_body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc_dtl .prog_body h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1028;
    margin: 0 0 6px 0;
}

.svc_dtl .prog_body h3 {
    font-size: 16px;
    line-height: 1.6;
    color: #BA2D94;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.svc_dtl .prog_body p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d54;
    margin: 0 0 12px 0;
}

.svc_dtl .prog_body ul {
    margin: 0 0 12px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc_dtl .prog_body ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    font-size: 16px;
    line-height: 1.6;
    color: #2e1f3a;
}

.svc_dtl .prog_body ul li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #BA2D94;
    margin-top: 6px;
}

.svc_dtl .prog_body dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 24px;
    margin: 0 0 12px 0;
}

.svc_dtl .prog_body dt {
    font-size: 14px;
    line-height: 1.6;
    color: #BA2D94;
    font-weight: 700;
}

.svc_dtl .prog_body dd {
    font-size: 14px;
    line-height: 1.6;
    color: #4a3d54;
    margin: 0;
}

.svc_dtl .prog_body blockquote {
    margin: 0 0 12px 0;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(186, 45, 148, 0.05);
    font-size: 16px;
    line-height: 1.9;
    color: #2e1f3a;
    font-style: italic;
}

.svc_dtl .prog_body cite {
    font-size: 14px;
    color: #BA2D94;
    font-style: normal;
}

.svc_dtl .prog_body figure {
    margin: 0 0 12px 0;
}

.svc_dtl .prog_body figcaption {
    font-size: 14px;
    color: #7a6080;
    line-height: 1.6;
    margin-top: 6px;
}

.svc_dtl .prog_body details {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    margin-bottom: 6px;
}

.svc_dtl .prog_body summary {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1028;
    font-weight: 600;
    padding: 12px;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.svc_dtl .prog_body summary::-webkit-details-marker {
    display: none;
}

.svc_dtl .prog_body details[open] summary {
    color: #BA2D94;
}

.svc_dtl .prog_body details>*:not(summary) {
    padding: 0 12px 12px 12px;
    font-size: 14px;
    line-height: 1.9;
    color: #4a3d54;
}

.svc_dtl .div_slash {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.svc_dtl .div_slash_line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, rgba(195, 117, 128, 0.3), transparent);
}

.svc_dtl .div_slash_dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #BA2D94;
    opacity: 0.5;
}

.svc_dtl .desc_sec {
    padding: 48px 0;
    background: #fff;
    position: relative;
}

.svc_dtl .desc_sec .pg_inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.svc_dtl .desc_top_label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.svc_dtl .desc_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1028;
    margin: 0;
}

.svc_dtl .desc_h2 .outlined_word {
    -webkit-text-stroke: 2px #C37580;
    color: transparent;
}

.svc_dtl .desc_sub {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d54;
    margin: 0;
    max-width: 560px;
    text-align: left;
}

.svc_dtl .desc_body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.svc_dtl .desc_body h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1028;
    margin: 0 0 12px 0;
}

.svc_dtl .desc_body h3 {
    font-size: 16px;
    line-height: 1.6;
    color: #BA2D94;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.svc_dtl .desc_body p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d54;
    margin: 0 0 12px 0;
}

.svc_dtl .desc_body mark {
    background: rgba(186, 45, 148, 0.12);
    color: #1b1028;
    border-radius: 4px;
    padding: 0 4px;
}

.svc_dtl .desc_body ul,
.svc_dtl .desc_body ol {
    margin: 0 0 12px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    counter-reset: desc_counter;
}

.svc_dtl .desc_body ol li {
    counter-increment: desc_counter;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #f5eef3;
    font-size: 16px;
    line-height: 1.6;
    color: #2e1f3a;
}

.svc_dtl .desc_body ol li::before {
    content: counter(desc_counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 48px;
    background: #BA2D94;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.svc_dtl .desc_body ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #f5eef3;
    font-size: 16px;
    line-height: 1.6;
    color: #2e1f3a;
}

.svc_dtl .desc_body ul li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #C37580;
    margin-top: 6px;
}

.svc_dtl .desc_body blockquote {
    margin: 0 0 12px 0;
    padding: 12px 24px;
    border-radius: 13px;
    background: linear-gradient(to left, rgba(195, 117, 128, 0.1), transparent);
    font-size: 16px;
    line-height: 1.9;
    color: #2e1f3a;
    font-style: italic;
}

.svc_dtl .desc_body cite {
    font-size: 14px;
    color: #BA2D94;
    font-style: normal;
    display: block;
    margin-top: 6px;
}

.svc_dtl .desc_body figure {
    margin: 0 0 12px 0;
}

.svc_dtl .desc_body figcaption {
    font-size: 14px;
    color: #7a6080;
    line-height: 1.6;
    margin-top: 6px;
}

.svc_dtl .div_dots2 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 24px;
    max-width: 1170px;
    margin: 0 auto;
}

.svc_dtl .div_dots2_row {
    border-top: 2px dotted rgba(195, 117, 128, 0.28);
}

.svc_dtl .book_sec {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.svc_dtl .book_sec_bg {
    position: absolute;
    inset: 0;
    background-image: var(--book-bg-img, none);
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.svc_dtl .book_sec_overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
    pointer-events: none;
}

.svc_dtl .book_sec .pg_inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
}

.svc_dtl .book_text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.svc_dtl .book_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1028;
    margin: 0;
}

.svc_dtl .book_p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d54;
    margin: 0;
}

.svc_dtl .book_meta_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc_dtl .book_meta_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #2e1f3a;
}

.svc_dtl .book_meta_item .ph {
    color: #BA2D94;
    font-size: 16px;
    flex-shrink: 0;
}

.svc_dtl .book_meta_item strong {
    color: #BA2D94;
}

.svc_dtl .book_form_card {
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc_dtl .book_form_card h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1028;
    font-weight: 700;
    margin: 0;
}

.svc_dtl .form_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc_dtl .form_field label {
    font-size: 14px;
    line-height: 1.6;
    color: #4a3d54;
    font-weight: 600;
}

.svc_dtl .form_field input,
.svc_dtl .form_field textarea,
.svc_dtl .form_field select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(186, 45, 148, 0.2);
    background: #fdf8fc;
    font-size: 16px;
    line-height: 1.6;
    color: #1b1028;
    outline: none;
    transition: border-color 0.16s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.16s cubic-bezier(0.4, 0, 0.6, 1);
    width: 100%;
    box-sizing: border-box;
}

.svc_dtl .form_field input::placeholder,
.svc_dtl .form_field textarea::placeholder {
    color: #b89db8;
    font-weight: 300;
}

.svc_dtl .form_field input:focus,
.svc_dtl .form_field textarea:focus,
.svc_dtl .form_field select:focus {
    border-color: #BA2D94;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.08);
}

.svc_dtl .form_field textarea {
    resize: vertical;
    min-height: 80px;
}

.svc_dtl .btn_submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 13px;
    background: #BA2D94;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    border: 2px solid #BA2D94;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s cubic-bezier(0.4, 0, 0.6, 1), color 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.12);
}

.svc_dtl .btn_submit:hover {
    background: #fff;
    color: #BA2D94;
}

.svc_dtl .btn_submit:focus-visible {
    outline: 3px solid #BA2D94;
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .svc_dtl .title_row .pg_inner {
        flex-direction: column;
        gap: 24px;
    }

    .svc_dtl .title_col_img {
        flex: unset;
        max-width: 100%;
        width: 100%;
    }

    .svc_dtl .ttl_h1 {
        font-size: 36px;
    }

    .svc_dtl .prog_sec .pg_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .svc_dtl .prog_aside {
        position: static;
    }

    .svc_dtl .desc_body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .svc_dtl .book_sec .pg_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .svc_dtl .ttl_h1 {
        font-size: 36px;
    }

    .svc_dtl .price_fig {
        font-size: 36px;
    }

    .svc_dtl .prog_aside_h {
        font-size: 36px;
    }
}

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

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

@keyframes rsls_fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rsls_grad_shift {
    0% {
        background-position: 0% 50%;
    }

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

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

.rsls .band_top {
    background: linear-gradient(120deg, #BA2D94, #C37580, #E2D5D2, #BA2D94);
    background-size: 300% 300%;
    animation: rsls_grad_shift 9s ease-in-out infinite;
    padding: 72px 24px 64px;
    position: relative;
}

.rsls .band_top .pg_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.rsls .band_top_text {
    flex: 1 1 0;
    min-width: 0;
    animation: rsls_fadein 0.18s ease-out both;
}

.rsls .band_top_quote_mark {
    position: absolute;
    top: 24px;
    left: 48px;
    font-size: 220px;
    line-height: 1.2;
    color: rgba(186, 45, 148, 0.10);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    font-style: normal;
}

.rsls .band_top_text {
    position: relative;
    z-index: 1;
}

.rsls .band_top_eyebrow {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    background: rgba(186, 45, 148, 0.32);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.rsls .band_top_h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px 0;
}

.rsls .band_top_desc {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    max-width: 520px;
    margin: 0;
}

.rsls .band_top_img_col {
    flex: 0 0 380px;
    max-width: 380px;
    position: relative;
    z-index: 1;
    animation: rsls_fadein 0.22s ease-out 0.08s both;
}

.rsls .band_top_img_col img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 13px;
    display: block;
}

.rsls .band_top_outline_shape {
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(186, 45, 148, 0.18);
    border-radius: 48px;
    pointer-events: none;
}

.rsls .divider_a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    background: #fff;
}

.rsls .divider_a_line {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #C37580, transparent);
    max-width: 320px;
}

.rsls .divider_a_gem {
    width: 10px;
    height: 10px;
    background: #BA2D94;
    border-radius: 8px;
    transform: rotate(45deg);
}

.rsls .orbit_sec {
    background: #fff;
    padding: 72px 24px;
    animation: rsls_fadein 0.20s ease-out 0.12s both;
}

.rsls .orbit_sec .pg_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rsls .orbit_label {
    display: block;
    width: 48px;
    height: 3px;
    background: #BA2D94;
    border-radius: 8px;
    margin: 0 auto 12px;
}

.rsls .orbit_heading {
    font-size: 36px;
    line-height: 1.2;
    color: #2a1020;
    text-align: center;
    margin: 0 0 12px 0;
}

.rsls .orbit_sub {
    font-size: 16px;
    line-height: 1.9;
    color: #5a3550;
    text-align: left;
    max-width: 580px;
    margin: 0 auto 48px;
}

.rsls .orbit_ring {
    position: relative;
    width: 560px;
    height: 560px;
    max-width: 100%;
}

.rsls .orbit_center_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 48px;
    background: linear-gradient(135deg, #BA2D94, #C37580);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    z-index: 2;
}

.rsls .orbit_center_icon {
    width: 48px;
    height: 48px;
    margin-bottom: 6px;
}

.rsls .orbit_center_label {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    padding: 0 12px;
}

.rsls .orbit_track {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    margin-top: -240px;
    margin-left: -240px;
    border: 1.5px dashed rgba(186, 45, 148, 0.18);
    border-radius: 48px;
    pointer-events: none;
}

.rsls .orbit_node {
    position: absolute;
    width: 120px;
    background: #fff;
    border: 1.5px solid #E2D5D2;
    border-radius: 13px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    transition: box-shadow 0.18s ease-out, border-color 0.18s ease-out;
    text-align: center;
}

.rsls .orbit_node:hover {
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    border-color: #BA2D94;
}

.rsls .orbit_node_icon {
    color: #BA2D94;
    font-size: 22px;
}

.rsls .orbit_node_name {
    font-size: 14px;
    line-height: 1.6;
    color: #2a1020;
}

.rsls .orbit_node.pos_top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.rsls .orbit_node.pos_top_right {
    top: 14%;
    right: 0;
}

.rsls .orbit_node.pos_right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.rsls .orbit_node.pos_bot_right {
    bottom: 14%;
    right: 0;
}

.rsls .orbit_node.pos_bot {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.rsls .orbit_node.pos_bot_left {
    bottom: 14%;
    left: 0;
}

.rsls .orbit_node.pos_left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.rsls .orbit_node.pos_top_left {
    top: 14%;
    left: 0;
}

.rsls .orbit_below {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.rsls .orbit_card {
    background: linear-gradient(160deg, #fff 60%, #E2D5D2 100%);
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(195, 117, 128, 0.05);
    transition: box-shadow 0.20s cubic-bezier(0.4, 0, 0.6, 1);
}

.rsls .orbit_card:hover {
    box-shadow: 0 6px 25px 0 rgba(195, 117, 128, 0.08);
}

.rsls .orbit_card_num {
    font-size: 36px;
    line-height: 1.2;
    color: #BA2D94;
    margin-bottom: 6px;
}

.rsls .orbit_card_label {
    font-size: 14px;
    line-height: 1.6;
    color: #5a3550;
}

@media (max-width: 900px) {
    .rsls .band_top .pg_inner {
        flex-direction: column;
    }

    .rsls .band_top_img_col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .rsls .band_top_h1 {
        font-size: 36px;
    }

    .rsls .orbit_ring {
        width: 340px;
        height: 340px;
    }

    .rsls .orbit_track {
        width: 300px;
        height: 300px;
        margin-top: -150px;
        margin-left: -150px;
    }

    .rsls .orbit_center_wrap {
        width: 120px;
        height: 120px;
        border-radius: 36px;
    }

    .rsls .orbit_node {
        width: 84px;
        padding: 6px;
    }

    .rsls .orbit_below {
        grid-template-columns: 1fr;
    }
}

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

    .rsls .orbit_sec {
        padding: 48px 12px;
    }

    .rsls .orbit_ring {
        width: 280px;
        height: 280px;
    }

    .rsls .orbit_track {
        width: 240px;
        height: 240px;
        margin-top: -120px;
        margin-left: -120px;
    }

    .rsls .orbit_center_wrap {
        width: 90px;
        height: 90px;
        border-radius: 13px;
    }

    .rsls .orbit_node {
        width: 68px;
        font-size: 11px;
    }

    .rsls .orbit_node_name {
        font-size: 11px;
    }
}

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

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

.ct_us .reveal_clip {
    animation: clipReveal 0.55s cubic-bezier(0.4, 0, 0.6, 1) both;
}

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

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

.ct_us .reveal_clip.delay_1 {
    animation-delay: 0.12s;
}

.ct_us .reveal_clip.delay_2 {
    animation-delay: 0.22s;
}

.ct_us .reveal_clip.delay_3 {
    animation-delay: 0.34s;
}

.ct_us .top_band {
    background: #fff;
    padding: 48px 0 0 0;
    position: relative;
}

.ct_us .top_band_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 340px;
}

.ct_us .top_text {
    flex: 0 0 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 48px 48px 0;
    position: relative;
}

.ct_us .dot_path {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    margin-bottom: 24px;
}

.ct_us .dot_path span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #BA2D94;
    opacity: 0.18;
    transition: opacity 0.18s ease-out;
}

.ct_us .dot_path span:nth-child(2) {
    opacity: 0.35;
    background: #C37580;
}

.ct_us .dot_path span:nth-child(3) {
    opacity: 0.55;
}

.ct_us .dot_path span:nth-child(4) {
    opacity: 0.75;
    background: #C37580;
}

.ct_us .dot_path span:nth-child(5) {
    opacity: 1;
}

.ct_us .top_label {
    font-size: 14px;
    line-height: 1.6;
    color: #BA2D94;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.ct_us .top_h {
    font-size: 66px;
    line-height: 1.2;
    color: #1b1225;
    margin-bottom: 12px;
    font-weight: 800;
}

.ct_us .top_h .count_el {
    display: inline-block;
    font-size: 36px;
    line-height: 1.2;
    color: #BA2D94;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 6px;
    background: linear-gradient(to left, transparent, #E2D5D2 80%);
    padding: 0 12px;
    border-radius: 8px;
}

.ct_us .top_sub {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d52;
    max-width: 420px;
}

.ct_us .top_img_col {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
    border-radius: 0 13px 13px 0;
}

.ct_us .top_img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ct_us .top_img_col::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, rgba(27, 18, 37, 0.55) 0%, transparent 100%);
    pointer-events: none;
}

.ct_us .chevron_div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.ct_us .chevron_div svg {
    display: block;
    width: 100%;
    height: 48px;
}

.ct_us .details_band {
    background: #f5f0f7;
    padding: 48px 0;
    position: relative;
}

.ct_us .details_band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 0% 50%, rgba(186, 45, 148, 0.07) 60px, transparent 60px),
        radial-gradient(circle at 30px 80px, rgba(195, 117, 128, 0.06) 50px, transparent 50px),
        radial-gradient(circle at 60px 30px, rgba(226, 213, 210, 0.12) 55px, transparent 55px);
    background-size: 90px 90px;
    pointer-events: none;
}

.ct_us .details_grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.ct_us .det_left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct_us .acc_line {
    display: block;
    width: 36px;
    height: 4px;
    background: #BA2D94;
    border-radius: 8px;
    margin-bottom: 12px;
}

.ct_us .det_h {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1225;
    font-weight: 700;
    margin-bottom: 12px;
}

.ct_us .det_desc {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d52;
}

.ct_us .info_cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct_us .info_card {
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    border-top: 3px solid #BA2D94;
    transition: box-shadow 0.18s ease-out, transform 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ct_us .info_card:hover {
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    transform: translateY(-2px);
}

.ct_us .info_card .ic_icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(to left, transparent, #E2D5D2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BA2D94;
    font-size: 20px;
}

.ct_us .info_card .ic_body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct_us .info_card .ic_label {
    font-size: 14px;
    line-height: 1.6;
    color: #C37580;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ct_us .info_card .ic_val {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1225;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.ct_us .info_card .ic_val:hover {
    color: #BA2D94;
    text-decoration: underline;
}

.ct_us .det_right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct_us .avail_h {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1225;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.ct_us .avail_h .badge {
    display: inline-block;
    background: #BA2D94;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 12px;
    border-radius: 36px;
    font-weight: 600;
}

.ct_us .avail_table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
}

.ct_us .avail_table thead tr {
    background: #BA2D94;
    color: #fff;
}

.ct_us .avail_table thead th {
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 24px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.ct_us .avail_table tbody tr {
    background: #fff;
    transition: background 0.15s ease-out;
}

.ct_us .avail_table tbody tr:nth-child(even) {
    background: #fdf6fb;
}

.ct_us .avail_table tbody tr:hover {
    background: #f0e4f5;
}

.ct_us .avail_table tbody td {
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 24px;
    color: #2d1f38;
    border-bottom: 1px solid #E2D5D2;
}

.ct_us .avail_table tbody td .tag {
    display: inline-block;
    background: #E2D5D2;
    color: #BA2D94;
    font-size: 14px;
    padding: 0 6px;
    border-radius: 8px;
    font-weight: 600;
}

.ct_us .avail_table tbody td .tag.open {
    background: rgba(186, 45, 148, 0.12);
    color: #BA2D94;
}

.ct_us .avail_table tbody td .tag.limited {
    background: rgba(195, 117, 128, 0.14);
    color: #8a3040;
}

.ct_us .chevron_div2 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.ct_us .chevron_div2 svg {
    display: block;
    width: 100%;
    height: 48px;
}

.ct_us .form_band {
    background: #fff;
    padding: 48px 0 48px 0;
}

.ct_us .form_outer {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}

.ct_us .form_intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 6px;
}

.ct_us .form_intro_h {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1225;
    font-weight: 700;
}

.ct_us .form_intro_p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3d52;
}

.ct_us .mini_badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
}

.ct_us .mini_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f0f7;
    color: #BA2D94;
    font-size: 14px;
    line-height: 1.6;
    padding: 6px 12px;
    border-radius: 36px;
    font-weight: 600;
    border: 1px solid #E2D5D2;
}

.ct_us .mini_badge i {
    font-size: 14px;
}

.ct_us .ct_form {
    background: #fff;
    border-radius: 13px;
    padding: 48px;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    border: 1.5px dashed #E2D5D2;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct_us .form_row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct_us .form_lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #1b1225;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ct_us .form_lbl .req {
    color: #BA2D94;
    margin-left: 2px;
}

.ct_us .form_inp {
    width: 100%;
    padding: 12px 24px;
    border: 1.5px solid #E2D5D2;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #1b1225;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out;
}

.ct_us .form_inp::placeholder {
    color: #b8a8c2;
    font-weight: 300;
}

.ct_us .form_inp:focus {
    border-color: #BA2D94;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
}

.ct_us .radio_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct_us .radio_opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 1.5px solid #E2D5D2;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.18s ease-out, background 0.18s ease-out;
    position: relative;
}

.ct_us .radio_opt:hover {
    border-color: #BA2D94;
    background: #fdf6fb;
}

.ct_us .radio_opt input[type="radio"] {
    accent-color: #BA2D94;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.ct_us .radio_opt input[type="radio"]:focus-visible {
    outline: 2px solid #BA2D94;
    outline-offset: 2px;
}

.ct_us .radio_opt_text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct_us .radio_opt_name {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1225;
    font-weight: 600;
}

.ct_us .radio_opt_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #7a6585;
}

.ct_us .radio_opt .opt_tag {
    margin-left: auto;
    flex-shrink: 0;
    display: inline-block;
    background: rgba(186, 45, 148, 0.1);
    color: #BA2D94;
    font-size: 14px;
    padding: 0 8px;
    border-radius: 8px;
    font-weight: 600;
}

.ct_us .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f5f0f7;
    border-radius: 8px;
}

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

.ct_us .privacy_row input[type="checkbox"]:focus-visible {
    outline: 2px solid #BA2D94;
    outline-offset: 2px;
}

.ct_us .privacy_txt {
    font-size: 14px;
    line-height: 1.9;
    color: #4a3d52;
}

.ct_us .privacy_txt a {
    color: #BA2D94;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.ct_us .privacy_txt a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #BA2D94;
    transition: width 0.18s ease-out;
}

.ct_us .privacy_txt a:hover::after {
    width: 100%;
}

.ct_us .submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 48px;
    background: #BA2D94;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    border: 2px solid #BA2D94;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.18s ease-out, background 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ct_us .submit_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 13px;
    border: 2px solid #BA2D94;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.22s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none;
}

.ct_us .submit_btn:hover {
    background: #fff;
    color: #BA2D94;
}

.ct_us .submit_btn:hover::before {
    clip-path: inset(0 0% 0 0);
}

.ct_us .submit_btn:focus-visible {
    outline: 2px solid #BA2D94;
    outline-offset: 3px;
}

.ct_us .submit_btn:active {
    transform: scale(0.98);
}

@media (max-width: 900px) {
    .ct_us .top_band_inner {
        flex-direction: column;
        min-height: auto;
    }

    .ct_us .top_text {
        flex: none;
        padding: 48px 0 24px 0;
    }

    .ct_us .top_img_col {
        flex: none;
        height: 260px;
        border-radius: 13px;
    }

    .ct_us .top_h {
        font-size: 36px;
    }

    .ct_us .details_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ct_us .form_outer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ct_us .ct_form {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .ct_us .top_h {
        font-size: 36px;
    }

    .ct_us .ct_form {
        padding: 24px 12px;
    }

    .ct_us .avail_table thead th,
    .ct_us .avail_table tbody td {
        padding: 12px;
    }
}

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

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

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

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

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.srv .top_band {
    background: #fff;
    position: relative;
    padding: 48px 24px;
    overflow: hidden;
}

.srv .top_band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to left, #C37580, transparent);
}

.srv .top_band_bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(186, 45, 148, 0.07) 0%, rgba(195, 117, 128, 0.04) 40%, transparent 70%);
    pointer-events: none;
}

.srv .top_band_inner {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    animation: maskReveal 0.55s cubic-bezier(0.4, 0, 0.6, 1) both;
}

.srv .top_label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #BA2D94;
    margin-bottom: 12px;
}

.srv .top_h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0 0 24px;
    font-weight: 800;
}

.srv .top_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #3d3d4e;
    max-width: 560px;
    margin: 0 auto;
}

.srv .cards_row {
    background: #f5f0f4;
    padding: 48px 24px;
}

.srv .cards_row_inner {
    max-width: 1170px;
    margin: 0 auto;
}

.srv .row_eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #BA2D94;
    margin-bottom: 6px;
}

.srv .row_heading {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0 0 24px;
    font-weight: 700;
}

.srv .row_heading::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #BA2D94;
    margin-bottom: 12px;
    border-radius: 8px;
}

.srv .card_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.srv .svc_card {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1), transform 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.srv .svc_card:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    transform: translateY(-3px);
}

.srv .card_img_wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.srv .card_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.srv .svc_card:hover .card_img_wrap img {
    transform: scale(1.04);
}

.srv .card_img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(186, 45, 148, 0.38), transparent);
    pointer-events: none;
}

.srv .card_badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #BA2D94;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 36px;
}

.srv .card_body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.srv .card_user_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #C37580;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.srv .card_user_tag svg {
    flex-shrink: 0;
}

.srv .card_title {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b2e;
    line-height: 1.6;
    margin: 0;
}

.srv .card_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0;
}

.srv .card_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #6a6a7e;
}

.srv .card_meta_item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.srv .card_meta_item i {
    color: #BA2D94;
    font-size: 16px;
}

.srv .card_price_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #E2D5D2;
}

.srv .card_price {
    font-size: 36px;
    font-weight: 800;
    color: #BA2D94;
    line-height: 1.2;
}

.srv .card_seats {
    font-size: 14px;
    color: #C37580;
    font-weight: 600;
}

.srv .card_cta {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 24px;
    background: #BA2D94;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.19s cubic-bezier(0.4, 0, 0.6, 1), box-shadow 0.19s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
}

.srv .card_cta::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none;
}

.srv .card_cta:hover {
    background: #9a2278;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.12);
}

.srv .card_cta:hover::after {
    border-color: rgba(255, 255, 255, 0.35);
}

.srv .card_cta:focus {
    outline: 3px solid #BA2D94;
    outline-offset: 3px;
}

.srv .compare_band {
    background: #1b1b2e;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}

.srv .compare_band::after {
    content: '';
    position: absolute;
    top: -48px;
    right: -48px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(186, 45, 148, 0.15);
    border-radius: 13px;
    pointer-events: none;
}

.srv .compare_band::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(186, 45, 148, 0.09);
    border-radius: 13px;
    pointer-events: none;
}

.srv .compare_inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.srv .compare_text_col .eyebrow_light {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C37580;
    font-weight: 600;
    margin-bottom: 12px;
}

.srv .compare_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px;
    font-weight: 700;
}

.srv .compare_h2::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #BA2D94;
    margin-bottom: 12px;
    border-radius: 8px;
}

.srv .compare_para {
    font-size: 16px;
    line-height: 1.6;
    color: #c8c8d8;
}

.srv .bar_card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
}

.srv .bar_item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.srv .bar_labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #c8c8d8;
}

.srv .bar_labels span:first-child {
    font-weight: 700;
    color: #fff;
}

.srv .bar_track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    position: relative;
}

.srv .bar_fill {
    height: 100%;
    border-radius: 36px;
    background: linear-gradient(to left, #C37580, #BA2D94);
    transition: width 0.38s cubic-bezier(0.4, 0, 0.6, 1);
}

.srv .bar_extremes {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(200, 200, 216, 0.6);
}

.srv .process_band {
    background: #fff;
    padding: 48px 24px;
}

.srv .process_inner {
    max-width: 1170px;
    margin: 0 auto;
}

.srv .process_top {
    text-align: center;
    margin-bottom: 48px;
}

.srv .process_eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #BA2D94;
    font-weight: 600;
    margin-bottom: 6px;
}

.srv .process_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0;
    font-weight: 700;
}

.srv .process_h2::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #BA2D94;
    margin: 0 auto 12px;
    border-radius: 8px;
}

.srv .process_track {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.srv .proc_entry {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border-radius: 13px;
    background: #f5f0f4;
    margin-bottom: 12px;
    position: relative;
    transition: box-shadow 0.19s cubic-bezier(0.4, 0, 0.6, 1);
}

.srv .proc_entry:hover {
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
}

.srv .proc_entry.first_step {
    border-top: 3px solid #BA2D94;
}

.srv .proc_entry.last_step {
    border-bottom: 3px solid #C37580;
}

.srv .proc_num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: #BA2D94;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
}

.srv .proc_text {
    flex: 1;
}

.srv .proc_h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b2e;
    margin: 0 0 6px;
}

.srv .proc_p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a5e;
    margin: 0;
}

.srv .visual_band {
    background: #E2D5D2;
    padding: 48px 24px;
}

.srv .visual_inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.srv .visual_img_col {
    position: relative;
}

.srv .visual_img_frame {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
}

.srv .visual_img_frame img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.srv .visual_img_tint {
    position: absolute;
    inset: 0;
    border-radius: 13px;
    background: linear-gradient(to left, rgba(186, 45, 148, 0.28), transparent);
    pointer-events: none;
}

.srv .visual_decor {
    position: absolute;
    bottom: -24px;
    left: -24px;
    pointer-events: none;
}

.srv .visual_decor svg rect {
    fill: none;
}

.srv .visual_text_col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.srv .visual_eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #BA2D94;
    font-weight: 600;
}

.srv .visual_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0;
    font-weight: 700;
}

.srv .visual_h2::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #BA2D94;
    margin-bottom: 12px;
    border-radius: 8px;
}

.srv .visual_para {
    font-size: 16px;
    line-height: 1.6;
    color: #3d3d4e;
    margin: 0;
}

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

.srv .feature_list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #3d3d4e;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
}

.srv .feature_list li i {
    color: #BA2D94;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.srv .faq_band {
    background: #fff;
    padding: 48px 24px;
}

.srv .faq_inner {
    max-width: 1170px;
    margin: 0 auto;
}

.srv .faq_top {
    margin-bottom: 48px;
}

.srv .faq_eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #BA2D94;
    font-weight: 600;
    margin-bottom: 6px;
}

.srv .faq_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0;
    font-weight: 700;
}

.srv .faq_h2::before {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: #BA2D94;
    margin-bottom: 12px;
    border-radius: 8px;
}

.srv .faq_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.srv .faq_item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
}

.srv .faq_item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: #f5f0f4;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1b1b2e;
    list-style: none;
    user-select: none;
    transition: background 0.17s cubic-bezier(0.4, 0, 0.6, 1);
}

.srv .faq_item summary::-webkit-details-marker {
    display: none;
}

.srv .faq_item summary:hover {
    background: #E2D5D2;
}

.srv .faq_item summary i {
    color: #BA2D94;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.srv .faq_item[open] summary i {
    transform: rotate(180deg);
}

.srv .faq_ans {
    padding: 24px;
    background: #fff;
    font-size: 14px;
    line-height: 1.9;
    color: #4a4a5e;
}

@media (max-width: 768px) {
    .srv .top_h1 {
        font-size: 36px;
    }

    .srv .compare_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .srv .visual_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .srv .visual_decor {
        display: none;
    }

    .srv .card_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .srv .top_h1 {
        font-size: 36px;
    }

    .srv .process_h2,
    .srv .compare_h2,
    .srv .visual_h2,
    .srv .faq_h2,
    .srv .row_heading {
        font-size: 36px;
    }
}

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

.ab-us .pg-cap {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.ab-us .s1 {
    position: relative;
    padding-top: 48px;
    padding-bottom: 48px;
    background: linear-gradient(to left, #E2D5D2 0%, #fff 60%);
}

.ab-us .s1-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
}

.ab-us .s1-img-col {
    position: relative;
}

.ab-us .s1-img-wrap {
    overflow: hidden;
    border-radius: 13px 48px 13px 48px;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    position: relative;
}

.ab-us .s1-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.ab-us .s1-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(186, 45, 148, 0.38) 0%, transparent 65%);
    border-radius: 13px 48px 13px 48px;
}

.ab-us .s1-geo-a {
    position: absolute;
    top: -24px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: #E2D5D2;
    opacity: 0.45;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    pointer-events: none;
}

.ab-us .s1-geo-b {
    position: absolute;
    bottom: 24px;
    left: -18px;
    width: 48px;
    height: 48px;
    background: #BA2D94;
    opacity: 0.18;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    pointer-events: none;
}

.ab-us .s1-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 12px;
}

.ab-us .s1-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ab-us .s1-line {
    width: 36px;
    height: 2px;
    background: #BA2D94;
    border-radius: 8px;
}

.ab-us .s1-eyebrow span {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #BA2D94;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.ab-us .s1-h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1b1225;
    margin: 0;
}

.ab-us .s1-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #3d2e3a;
    margin: 0;
    max-width: 480px;
}

.ab-us .s1-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.ab-us .s1-metric {
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05), 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1), transform 0.15s cubic-bezier(0.4, 0, 0.6, 1);
}

.ab-us .s1-metric:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    transform: translateY(-2px);
}

.ab-us .s1-metric-val {
    font-size: 36px;
    line-height: 1.2;
    color: #BA2D94;
    font-weight: 700;
}

.ab-us .s1-metric-label {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a56;
}

.ab-us .s1-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border-radius: 36px;
    border: 1.5px solid rgba(186, 45, 148, 0.08);
    pointer-events: none;
    animation: ring-expand 3.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 0;
}

.ab-us .s1-pulse-ring.r2 {
    animation-delay: 1.2s;
    width: 420px;
    height: 420px;
}

.ab-us .s1-pulse-ring.r3 {
    animation-delay: 2.4s;
    width: 500px;
    height: 500px;
}

@keyframes ring-expand {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.88);
    }

    70% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1.08);
    }

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

.ab-us .s2 {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #fff;
    position: relative;
}

.ab-us .s2-top {
    text-align: center;
    margin-bottom: 48px;
}

.ab-us .s2-top-line {
    width: 36px;
    height: 2px;
    background: #C37580;
    border-radius: 8px;
    margin: 0 auto 12px;
}

.ab-us .s2-h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1225;
    margin: 0 0 12px;
}

.ab-us .s2-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #5a4a56;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.ab-us .s2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.ab-us .s2-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ab-us .s2-col.mid {
    padding-top: 36px;
}

.ab-us .s2-person-card {
    background: linear-gradient(to left, #E2D5D2 0%, #fff 100%);
    border-radius: 13px 48px 13px 13px;
    overflow: hidden;
    box-shadow: 0 6px 25px 0 rgba(195, 117, 128, 0.08);
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.6, 1);
}

.ab-us .s2-person-card:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
}

.ab-us .s2-person-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ab-us .s2-person-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ab-us .s2-person-name {
    font-size: 16px;
    line-height: 1.2;
    color: #1b1225;
    font-weight: 700;
}

.ab-us .s2-person-role {
    font-size: 14px;
    line-height: 1.6;
    color: #BA2D94;
    font-weight: 600;
}

.ab-us .s2-person-bio {
    font-size: 14px;
    line-height: 1.9;
    color: #5a4a56;
    margin-top: 6px;
}

.ab-us .s2-val-card {
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.ab-us .s2-val-card:hover {
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
}

.ab-us .s2-val-card.bg-a {
    background: #f7f2f6;
}

.ab-us .s2-val-card.bg-b {
    background: #fdf4fb;
}

.ab-us .s2-val-card.bg-c {
    background: #f9f5f4;
}

.ab-us .s2-val-card.bg-d {
    background: #f5f0f7;
}

.ab-us .s2-val-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #BA2D94;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-us .s2-val-icon i {
    color: #fff;
    font-size: 20px;
}

.ab-us .s2-val-h {
    font-size: 16px;
    line-height: 1.2;
    color: #1b1225;
    font-weight: 700;
    margin: 0;
}

.ab-us .s2-val-p {
    font-size: 14px;
    line-height: 1.9;
    color: #5a4a56;
    margin: 0;
}

.ab-us .s2-img-card {
    border-radius: 48px 13px 48px 13px;
    overflow: hidden;
    box-shadow: 0 6px 25px 0 rgba(195, 117, 128, 0.08);
    position: relative;
}

.ab-us .s2-img-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.ab-us .s2-img-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #BA2D94;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 12px;
    border-radius: 36px;
    font-weight: 600;
}

.ab-us .s2-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(to left, #E2D5D2 0%, #fff 70%);
    border-radius: 13px;
    padding: 48px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
}

.ab-us .s2-bottom-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-us .s2-bottom-h {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1225;
    margin: 0;
}

.ab-us .s2-bottom-p {
    font-size: 16px;
    line-height: 1.9;
    color: #3d2e3a;
    margin: 0;
}

.ab-us .s2-bottom-img-wrap {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    position: relative;
}

.ab-us .s2-bottom-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.ab-us .s2-bottom-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(186, 45, 148, 0.22) 0%, transparent 60%);
}

.ab-us .s2-contact-strip {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.ab-us .s2-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 13px;
    padding: 12px 24px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05), 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    text-decoration: none;
    transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.6, 1), transform 0.15s cubic-bezier(0.4, 0, 0.6, 1);
    flex: 1 1 auto;
    min-width: 200px;
}

.ab-us .s2-contact-item:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    transform: translateY(-2px);
}

.ab-us .s2-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #E2D5D2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ab-us .s2-contact-icon i {
    color: #BA2D94;
    font-size: 18px;
}

.ab-us .s2-contact-label {
    font-size: 14px;
    line-height: 1.2;
    color: #9a7a94;
}

.ab-us .s2-contact-val {
    font-size: 14px;
    line-height: 1.6;
    color: #1b1225;
    font-weight: 600;
}

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

    .ab-us .s1-h1 {
        font-size: 36px;
    }

    .ab-us .s2-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ab-us .s2-col.mid {
        padding-top: 0;
    }

    .ab-us .s2-bottom {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .ab-us .s1-pulse-ring,
    .ab-us .s1-pulse-ring.r2,
    .ab-us .s1-pulse-ring.r3 {
        display: none;
    }
}

@media (max-width: 600px) {
    .ab-us .s1-metrics {
        grid-template-columns: 1fr;
    }

    .ab-us .s2-contact-strip {
        flex-direction: column;
    }
}

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

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

.cmp .band_top {
    background: linear-gradient(to left, #C37580, transparent), #f5f0f4;
    padding: 48px 0 36px;
    position: relative;
}

.cmp .band_top::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(186, 45, 148, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(186, 45, 148, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.cmp .top_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.cmp .top_text {
    flex: 1 1 55%;
}

.cmp .top_img_col {
    flex: 0 0 38%;
    position: relative;
}

.cmp .top_img_wrap {
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 280px;
}

.cmp .top_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.cmp .top_img_wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(186, 45, 148, 0.45), transparent);
    opacity: 0;
    transition: opacity 0.22s ease-out;
    pointer-events: none;
    border-radius: 13px;
}

.cmp .top_img_wrap:hover::after {
    opacity: 1;
}

.cmp .top_img_wrap:hover img {
    transform: scale(1.03);
}

.cmp .accent_line {
    width: 48px;
    height: 3px;
    background: #BA2D94;
    border-radius: 8px;
    margin-bottom: 12px;
}

.cmp .top_label {
    font-size: 14px;
    color: #BA2D94;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.cmp .top_h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1e1224;
    margin: 0 0 12px;
}

.cmp .top_h1 .kw {
    display: inline;
    border-bottom: 3px solid #BA2D94;
    padding-bottom: 2px;
}

.cmp .top_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #4a3a48;
    max-width: 480px;
    margin: 0;
}

.cmp .wave_div {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

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

.cmp .plans_band {
    background: #fff;
    padding: 48px 0;
}

.cmp .plans_band_inner {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(195, 117, 128, 0.07) 0%, transparent 70%);
    border-radius: 13px;
    padding: 48px 24px;
}

.cmp .plans_hd {
    text-align: center;
    margin-bottom: 36px;
}

.cmp .plans_hd .accent_line {
    margin: 0 auto 12px;
}

.cmp .plans_hd h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1e1224;
    margin: 0 0 12px;
}

.cmp .plans_hd p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a3a48;
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
}

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

.cmp .plan_card {
    border-radius: 13px;
    border: 1.5px solid #E2D5D2;
    padding: 24px;
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    transition: box-shadow 0.18s ease-out, border-color 0.18s ease-out;
    position: relative;
}

.cmp .plan_card:hover {
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    border-color: #C37580;
}

.cmp .plan_card.featured {
    border-color: #BA2D94;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.12);
    background: linear-gradient(to bottom, rgba(186, 45, 148, 0.04), #fff 60%);
}

.cmp .plan_badge {
    display: inline-block;
    background: #BA2D94;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 36px;
    padding: 6px 12px;
    margin-bottom: 12px;
}

.cmp .plan_name {
    font-size: 16px;
    font-weight: 700;
    color: #1e1224;
    margin: 0 0 6px;
    line-height: 1.2;
}

.cmp .plan_price {
    font-size: 36px;
    font-weight: 800;
    color: #BA2D94;
    line-height: 1.2;
    margin: 0 0 6px;
}

.cmp .plan_price span {
    font-size: 16px;
    font-weight: 400;
    color: #7a6878;
}

.cmp .plan_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #5a4a58;
    margin: 0 0 24px;
}

.cmp .plan_feats {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cmp .plan_feats li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #3a2a38;
}

.cmp .feat_icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.cmp .feat_icon.yes {
    background: rgba(186, 45, 148, 0.1);
    color: #BA2D94;
}

.cmp .feat_icon.no {
    background: rgba(195, 117, 128, 0.1);
    color: #C37580;
}

.cmp .feat_icon i {
    font-size: 14px;
}

.cmp .plan_feats li.dimmed {
    color: #9a8a98;
}

.cmp .plan_btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: 2px solid #BA2D94;
    background: transparent;
    color: #BA2D94;
    position: relative;
    overflow: hidden;
    transition: color 0.18s ease-out, background 0.18s ease-out;
}

.cmp .plan_btn::before {
    content: "";
    position: absolute;
    inset: 0 100% 0 0;
    background: #BA2D94;
    transition: inset 0.22s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0;
}

.cmp .plan_btn:hover::before {
    inset: 0;
}

.cmp .plan_btn:hover {
    color: #fff;
}

.cmp .plan_btn span {
    position: relative;
    z-index: 1;
}

.cmp .plan_btn.solid {
    background: #BA2D94;
    color: #fff;
}

.cmp .plan_btn.solid::before {
    background: #8a1a6a;
}

.cmp .plan_btn.solid:hover {
    color: #fff;
}

.cmp .zigzag_top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.cmp .table_band {
    background: #1e1224;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.cmp .circuit_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(195, 117, 128, 1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(195, 117, 128, 1) 1px, transparent 1px),
        linear-gradient(rgba(195, 117, 128, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(195, 117, 128, 0.5) 1px, transparent 1px);
    background-size: 64px 64px, 64px 64px, 16px 16px, 16px 16px;
}

.cmp .circuit_dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: radial-gradient(circle, rgba(195, 117, 128, 1) 1.5px, transparent 1.5px);
    background-size: 64px 64px;
}

.cmp .table_hd {
    text-align: center;
    margin-bottom: 36px;
}

.cmp .table_hd .accent_line {
    margin: 0 auto 12px;
    background: #C37580;
}

.cmp .table_hd h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 12px;
}

.cmp .table_hd p {
    font-size: 16px;
    line-height: 1.6;
    color: #c8b8c6;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.cmp .tbl_wrap {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
}

.cmp .cmp_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.cmp .cmp_table thead tr {
    background: #2a1a30;
}

.cmp .cmp_table thead th {
    padding: 24px 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    border-bottom: 2px solid #BA2D94;
}

.cmp .cmp_table thead th:first-child {
    text-align: left;
    padding-left: 24px;
    width: 34%;
}

.cmp .cmp_table thead th.col_feat {
    background: rgba(186, 45, 148, 0.2);
    color: #f0d0ea;
}

.cmp .cmp_table tbody tr {
    border-bottom: 1px solid #E2D5D2;
    transition: background 0.15s ease-out;
}

.cmp .cmp_table tbody tr:hover {
    background: rgba(186, 45, 148, 0.03);
}

.cmp .cmp_table tbody tr:last-child {
    border-bottom: none;
}

.cmp .cmp_table tbody td {
    padding: 12px;
    font-size: 14px;
    color: #3a2a38;
    text-align: center;
    vertical-align: middle;
}

.cmp .cmp_table tbody td:first-child {
    text-align: left;
    padding-left: 24px;
    font-weight: 600;
    color: #1e1224;
}

.cmp .cmp_table tbody td.col_feat {
    background: rgba(186, 45, 148, 0.03);
}

.cmp .cmp_table .row_cat td {
    background: #f5f0f4;
    font-size: 14px;
    font-weight: 700;
    color: #BA2D94;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 12px 12px 12px 24px;
    text-align: left;
}

.cmp .check_yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 36px;
    background: rgba(186, 45, 148, 0.1);
    color: #BA2D94;
}

.cmp .check_no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 36px;
    background: rgba(195, 117, 128, 0.1);
    color: #C37580;
}

.cmp .check_yes i,
.cmp .check_no i {
    font-size: 14px;
}

.cmp .cell_note {
    font-size: 14px;
    color: #5a4a58;
}

.cmp .mob_cards {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.cmp .mob_card {
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
}

.cmp .mob_card_name {
    font-size: 16px;
    font-weight: 700;
    color: #1e1224;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #E2D5D2;
}

.cmp .mob_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(226, 213, 210, 0.5);
}

.cmp .mob_row:last-child {
    border-bottom: none;
}

.cmp .mob_feat_name {
    color: #5a4a58;
    flex: 1 1 auto;
}

.cmp .mob_feat_val {
    color: #1e1224;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 12px;
}

.cmp .pulse_el {
    animation: soft_pulse 3s ease-out infinite;
}

@keyframes soft_pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@media (max-width: 900px) {
    .cmp .top_row {
        flex-direction: column;
        gap: 24px;
    }

    .cmp .top_img_col {
        flex: 0 0 auto;
        width: 100%;
    }

    .cmp .top_h1 {
        font-size: 36px;
    }

    .cmp .plans_grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cmp .tbl_wrap {
        display: none;
    }

    .cmp .mob_cards {
        display: flex;
    }
}

@media (max-width: 600px) {
    .cmp .top_h1 {
        font-size: 36px;
    }

    .cmp .plans_band_inner {
        padding: 24px 12px;
    }
}

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

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

.entr .t1_frame {
    background-color: #f5f0f3;
    position: relative;
    padding: 48px 24px;
    text-align: center;
}

.entr .t1_noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.entr .t1_frame .pg_wrap {
    position: relative;
    z-index: 1;
}

.entr .t1_img_wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 24px;
}

.entr .t1_img {
    width: 120px;
    height: 120px;
    border-radius: 48px;
    object-fit: cover;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05), 0 6px 25px 0 rgba(186, 45, 148, 0.08), 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    filter: brightness(1.08) saturate(0.9);
}

.entr .t1_glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 48px;
    background: radial-gradient(circle at 40% 30%, rgba(186, 45, 148, 0.18), transparent 70%);
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.entr .t1_img_rel {
    position: relative;
    display: inline-block;
}

.entr .t1_accent_line {
    width: 36px;
    height: 3px;
    background: linear-gradient(to left, #BA2D94, transparent);
    border-radius: 8px;
    margin: 0 auto 12px auto;
}

.entr .t1_h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0 0 24px 0;
    letter-spacing: normal;
}

.entr .t1_h1 span {
    background: linear-gradient(to left, #C37580, #BA2D94);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entr .t1_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #4a2a3e;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.entr .diff_frame {
    background: #fff;
    padding: 48px 24px;
}

.entr .diff_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1170px;
    margin: 0 auto;
}

.entr .diff_col_left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.entr .diff_accent {
    width: 36px;
    height: 3px;
    background: linear-gradient(to left, #BA2D94, transparent);
    border-radius: 8px;
    margin-bottom: 12px;
}

.entr .diff_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0 0 12px 0;
    text-align: center;
}

.entr .diff_body {
    font-size: 16px;
    line-height: 1.6;
    color: #3d2233;
    margin: 0;
}

.entr .diff_cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entr .diff_card {
    background: #fdf7fb;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    transition: box-shadow 0.18s ease-out;
}

.entr .diff_card:hover {
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
}

.entr .diff_card_icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(to left, #C37580, #BA2D94);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.entr .diff_card_icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.entr .diff_card_h {
    font-size: 16px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.entr .diff_card_p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a3a4e;
    margin: 0;
}

.entr .diff_img_wrap {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
}

.entr .diff_img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease-out;
}

.entr .diff_img_wrap:hover .diff_img {
    transform: scale(1.04);
}

.entr .prob_frame {
    background: linear-gradient(to left, #E2D5D2, #f5f0f3);
    padding: 48px 24px;
}

.entr .prob_inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.entr .prob_img_col {
    position: relative;
}

.entr .prob_img_wrap {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 6px 25px 0 rgba(195, 117, 128, 0.08);
}

.entr .prob_img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: grayscale(60%);
    transition: filter 0.2s ease-out, transform 0.22s ease-out;
}

.entr .prob_img_wrap:hover .prob_img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.entr .prob_tint {
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background: linear-gradient(to left, rgba(186, 45, 148, 0.12), transparent);
    pointer-events: none;
}

.entr .prob_text_col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entr .prob_accent {
    width: 36px;
    height: 3px;
    background: linear-gradient(to left, #BA2D94, transparent);
    border-radius: 8px;
}

.entr .prob_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0;
    text-align: center;
}

.entr .prob_p {
    font-size: 16px;
    line-height: 1.6;
    color: #3d2233;
    margin: 0;
}

.entr .prob_tag {
    display: inline-block;
    background: rgba(186, 45, 148, 0.1);
    color: #BA2D94;
    border-radius: 36px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    align-self: flex-start;
}

.entr .ready_frame {
    background: #fff;
    padding: 48px 24px;
}

.entr .ready_inner {
    max-width: 1170px;
    margin: 0 auto;
}

.entr .ready_top {
    text-align: center;
    margin-bottom: 48px;
}

.entr .ready_accent {
    width: 36px;
    height: 3px;
    background: linear-gradient(to left, #BA2D94, transparent);
    border-radius: 8px;
    margin: 0 auto 12px auto;
}

.entr .ready_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0 0 12px 0;
}

.entr .ready_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3a4e;
    max-width: 540px;
    margin: 0 auto;
    text-align: left;
}

.entr .ready_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.entr .ready_item {
    background: #fdf7fb;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.15s ease-out;
}

.entr .ready_item:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
}

.entr .ready_num {
    font-size: 36px;
    line-height: 1.2;
    color: #E2D5D2;
    font-weight: 700;
}

.entr .ready_item_h {
    font-size: 16px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0;
    font-weight: 600;
}

.entr .ready_item_p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a3a4e;
    margin: 0;
}

.entr .scope_frame {
    background: #1b0d17;
    padding: 48px 24px;
    position: relative;
}

.entr .scope_frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to left, #C37580, #BA2D94);
}

.entr .scope_inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}

.entr .scope_accent {
    width: 36px;
    height: 3px;
    background: linear-gradient(to left, #BA2D94, rgba(186, 45, 148, 0));
    border-radius: 8px;
    margin-bottom: 12px;
}

.entr .scope_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #E2D5D2;
    margin: 0 0 12px 0;
    text-align: center;
}

.entr .scope_p {
    font-size: 16px;
    line-height: 1.6;
    color: #c4a8b8;
    margin: 0;
}

.entr .scope_img_wrap {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    position: relative;
}

.entr .scope_img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: grayscale(80%);
    transition: filter 0.2s ease-out, transform 0.22s ease-out;
}

.entr .scope_img_wrap:hover .scope_img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.entr .scope_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(186, 45, 148, 0.2), transparent);
    pointer-events: none;
}

.entr .scope_limits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.entr .scope_limit_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.18s ease-out;
}

.entr .scope_limit_item:hover {
    background: rgba(186, 45, 148, 0.1);
}

.entr .scope_dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #C37580;
    flex-shrink: 0;
    margin-top: 6px;
}

.entr .scope_limit_text {
    font-size: 14px;
    line-height: 1.6;
    color: #c4a8b8;
    margin: 0;
}

.entr .outcome_frame {
    background: linear-gradient(to left, #E2D5D2, #fff);
    padding: 48px 24px;
}

.entr .outcome_inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.entr .outcome_text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entr .outcome_accent {
    width: 36px;
    height: 3px;
    background: linear-gradient(to left, #BA2D94, transparent);
    border-radius: 8px;
}

.entr .outcome_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0;
    text-align: center;
}

.entr .outcome_p {
    font-size: 16px;
    line-height: 1.6;
    color: #3d2233;
    margin: 0;
}

.entr .outcome_steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.entr .outcome_step {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    transition: box-shadow 0.15s ease-out, transform 0.18s cubic-bezier(0.4, 0, 0.6, 1);
}

.entr .outcome_step:hover {
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    transform: translateY(-2px);
}

.entr .outcome_step_icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(to left, #C37580, #BA2D94);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.entr .outcome_step_icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.entr .outcome_step_body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.entr .outcome_step_h {
    font-size: 16px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0;
    font-weight: 600;
}

.entr .outcome_step_p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a3a4e;
    margin: 0;
}

.entr .team_frame {
    background: #fff;
    padding: 48px 24px;
    position: relative;
}

.entr .team_frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to left, #C37580, transparent);
}

.entr .team_inner {
    max-width: 1170px;
    margin: 0 auto;
}

.entr .team_top {
    text-align: center;
    margin-bottom: 48px;
}

.entr .team_accent {
    width: 36px;
    height: 3px;
    background: linear-gradient(to left, #BA2D94, transparent);
    border-radius: 8px;
    margin: 0 auto 12px auto;
}

.entr .team_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0 0 12px 0;
}

.entr .team_intro {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3a4e;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

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

.entr .team_card {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05);
    background: #fdf7fb;
    transition: box-shadow 0.18s ease-out;
    position: relative;
}

.entr .team_card:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
}

.entr .team_card_img_wrap {
    overflow: hidden;
    position: relative;
}

.entr .team_card_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: grayscale(50%);
    transition: filter 0.2s ease-out, transform 0.22s ease-out;
}

.entr .team_card:hover .team_card_img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.entr .team_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(186, 45, 148, 0.15), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease-out;
}

.entr .team_card:hover .team_card_overlay {
    opacity: 1;
}

.entr .team_card_body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.entr .team_card_name {
    font-size: 16px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0;
    font-weight: 600;
}

.entr .team_card_role {
    font-size: 14px;
    line-height: 1.2;
    color: #BA2D94;
    margin: 0;
}

.entr .team_card_bio {
    font-size: 14px;
    line-height: 1.6;
    color: #5a3a4e;
    margin: 0;
}

.entr .team_reseller_note {
    margin-top: 48px;
    background: linear-gradient(to left, rgba(195, 117, 128, 0.1), rgba(186, 45, 148, 0.06));
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.entr .team_reseller_icon {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: linear-gradient(to left, #C37580, #BA2D94);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.entr .team_reseller_icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.entr .team_reseller_text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.entr .team_reseller_h {
    font-size: 16px;
    line-height: 1.2;
    color: #1b0d17;
    margin: 0;
    font-weight: 600;
}

.entr .team_reseller_p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a3a4e;
    margin: 0;
}

.entr .team_reseller_link {
    color: #BA2D94;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.entr .team_reseller_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BA2D94;
    border-radius: 8px;
    transition: width 0.2s ease-out;
}

.entr .team_reseller_link:hover::after {
    width: 100%;
}

@keyframes flip_in {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }

    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

.entr .t1_img_rel {
    animation: flip_in 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

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

    .entr .diff_img_wrap {
        order: -1;
    }

    .entr .prob_inner {
        grid-template-columns: 1fr;
    }

    .entr .ready_list {
        grid-template-columns: 1fr 1fr;
    }

    .entr .scope_inner {
        grid-template-columns: 1fr;
    }

    .entr .outcome_inner {
        grid-template-columns: 1fr;
    }

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

    .entr .t1_h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .entr .ready_list {
        grid-template-columns: 1fr;
    }

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

    .entr .team_reseller_note {
        flex-direction: column;
        align-items: flex-start;
    }

    .entr .t1_h1 {
        font-size: 36px;
    }
}

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

.success_page .success_wrap {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.success_page .success_icon_ring {
    width: 88px;
    height: 88px;
    border-radius: 48px;
    background: linear-gradient(to left, #C37580, #BA2D94);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08), 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    flex-shrink: 0;
}

.success_page .success_icon_ring svg {
    display: block;
}

.success_page .success_card {
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 1px 5px 0 rgba(186, 45, 148, 0.05), 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    padding: 48px;
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.success_page .success_card .accent_line {
    width: 36px;
    height: 3px;
    border-radius: 8px;
    background: linear-gradient(to left, #C37580, #BA2D94);
}

.success_page .success_card .success_heading {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0;
    font-weight: 700;
}

.success_page .success_card .success_body {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
    max-width: 420px;
}

.success_page .success_card .success_note {
    font-size: 14px;
    line-height: 1.6;
    color: #5c5c5c;
    margin: 0;
    border-top: 1px solid #E2D5D2;
    padding-top: 24px;
    width: 100%;
    text-align: left;
}

.success_page .success_card .success_note strong {
    color: #BA2D94;
    font-weight: 600;
}

.success_page .success_actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.success_page .success_actions .btn_primary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(to left, #C37580, #BA2D94);
    border-radius: 36px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 6px 25px 0 rgba(186, 45, 148, 0.08);
    transition: box-shadow 0.18s ease-out, transform 0.15s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    overflow: hidden;
}

.success_page .success_actions .btn_primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    border: 2px solid rgba(186, 45, 148, 0.5);
    opacity: 0;
    transition: opacity 0.18s ease-out;
}

.success_page .success_actions .btn_primary:hover {
    box-shadow: 0 9px 44px 0 rgba(186, 45, 148, 0.12);
    transform: translateY(-2px);
}

.success_page .success_actions .btn_primary:hover::after {
    opacity: 1;
}

.success_page .success_actions .btn_primary:focus {
    outline: 3px solid #BA2D94;
    outline-offset: 3px;
}

.success_page .success_actions .btn_secondary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.2;
    color: #BA2D94;
    background: #fff;
    border-radius: 36px;
    text-decoration: none;
    border: 2px solid #BA2D94;
    transition: background 0.18s ease-out, color 0.15s cubic-bezier(0.4, 0, 0.6, 1);
}

.success_page .success_actions .btn_secondary:hover {
    background: #BA2D94;
    color: #fff;
}

.success_page .success_actions .btn_secondary:focus {
    outline: 3px solid #BA2D94;
    outline-offset: 3px;
}

.success_page .meta_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #5c5c5c;
}

.success_page .meta_row .meta_dot {
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #C37580;
    flex-shrink: 0;
}

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

    .success_page .success_heading {
        font-size: 36px;
    }

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

    .success_page .success_actions .btn_primary,
    .success_page .success_actions .btn_secondary {
        text-align: center;
    }
}