@charset "UTF-8";

/* Additional styles for AJAX functionality */
.tp-loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #666;
}

@media (max-width: 767px) {
    .tp-loading {
        font-size: 12px;
        line-height: 16px;
    }
}

.tp-error {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #d32f2f;
    background-color: #ffebee;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .tp-error {
        font-size: 12px;
        line-height: 16px;
    }
}

.tp-no-partners {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #666;
    background-color: #f5f5f5;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .tp-no-partners {
        font-size: 12px;
        line-height: 16px;
    }
}

.tp-pagination-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tp-page {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
}

.tp-page:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.tp-page.tp-current {
    background-color: #ed66b2;
    color: white;
    border-color: #ed66b2;
}

.tp-nav {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    background: white;
    transition: all 0.3s ease;
}

.tp-nav:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

.tp-filter {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp-filter:hover {
    opacity: 0.8;
}

.loyalty-container {
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .loyalty-container {
        max-width: 1024px;
    }
}

@media (max-width: 767px) {
    .loyalty-container {
        max-width: 767px;
    }
}

.loyalty-footer,
.loyalty-hero-section,
.loyalty-footer-bar {
    width: 100%;
    margin: 0 auto;
}

.loyalty-footer-main {
    padding-top: 32px;
    padding-bottom: 32px;
}

.loyalty-footer-main-inner {
    display: grid;
    grid-template-columns: 354px 1fr;
    gap: 80px;
}

.loyalty-brand {
    max-width: 100%;
}

.loyalty-brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 28px;
}

.loyalty-brand-logo .loyalty-flower {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1c3da;
    display: inline-block;
}

.loyalty-brand-title {
    color: #c3518b;
}

.loyalty-brand-desc {
    color: #616161;
    margin: 8px 0 24px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 767px) {
    .loyalty-brand-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

.loyalty-link-groups {
    display: flex;
    justify-content: space-between;
}

.loyalty-group-title {
    margin: 0 0 16px;
    color: var(#303030);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 767px) {
    .loyalty-group-title {
        font-size: 14px;
        line-height: 24px;
    }
}

.loyalty-group-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.loyalty-group-list li+li {
    margin: 18px 0 0 0;
    padding: 0;
}

.loyalty-group-list a {
    color: #616161;
    transition: color 0.15s;
}

.loyalty-group-list a:hover {
    color: var(#ed66b2);
    text-decoration: none;
}

.loyalty-muted {
    color: #616161;
}

.loyalty-hero-section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    color: var(#ed66b2);
    background: var(--Surface-dark-theme, #111723);
    overflow: hidden;
}

.loyalty-hero-section::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    width: 1100px;
    height: 1100px;
    border-radius: 100vmax;
    opacity: 0.3;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    filter: blur(150px);
    transform: translateX(-50%);
    pointer-events: none;
}

.loyalty-hero-section:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            transparent 60%,
            rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.loyalty-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loyalty-hero-title {
    color: #fff;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.24px;
    margin: 0 0 16px 0;
}

@media (max-width: 767px) {
    .loyalty-hero-title {
        font-size: 28px;
        line-height: 36px;
    }
}

.loyalty-hero-desc {
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .loyalty-hero-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

.loyalty-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.loyalty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 40px;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    background: rgba(255, 255, 255, 0);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    .loyalty-btn {
        font-size: 14px;
        line-height: 24px;
    }
}

.loyalty-btn:hover {
    text-decoration: none;
}

.loyalty-btn-primary {
    background: #fff;
    color: #cc4b9a;
}

.loyalty-btn-primary:hover {
    color: #cc4b9a;
}

.loyalty-btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}

.loyalty-btn-secondary:hover {
    color: #fff;
}

.loyalty-footer-bar {
    position: relative;
    background: var(--Surface-dark-theme, #111723);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.loyalty-footer-bar::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 50%;
    width: 1100px;
    height: 1100px;
    border-radius: 100vmax;
    opacity: 0.3;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    filter: blur(150px);
    transform: translateX(-50%);
    pointer-events: none;
}

.loyalty-footer-bar-inner {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loyalty-copyright {
    position: relative;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .loyalty-copyright {
        font-size: 12px;
        line-height: 16px;
    }
}

.loyalty-social {
    position: relative;
    display: flex;
    gap: 24px;
    align-items: center;
}

.loyalty-social-link {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.loyalty-social-link.yt svg {
    fill: #fff;
}

/* Effortless Tabs Widget Styles */
.effortless-tabs-wrapper {
    width: 100%;
    font-family: inherit;
}

.effortless-tabs-wrapper.effortless-tabs-top {
    display: flex;
    flex-direction: column;
}

.effortless-tabs-wrapper.effortless-tabs-left {
    display: flex;
    flex-direction: row;
}

.effortless-tabs-wrapper.effortless-tabs-right {
    display: flex;
    flex-direction: row-reverse;
}

.effortless-tabs-nav {
    display: flex;
    gap: 8px;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 4px;
}

.effortless-tabs-wrapper.effortless-tabs-top .effortless-tabs-nav {
    flex-direction: row;
    margin-bottom: 20px;
}

.effortless-tabs-wrapper.effortless-tabs-left .effortless-tabs-nav,
.effortless-tabs-wrapper.effortless-tabs-right .effortless-tabs-nav {
    flex-direction: column;
    min-width: 200px;
    margin: 0 20px 0 0;
}

.effortless-tabs-wrapper.effortless-tabs-right .effortless-tabs-nav {
    margin: 0 0 0 20px;
}

.effortless-tab-item {
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 4px;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    color: #666;
    font-weight: 500;
    border: 1px solid transparent;
    min-height: 44px;
    justify-content: flex-start;
}

.effortless-tab-item:hover {
    background-color: #e9ecef;
    color: #495057;
}

.effortless-tab-item.active {
    background-color: #fff;
    color: #007cba;
    border-color: #dee2e6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.effortless-tabs-content {
    flex: 1;
    position: relative;
}

.effortless-tab-content {
    display: none;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    padding: 24px;
    min-height: 200px;
}

.effortless-tab-content.active {
    display: block;
}

.effortless-tabs-wrapper[data-animation="fade"] .effortless-tab-content.active {
    animation-name: effortlessFadeIn;
}

.effortless-tabs-wrapper[data-animation="slide"] .effortless-tab-content.active {
    animation-name: effortlessSlideIn;
}

@keyframes effortlessFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes effortlessSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.effortless-tab-item .tab-icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

@media (max-width: 767px) {
    .effortless-tab-item .tab-icon {
        font-size: 12px;
        line-height: 16px;
    }
}

.effortless-tab-item .tab-title {
    font-weight: inherit;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 767px) {

    .effortless-tabs-wrapper.effortless-tabs-left,
    .effortless-tabs-wrapper.effortless-tabs-right {
        flex-direction: column;
    }

    .effortless-tabs-wrapper.effortless-tabs-left .effortless-tabs-nav,
    .effortless-tabs-wrapper.effortless-tabs-right .effortless-tabs-nav {
        flex-direction: row;
        min-width: auto;
        margin: 0 0 20px 0;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .effortless-tabs-wrapper.effortless-tabs-left .effortless-tabs-nav::-webkit-scrollbar,
    .effortless-tabs-wrapper.effortless-tabs-right .effortless-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .effortless-tab-item {
        white-space: nowrap;
        min-width: -moz-max-content;
        min-width: max-content;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .effortless-tabs-nav {
        gap: 4px;
        padding: 2px;
    }

    .effortless-tab-item {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) and (max-width: 767px) {
    .effortless-tab-item {
        font-size: 11px;
        line-height: 16px;
    }
}

@media (max-width: 480px) {
    .effortless-tab-content {
        padding: 16px;
    }
}

:root {
    --ink: #111827;
    --muted: #6b7280;
    --stroke: #e5e7eb;
}

.etabs-header {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

/* Eyebrow */
.etabs-eyebrow {
    display: inline-flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #2e2c39;
    color: #e2e2e2;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

@media (max-width: 767px) {
    .etabs-eyebrow {
        font-size: 11px;
        line-height: 16px;
    }
}

.etabs-eyebrow svg {
    width: 20px;
    height: 20px;
}

/* Heading */
.etabs-headline {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .etabs-headline {
        font-size: 20px;
        line-height: 28px;
    }
}

.etabs-subhead {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .etabs-subhead {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Tabs */
.etabs-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.etabs-tab {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Text-primary, #303030);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    border-radius: 12px;
    border: 1px solid var(--Border-primary, #f4f4f4);
    opacity: 0.7;
    background: var(--Surface-primary, #fff);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .etabs-tab {
        font-size: 11px;
        line-height: 16px;
    }
}

.etabs-tab.is-active {
    border-color: var(#f36ab3);
    color: #222;
    border: 2px solid var(--Branding-Branding, #ed66b2);
    background: #fff;
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
    opacity: 1;
}

.etabs-image img {
    filter: drop-shadow(5px 5px 15px rgba(237, 102, 178, 0.1882352941));
}

/* Content */
.etabs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.etabs-left {
    max-width: 520px;
}

.etabs-left h2 {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .etabs-left h2 {
        font-size: 20px;
        line-height: 28px;
    }
}

.etabs-left .etabs-lead {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .etabs-left .etabs-lead {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Features list */
.etabs-features {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}

.etabs-features li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 767px) {
    .etabs-features li {
        font-size: 14px;
        line-height: 24px;
    }
}

.etabs-tick {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Learn link */
.etabs-learn {
    display: flex;
    align-items: center;
    color: #ed66b2;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    gap: 10px;
    height: 40px;
}

@media (max-width: 767px) {
    .etabs-learn {
        font-size: 14px;
        line-height: 24px;
    }
}

.etabs-learn:hover {
    text-decoration: underline;
}

/* Mockup Table */
.etabs-mock {
    position: relative;
}

.etabs-table-card {
    width: 100%;
    max-width: 520px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.etabs-t-head,
.etabs-t-row {
    display: grid;
    grid-template-columns: 1fr 90px;
    align-items: center;
}

.etabs-t-head {
    background: #fafafa;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    color: #555;
}

@media (max-width: 767px) {
    .etabs-t-head {
        font-size: 11px;
        line-height: 16px;
    }
}

.etabs-t-row {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f4;
    font-size: 15px;
}

.etabs-cell-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.etabs-ico {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #f9f9fb;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(#f36ab3);
}

/* Booster */
.etabs-booster {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 300px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(236, 92, 169, 0.15);
}

.etabs-booster .etabs-hd {
    background: #fafafa;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.etabs-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-top: 1px solid #f4f4f7;
    font-size: 13px;
}

.etabs-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #26cf8e;
    background: #26cf8e;
}

.etabs-dot.hollow {
    border-color: #ec5ca9;
    background: #fff;
}

.etabs-dot.empty {
    border-color: #ccc;
    background: #fff;
}

.etabs-pill {
    font-size: 12px;
    padding: 2px 6px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fafafa;
    color: #555;
}

/* Revenue chip */
.etabs-revenue {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 200px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 12px;
}

.etabs-lbl {
    font-size: 12px;
    color: #666;
}

.etabs-val {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
}

@media (max-width: 767px) {
    .etabs-val {
        font-size: 16px;
        line-height: 24px;
    }
}

.etabs-spark {
    width: 60px;
    height: 36px;
    background: #eaf7f2;
    border-radius: 4px;
    margin-left: auto;
    display: inline-block;
}

.loyalty-custom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.loyalty-custom-mock {
    position: relative;
}

.loyalty-custom-copy {
    max-width: 640px;
}

.loyalty-custom-eyebrow {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 767px) {
    .loyalty-custom-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.loyalty-custom-headline {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .loyalty-custom-headline {
        font-size: 20px;
        line-height: 28px;
    }
}

.loyalty-custom-lead {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .loyalty-custom-lead {
        font-size: 14px;
        line-height: 24px;
    }
}

.loyalty-custom-feature {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    color: var(--Text-primary, #303030);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 12px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .loyalty-custom-feature {
        font-size: 14px;
        line-height: 24px;
    }
}

.loyalty-custom-feature:hover {
    opacity: 1;
    background: #f9f9fb;
}

.loyalty-custom-feature+.loyalty-custom-feature {
    margin-top: 24px;
}

.loyalty-custom-feature-active {
    background: #f6f6f8;
    opacity: 1;
}

.loyalty-custom-feature-title {
    color: var(--Text-primary, #303030);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 767px) {
    .loyalty-custom-feature-title {
        font-size: 14px;
        line-height: 24px;
    }
}

.loyalty-custom-feature-desc {
    display: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--Text-primary, #303030);
}

@media (max-width: 767px) {
    .loyalty-custom-feature-desc {
        font-size: 11px;
        line-height: 16px;
    }
}

.loyalty-custom-mock-tab-image {
    width: 100%;
}

.loyalty-custom-mock-tab-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hb-hero__inner {
    text-align: center;
}

/* badges */
.hb-badges {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.hb-pill {
    display: flex;
    padding: 5.143px 15.429px;
    justify-content: center;
    align-items: center;
    gap: 5.143px;
    border-radius: 7.714px;
    border: 1.286px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    border-right: 0;
    background: #2e2c39;
    color: #e2e2e2;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.714px;
    /* 142.857% */
}

@media (max-width: 767px) {
    .hb-pill {
        font-size: 14px;
        line-height: 1.5;
    }
}

.hb-pill--dark {
    display: flex;
    padding: 5.143px 15.429px;
    justify-content: center;
    align-items: center;
    gap: 5.143px;
    border-radius: 7.714px;
    border: 1.286px solid #FFFFFF1A;
    border-left: 0;
    border-right: 0;
    background: #2e2c39;
}

.hb-star {
    color: #ffd24d;
    margin-right: 4px;
}

.hb-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ec5aa9;
    display: inline-block;
}

.hb-muted {
    opacity: 0.8;
    font-weight: 600;
}

/* heading */
.hb-hero__title {
    color: #fff;
    text-align: center;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: 80px;
    /* 111.111% */
    letter-spacing: -0.36px;
    margin-bottom: 16px;
    margin-top: 0px;
}

@media (max-width: 767px) {
    .hb-hero__title {
        font-size: 40px;
        line-height: 48px;
    }
}

.hb-hero__sub {
    color: #b8b8b8;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 40px;
    /* 27px */
}

@media (max-width: 767px) {
    .hb-hero__sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* buttons */
.hb-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 250px;
}

.hb-btn {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #ed66b2;
    background: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
}

@media (max-width: 767px) {
    .hb-btn {
        font-size: 14px;
        line-height: 24px;
    }
}

.hb-btn-primary {
    background: #fff;
    color: #cc4b9a;
}

.hb-btn-primary span {
    /* 22.5px */
    background: linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hb-btn-ghost {
    border-radius: 8px;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
}

@media (max-width: 767px) {
    .hb-btn-ghost {
        font-size: 14px;
        line-height: 24px;
    }
}

.hb-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.32);
}

/* trusted logos */
.hb-trusted {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.hb-trusted__copy {
    color: #b8b8b8;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    white-space: nowrap;
    /* 27px */
}

@media (max-width: 767px) {
    .hb-trusted__copy {
        font-size: 14px;
        line-height: 24px;
    }
}

.hb-trusted__copy strong {
    color: #fff;
    font-weight: 700;
}

.hb-trusted__logos {
    flex: 1 0 0;
    display: flex;
    overflow: hidden;
    pointer-events: none;
}

.hb-trusted__slider {
    width: 100%;
}

.hb-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 91px !important;
    margin-right: 91px;
}

.hb-logo img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
}

/* big bottom glow */
.hb-hero__glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -200px;
    height: 460px;
    background: radial-gradient(closest-side at 50% 0%,
            rgba(236, 90, 169, 0.55),
            transparent 70%),
        radial-gradient(closest-side at 50% 0%,
            rgba(112, 66, 255, 0.35),
            transparent 65%);
    filter: blur(14px);
    pointer-events: none;
}

.integration-section {
    text-align: center;
}

/* Typography */
.integration-eyebrow {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

@media (max-width: 767px) {
    .integration-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.integration-title-xl {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .integration-title-xl {
        font-size: 20px;
        line-height: 28px;
    }
}

.integration-subtitle {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .integration-subtitle {
        font-size: 14px;
        line-height: 24px;
    }
}

.integration-muted {
    color: #6b7280;
}

.integration-logo {
    display: inline-flex !important;
    align-items: center;
}

.integration-logo img {
    max-width: 100px;
    max-height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
    margin-left: 24px;
    margin-right: 24px;
}

.integration-logo::after {
    content: "";
    display: block;
    width: 164px;
    border-top: 2px dashed #e7e7e7;
}

.integration-logo img:hover {
    transform: scale(1.08);
}

.integration-logo-slider .slick-slide div+div {
    transform: translateX(50%);
    margin-top: 120px;
}

.security-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.security-center {
    text-align: center;
}

.bonloyalty-headline {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .bonloyalty-headline {
        font-size: 20px;
        line-height: 28px;
    }
}

.bonloyalty-subhead {
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
    text-align: center;
}

@media (max-width: 767px) {
    .bonloyalty-subhead {
        font-size: 14px;
        line-height: 24px;
    }
}

.security-muted {
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .security-muted {
        font-size: 14px;
        line-height: 24px;
    }
}

.security-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 14px;
    margin-top: 64px;
}

.security-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    border-right: 0;
    background: #2e2c39;
    text-align: left;
    overflow: hidden;
}

.security-content {
    padding: 24px 16px 32px;
}

.security-images {
    position: relative;
    width: 100%;
}

.security-images::before {
    content: "";
    display: block;
    padding-top: 94.9074074074%;
}

.security-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.security-title-sm {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .security-title-sm {
        font-size: 16px;
        line-height: 24px;
    }
}

.security-decoration {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -240px;
    height: 520px;
    background: radial-gradient(closest-side at 50% 0%,
            rgba(236, 90, 169, 0.8),
            transparent 70%),
        radial-gradient(closest-side at 50% 0%,
            rgba(255, 161, 211, 0.45),
            transparent 60%);
    filter: blur(14px);
    pointer-events: none;
}

@media (max-width: 767px) {
    .security-cards {
        grid-template-columns: 1fr;
    }
}

.stat-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    padding: 0 20px;
    flex: 1;
    min-width: 200px;
}

.stat-value {
    color: #fff;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.24px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .stat-value {
        font-size: 28px;
        line-height: 36px;
    }
}

.stat-label {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

@media (max-width: 767px) {
    .stat-label {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .stat-grid {
        flex-direction: column;
        text-align: center;
    }

    .stat-item {
        text-align: center;
        min-width: auto;
        width: 100%;
    }

    .stat-value {
        font-size: 36px;
        line-height: 44px;
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 767px) and (max-width: 767px) {
    .stat-label {
        font-size: 12px;
        line-height: 16px;
    }
}

.testimonial-wrap {
    padding: 80px 0;
    background: #fff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-eyebrow {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    gap: 4px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .testimonial-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.testimonial-heading {
    color: var(--bonloyalty-com-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    letter-spacing: 0.2px;
    max-width: 546px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .testimonial-heading {
        font-size: 20px;
        line-height: 28px;
    }
}

.testimonial-subhead {
    color: var(--bonloyalty-com-secondary, #616161);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.16px;
    max-width: 546px;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .testimonial-subhead {
        font-size: 12px;
        line-height: 16px;
    }
}

.testimonial-cards {
    overflow: visible;
}

.testimonial-cards .slick-list {
    overflow: visible;
}

.testimonial-cards .slick-track {
    display: flex !important;
}

.testimonial-card {
    width: 410px;
    min-height: 500px;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    border: 1.5px solid var(--Border-primary, #f4f4f4);
    background: var(--Surface-primary, #fff);
    gap: 12px;
    margin-right: 24px;
    box-sizing: border-box;
}

.testimonial-logo {
    width: 100%;
    height: 64px;
    text-align: left;
}

.testimonial-logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    margin-left: 0;
}

.testimonial-value {
    color: var(--Text-primary, #303030);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.24px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .testimonial-value {
        font-size: 28px;
        line-height: 36px;
    }
}

.testimonial-title {
    color: var(--Text-primary, #303030);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .testimonial-title {
        font-size: 18px;
        line-height: 28px;
    }
}

.testimonial-desc {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

@media (max-width: 767px) {
    .testimonial-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

.testimonial-read {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: auto;
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.1px;
}

@media (max-width: 767px) {
    .testimonial-read {
        font-size: 16px;
        line-height: 24px;
    }
}

.testimonial-read span {
    opacity: 0.65;
    transition: transform 0.15s ease;
}

.testimonial-read:hover span {
    transform: translateX(4px);
}

/* Hide default slick arrows and dots */
.testimonial-cards .slick-dots,
.testimonial-cards .slick-arrow {
    display: none !important;
}

@media (max-width: 767px) {
    .testimonial-card {
        width: 350px;
        min-height: 450px;
    }

    .testimonial-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .testimonial-value {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        width: 300px;
        min-height: 400px;
    }
}

/* Header */
.bonloyalty-eyebrow {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .bonloyalty-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.bonloyalty-headline {
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    text-align: center;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .bonloyalty-headline {
        font-size: 20px;
        line-height: 28px;
    }
}

.bonloyalty-subhead {
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
    text-align: center;
}

@media (max-width: 767px) {
    .bonloyalty-subhead {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Grid */
.bonloyalty-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.bonloyalty-card {
    grid-column: span 2;
    display: flex;
    padding-bottom: 24px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: var(--card-radius-figma-only, 12px);
    border: 1px solid;
    border-left: 0;
    border-right: 0;
    background: #2e2c39;
    gap: 40px;
    overflow: hidden;
}

.bonloyalty-card h3 {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .bonloyalty-card h3 {
        font-size: 16px;
        line-height: 24px;
    }
}

.bonloyalty-card p {
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    align-self: stretch;
    margin: 0;
}

@media (max-width: 767px) {
    .bonloyalty-card p {
        font-size: 14px;
        line-height: 24px;
    }
}

.bonloyalty-card-content {
    padding: 0 24px;
}

/* Large cards top */
.bonloyalty-card-large {
    grid-column: span 3;
}

/* Mock placeholders */
.bonloyalty-mock-img {
    position: relative;
    width: 100%;
}

.bonloyalty-mock-img::before {
    content: "";
    display: block;
    padding-top: 84.0579710145%;
}

.bonloyalty-card-large .bonloyalty-mock-img::before {
    content: "";
    display: block;
    padding-top: 59.7133757962%;
}

.bonloyalty-mock-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}

.bonloyalty-card-large .bonloyalty-mock-img img {
    -o-object-position: top;
    object-position: top;
}

@media (max-width: 767px) {
    .bonloyalty-grid {
        grid-template-columns: 1fr;
    }

    .bonloyalty-card,
    .bonloyalty-card-large {
        grid-column: span 1;
    }
}

/* frames */
.patner-hero__center {
    text-align: center;
}

/* header */
.patner-hero__eyebrow {
    font-size: 13px;
    font-weight: 800;
    color: #f2b2d7;
    margin-bottom: 10px;
}

.patner-hero__heading {
    color: var(--Text-primary, #303030);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .patner-hero__heading {
        font-size: 28px;
        line-height: 36px;
    }
}

.patner-hero__heading-accent {
    color: #ec5aa9;
}

.patner-hero__lead {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    margin: 8px auto 40px;
}

@media (max-width: 767px) {
    .patner-hero__lead {
        font-size: 14px;
        line-height: 24px;
    }
}

.patner-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 64px;
}

.patner-hero__btn {
    display: flex;
    height: 40px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .patner-hero__btn {
        font-size: 14px;
        line-height: 24px;
    }
}

.patner-hero__btn--primary {
    color: #fff;
}

.patner-hero__btn--primary:hover {
    background: linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%);
    box-shadow: 0 4px 14px rgba(236, 90, 169, 0.39);
    color: #fff;
}

.patner-hero__btn--ghost {
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    background: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .patner-hero__btn--ghost {
        font-size: 14px;
        line-height: 24px;
    }
}

.patner-hero__btn--ghost:hover {
    box-shadow: 0 4px 14px rgba(236, 90, 169, 0.39);
}

/* orbit canvas */
.patner-hero__orbit {
    position: relative;
    width: 100%;
    max-height: 520px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.patner-hero__orbit img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
}

/* rings */
.patner-hero__ring {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    border: 1px solid #2c3344;
    border-radius: 9999px;
}

.patner-hero__ring--1 {
    width: 520px;
    height: 520px;
}

.patner-hero__ring--2 {
    width: 760px;
    height: 760px;
}

.patner-hero__ring--3 {
    width: 1040px;
    height: 1040px;
    opacity: 0.6;
}

/* center nucleus */
.patner-hero__nucleus {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 40%, #ff89c8, #a46bff);
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    box-shadow: 0 30px 80px rgba(236, 90, 169, 0.45),
        inset 0 0 18px rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
    .patner-hero__nucleus {
        font-size: 28px;
        line-height: 36px;
    }
}

/* orbiting dots (replace with <img>) */
.patner-hero__orb {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #131a24;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* vị trí từng orb trên các vòng */
.patner-hero__orb--a {
    left: 47%;
    top: 38%;
}

.patner-hero__orb--b {
    left: 63%;
    top: 46%;
}

.patner-hero__orb--c {
    left: 73%;
    top: 60%;
}

.patner-hero__orb--d {
    left: 33%;
    top: 62%;
}

.patner-hero__orb--e {
    left: 41%;
    top: 78%;
}

.patner-hero__orb--f {
    left: 57%;
    top: 78%;
}

.patner-hero__orb--g {
    left: 80%;
    top: 84%;
}

.patner-hero__orb--a,
.patner-hero__orb--e {
    background: #1b2636;
}

.patner-hero__orb--b {
    background: #1c2436;
}

.patner-hero__orb--c {
    background: #1d2634;
}

.patner-hero__orb--d {
    background: #1b2330;
}

.patner-hero__orb--f {
    background: #1a2230;
}

.patner-hero__orb--g {
    background: #1b2230;
}

.ft-heading {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .ft-heading {
        font-size: 20px;
        line-height: 28px;
    }
}

.ft-heading .ft-accent {
    color: #ec5aa9;
}

.ft-subhead {
    color: var(--Text-primary, #303030);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    align-self: stretch;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .ft-subhead {
        font-size: 14px;
        line-height: 24px;
    }
}

/* cards grid */
.ft-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ft-card {
    border-radius: 20px;
    border: 1px solid var(--Border-primary, #f4f4f4);
    background: var(--p-color-bg-surface);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    padding: 24px;
}

/* logo */
.ft-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.ft-logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

/* text blocks */
.ft-title {
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    align-self: stretch;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .ft-title {
        font-size: 16px;
        line-height: 24px;
    }
}

.ft-tag {
    display: flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--Surface-surface-secondary, #f6f8fc);
    color: var(--Text-secondary, #616161);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .ft-tag {
        font-size: 11px;
        line-height: 16px;
    }
}

.ft-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--Tertiary, #919191);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .ft-rating {
        font-size: 11px;
        line-height: 16px;
    }
}

.ft-rating .ft-star {
    color: #ffca46;
    margin-right: 4px;
}

.ft-desc {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .ft-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

.ft-read {
    color: #1f2937;
    font-weight: 800;
    text-decoration: none;
}

.ft-read:hover {
    text-decoration: underline;
}

/* header */
.wp-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 4px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #e45aa6;
    font-weight: 800;
    font-size: 12px;
}

.wp-title {
    color: var(--Text-primary, #303030);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 16px;
    text-align: center;
}

@media (max-width: 767px) {
    .wp-title {
        font-size: 28px;
        line-height: 36px;
    }
}

.wp-title .wp-accent {
    color: #ec5aa9;
}

.wp-sub {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 8px auto 64px;
}

@media (max-width: 767px) {
    .wp-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* grid */
.wp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wp-card {
    display: flex;
    padding: 24px 24px 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 12px;
    background: var(--Surface-primary, #fff);
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
}

.wp-icon {
    display: flex;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 24px;
}

.wp-icon img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.wp-card h3 {
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    text-align: left;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .wp-card h3 {
        font-size: 16px;
        line-height: 24px;
    }
}

.wp-card p {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    text-align: left;
}

@media (max-width: 767px) {
    .wp-card p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* actions */
.wp-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 64px;
}

.wp-btn {
    min-width: 220px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease;
}

.wp-btn--primary {
    background: linear-gradient(180deg, #ff7cc1, #c35bff);
    color: #fff;
}

.wp-btn--ghost {
    background: #fff;
    border-color: #e5d2f7;
    color: #a24ce8;
}

.wp-btn:hover {
    transform: translateY(-1px);
}

/* header */
.tp-title {
    color: var(--Text-primary, #303030);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .tp-title {
        font-size: 28px;
        line-height: 36px;
    }
}

.tp-title .tp-accent {
    color: #ec5aa9;
}

.tp-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .tp-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* filters */
.tp-filters {
    display: flex;
    gap: 40px;
    align-items: center;
    border-bottom: 1px solid #eceff3;
    padding-bottom: 10px;
    margin-bottom: 64px;
}

.tp-filter {
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .tp-filter {
        font-size: 14px;
        line-height: 24px;
    }
}

.tp-filter.tp-active {
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

@media (max-width: 767px) {
    .tp-filter.tp-active {
        font-size: 16px;
        line-height: 24px;
    }
}

.tp-filter.tp-active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    height: 3px;
    background: #ec5aa9;
    border-radius: 2px;
}

/* grid cards */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.tp-card {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(20, 25, 40, 0.05);
    min-height: 230px;
}

.tp-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    background: #e1f0f4;
    color: #0d3c47;
    font-weight: 900;
    border: 1px solid #dbe7ee;
}

.tp-logo.tp-dark {
    background: #1d212a;
    color: #fff;
    border-color: #272b34;
}

.tp-logo.tp-green {
    background: #d6f4cb;
    color: #185d2a;
    border-color: #c7eac0;
}

.tp-card h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 767px) {
    .tp-card h4 {
        font-size: 12px;
        line-height: 16px;
    }
}

.tp-tag {
    display: inline-block;
    font-size: 12px;
    color: #8b91a0;
    background: #f6f7fa;
    border: 1px solid #eceff3;
    border-radius: 8px;
    padding: 3px 8px;
    margin: 0 0 8px;
}

.tp-rate {
    font-size: 12px;
    color: #8b91a0;
    margin-bottom: 10px;
}

.tp-rate .tp-star {
    color: #ffca46;
    margin-right: 4px;
}

.tp-desc {
    margin: 0;
    color: #5a616e;
}

/* pagination */
.tp-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 28px;
}

.tp-page,
.tp-nav {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #f6f6f6;
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    box-sizing: border-box;
}

@media (max-width: 767px) {

    .tp-page,
    .tp-nav {
        font-size: 14px;
        line-height: 24px;
    }
}

.tp-page.tp-current {
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    color: #fff;
}

.tp-nav {
    color: #9aa0aa;
    background-color: rgba(255, 255, 255, 0);
}

/* header */
.ts-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .ts-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.ts-eyebrow span {
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ts-title {
    color: var(--Text-primary, #ffffff);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 8px;
    text-align: center;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .ts-title {
        font-size: 28px;
        line-height: 36px;
    }
}

.ts-title .ts-accent {
    color: #ec5aa9;
}

.ts-sub {
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .ts-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* cards row */
.ts-row .slick-slide {
    margin: 0 3.5vw;
    height: auto !important;
}

.ts-row .slick-slide .ts-card {
    transform: scale(0.85);
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.ts-row .slick-slide.slick-center .ts-card {
    transform: scale(1);
    opacity: 1;
}

.ts-row .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* card */
.ts-card {
    width: 400px;
    background: #ffffff;
    color: #1f2430;
    border: 1px solid #e5e8f0;
    border-radius: 16px;
    padding: 24px 24px 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
    height: 100%;
}

/* hai thẻ bên mờ nhẹ */
.ts-ava {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 100vmax;
    overflow: hidden;
    margin: 40px auto 16px;
}

.ts-ava img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.ts-name {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    margin-bottom: 4px;
}

@media (max-width: 767px) {
    .ts-name {
        font-size: 16px;
        line-height: 24px;
    }
}

.ts-loc {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .ts-loc {
        font-size: 11px;
        line-height: 16px;
    }
}

.ts-quote {
    color: var(--Text-primary, #303030);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    text-align: left;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .ts-quote {
        font-size: 14px;
        line-height: 24px;
    }
}

/* bottom glow (nhẹ hơn) */
.ts-glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -220px;
    height: 460px;
    background: radial-gradient(closest-side at 50% 0%,
            rgba(236, 90, 169, 0.55),
            transparent 70%),
        radial-gradient(closest-side at 50% 0%,
            rgba(112, 66, 255, 0.35),
            transparent 65%);
    filter: blur(16px);
    pointer-events: none;
}

/* layout */
.ifm-grid {
    display: grid;
    grid-template-columns: 1fr 630px;
    /* text | form */
    gap: 64px;
    align-items: center;
}

/* left copy */
.ifm-eyebrow {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}

@media (max-width: 767px) {
    .ifm-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.ifm-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .ifm-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.ifm-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    margin-bottom: 0;
    max-width: 588px;
}

@media (max-width: 767px) {
    .ifm-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* form card */
.ifm-card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-self: stretch;
    border-radius: 12px;
    background: #fff;
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
}

.ifm-card h3 {
    color: var(--Text-primary, #303030);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .ifm-card h3 {
        font-size: 18px;
        line-height: 28px;
    }
}

/* controls */
.ifm-field {
    margin: 12px 0;
}

.ifm-card .ifm-input,
.ifm-card .ifm-select,
.ifm-card .ifm-textarea {
    width: 100% !important;
    border-radius: 8px;
    border: 0.66px solid #616161;
    background: #fafafa;
    display: flex;
    padding: 12px 0 12px 12px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    color: var(--Text-secondary, #616161);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    margin-bottom: 0;
    box-shadow: none;
}

@media (max-width: 767px) {

    .ifm-card .ifm-input,
    .ifm-card .ifm-select,
    .ifm-card .ifm-textarea {
        font-size: 14px;
        line-height: 16px;
        height: 33px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.ifm-card .ifm-input::-moz-placeholder,
.ifm-card .ifm-textarea::-moz-placeholder {
    color: #a1a8b3;
}

.ifm-card .ifm-input::placeholder,
.ifm-card .ifm-textarea::placeholder {
    color: #a1a8b3;
}

.ifm-card .ifm-input:focus,
.ifm-card .ifm-select:focus,
.ifm-card .ifm-textarea:focus {
    border-color: #bdbfe7;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.ifm-card .ifm-textarea {
    height: 110px;
    padding: 10px 12px;
    resize: vertical;
}

/* submit */
.ifm-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ifm-btn {
    margin-top: 28px;
    display: flex;
    height: 40px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
}

@media (max-width: 767px) {
    .ifm-btn {
        font-size: 14px;
        line-height: 24px;
        width: 100%;
        margin-top: 12px;
        height: 48px;

    }
}

.ifm-btn:active {
    transform: translateY(1px);
}

/* header */
.ep-header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ep-pill {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #1f2937;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 12px;
}

.ep-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    text-align: center;
    margin: 0;
}

@media (max-width: 767px) {
    .ep-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.ep-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
    text-align: center;
}

@media (max-width: 767px) {
    .ep-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* 3 rows x 3 cols (text | hex | text) */
.ep-grid {
    display: flex;
    flex-wrap: wrap;
}

/* left / right item */
.ep-item {
    text-align: left;
    width: 50%;
    display: flex;
    align-items: center;
}

.ep-item-content {
    flex: 1;
}

.ep-item:nth-child(2n-1) {
    text-align: right;
}

.ep-item:nth-child(3) {
    transform: translateX(-80px);
}

.ep-item:nth-child(4) {
    transform: translateX(80px);
}

.ep-item h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
}

@media (max-width: 767px) {
    .ep-item h4 {
        font-size: 14px;
        line-height: 24px;
    }
}

.ep-item p {
    margin: 0;
    color: #6b7280;
}

/* hexagon icon */
.ep-hex {
    width: 128px;
    height: 110px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    position: relative;
    /* hexagon shape */
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    background: #fff;
    border: 1px solid #f0d7ea;
    box-shadow: 0 10px 24px rgba(20, 25, 40, 0.06) inset;
}

.ep-hex::after {
    content: "";
    position: absolute;
    inset: 10px;
    clip-path: inherit;
    border: 2px solid #ec5aa9;
    border-radius: 10px;
    /* subtle pink stroke */
}

.ep-ico {
    position: relative;
    z-index: 1;
    font-size: 30px;
    color: #ec5aa9;
}

/* helpers for spacing on mobile (optional) */
@media (max-width: 1024px) {
    .ep-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .ep-item {
        text-align: center;
    }
}

/* header */
.rp-badge {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .rp-badge {
        font-size: 12px;
        line-height: 16px;
    }
}

.rp-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin: 0 0 16px;
}

@media (max-width: 767px) {
    .rp-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.rp-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
    /* 27px */
}

@media (max-width: 767px) {
    .rp-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* grid of cards */
.rp-grid {
    margin-top: 18px;
    display: flex;
    gap: 22px;
}

.rp-card {
    display: flex;
    min-height: 280px;
    padding: 24px 24px 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid var(--Border-primary, #f4f4f4);
    background: var(--Surface-primary, #fff);
}

.rp-ic {
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
}

.rp-ic img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.rp-card h3 {
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    margin-bottom: 12px;
    margin-top: 0;
}

@media (max-width: 767px) {
    .rp-card h3 {
        font-size: 16px;
        line-height: 24px;
    }
}

.rp-card p {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    align-self: stretch;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .rp-card p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* header */
.gm-badge {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .gm-badge {
        font-size: 12px;
        line-height: 16px;
    }
}

.gm-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin: 0 0 16px;
    text-align: right;
}

@media (max-width: 767px) {
    .gm-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.gm-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
    text-align: right;
}

@media (max-width: 767px) {
    .gm-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* layout */
.gm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    text-align: left;
}

/* left illustration (browser-like card) */
.gm-illus img {
    width: 100%;
    height: auto;
    display: block;
}

/* right feature list */
.gm-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.gm-box {
    display: flex;
    padding: 24px 24px 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 12px;
    opacity: 0.5;
    background: var(--Surface-primary, #fff);
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
    flex: 1 0 0;
}

.gm-box--active {
    opacity: 1;
    border-radius: var(--card-radius-figma-only, 0);
    border: 2px solid var(--Branding-Branding, #ed66b2);
    background: #fff;
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
}

.gm-row {
    display: flex;
    flex-flow: column;
    gap: 24px;
}

.gm-ico {
    width: 36px;
    height: 36px;
}

.gm-ico img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.gm-box h4 {
    color: var(--bonloyalty-com-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
    /* 140% */
}

@media (max-width: 767px) {
    .gm-box h4 {
        font-size: 16px;
        line-height: 24px;
    }
}

.gm-box p {
    color: var(--bonloyalty-com-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    align-self: stretch;
    margin: 0;
}

@media (max-width: 767px) {
    .gm-box p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* responsive (optional) */
@media (max-width: 1280px) {
    .gm-grid {
        grid-template-columns: 1fr;
    }

    .gm-sec {
        text-align: center;
    }

    .gm-list .gm-box {
        text-align: left;
    }
}

/* header */
.fp-badge {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .fp-badge {
        font-size: 12px;
        line-height: 16px;
    }
}

.fp-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin: 0 0 16px;
}

@media (max-width: 767px) {
    .fp-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.fp-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .fp-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* grid */
.fp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.fp-card {
    display: flex;
    min-height: 280px;
    padding: 24px 24px 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid var(--Border-primary, #f4f4f4);
    background: var(--Surface-primary, #fff);
}

.fp-ico {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 3px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 24px;
}

.fp-ico img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.fp-card h3 {
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .fp-card h3 {
        font-size: 16px;
        line-height: 24px;
    }
}

.fp-card p {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .fp-card p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* header */
.fq-header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

.fq-badge {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .fq-badge {
        font-size: 12px;
        line-height: 16px;
    }
}

.fq-title {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .fq-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.fq-sub {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    margin: 0;
}

@media (max-width: 767px) {
    .fq-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* accordion (details/summary) */
.fq-item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
    padding: 0 0 40px;
    margin-bottom: 40px;
}

.fq-question {
    color: var(--Text-primary, #303030);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
    /* 133.333% */
}

@media (max-width: 767px) {
    .fq-question {
        font-size: 18px;
        line-height: 28px;
    }
}

.fq-question::after {
    content: "";
    width: 6px;
    height: 1px;
    background: var(--Icon-Icon, #4a4a4a);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.fq-question::marker {
    content: "";
}

/* answer */
.fq-answer {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .fq-answer {
        font-size: 14px;
        line-height: 24px;
    }
}

.cs-hd-header {
    text-align: center;
    margin-bottom: 64px;
}

.cs-hd-eyebrow {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .cs-hd-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.cs-hd-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin: 0 0 16px;
}

@media (max-width: 767px) {
    .cs-hd-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.cs-hd-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .cs-hd-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* header */
.cr-badge {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .cr-badge {
        font-size: 12px;
        line-height: 16px;
    }
}

.cr-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.2px;
    margin: 0 0 16px;
}

@media (max-width: 767px) {
    .cr-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.cr-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .cr-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

/* grid */
.cr-grid {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.cr-card {
    display: flex;
    padding: 24px 24px 40px 24px;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid var(--Border-primary, #f4f4f4);
    background: var(--Surface-primary, #fff);
}

.cr-ico {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 3px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 24px;
}

.cr-ico img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.cr-card h3 {
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .cr-card h3 {
        font-size: 16px;
        line-height: 24px;
    }
}

.cr-card p {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .cr-card p {
        font-size: 14px;
        line-height: 24px;
    }
}

.prtn-grid {
    display: grid;
    grid-template-columns: 628px 1fr;
    gap: 40px;
    align-items: center;
}

/* left copy */
.prtn-eyebrow {
    color: #ed66b2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 767px) {
    .prtn-eyebrow {
        font-size: 12px;
        line-height: 16px;
    }
}

.prtn-title {
    color: var(--Text-primary, #303030);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .prtn-title {
        font-size: 28px;
        line-height: 36px;
    }
}

.prtn-title strong {
    color: #3b3f45;
}

.prtn-sub {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 8px auto 40px;
}

@media (max-width: 767px) {
    .prtn-sub {
        font-size: 14px;
        line-height: 24px;
    }
}

.prtn-actions {
    display: flex;
    gap: 16px;
}

.prtn-btn {
    min-width: 210px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.prtn-btn--primary {
    color: #fff;
    background: linear-gradient(180deg, #ff7cc1, #c35bff);
    box-shadow: 0 10px 24px rgba(195, 91, 255, 0.35);
}

.prtn-btn--ghost {
    color: #f3b7db;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
}

.prtn-btn:hover {
    transform: translateY(-1px);
}

/* ORBIT CANVAS (right) */
.prtn-orbit {
    position: relative;
}

.prtn-orbit img {
    width: 100%;
}

.reward-center .rp-head {
    text-align: center;
}

.reward-center .rp-badge {
    justify-content: center;
}

.reward-heading-left .cs-hd-header {
    text-align: left;
    margin: 0;
}

.reward-heading-left .cs-hd-eyebrow {
    justify-content: flex-start;
}

.reward-heading-no-padding .cs-hd-header {
    margin-bottom: 0;
}

.reward-heading-no-padding .cs-hd-sub {
    margin-bottom: 0;
}

/* header brands */
.cmp-brands {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: end;
    margin: 0 auto 16px;
}

.cmp-brands .lbl {
    text-align: left;
}

.cmp-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

@media (max-width: 767px) {
    .cmp-brand {
        font-size: 16px;
        line-height: 24px;
    }
}

.cmp-brand small {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

@media (max-width: 767px) {
    .cmp-brand small {
        font-size: 12px;
        line-height: 16px;
    }
}

.cmp-logo {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
}

.cmp-logo img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

/* table */
.cmp-table {
    margin: 0 auto;
    border-collapse: collapse;
    text-align: left;
}

.cmp-table thead th {
    font-size: 13px;
    color: #6b7280;
    padding: 8px 12px;
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
    width: 33.3333333333%;
}

.cmp-table th,
.cmp-table td {
    padding: 0;
    border: 0;
    vertical-align: middle;
    width: 33.3333333333%;
    text-align: left;
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {

    .cmp-table th,
    .cmp-table td {
        font-size: 14px;
        line-height: 24px;
    }
}

.cmp-table tr:not(.cmp-section)+tr:not(.cmp-section) td {
    padding-top: 16px;
}

.cmp-table .cmp-first-row td {
    padding-top: 16px;
}

.cmp-table .cmp-last-row td {
    padding-bottom: 16px;
}

.cmp-table th:nth-child(2),
.cmp-table td:nth-child(2),
.cmp-table th:nth-child(3),
.cmp-table td:nth-child(3) {
    text-align: center;
}

/* section rows */
.cmp-section {
    background: #fafbfe;
}

.cmp-section td {
    padding: 8px 16px;
    align-items: center;
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

@media (max-width: 767px) {
    .cmp-section td {
        padding: 4px 8px;
        font-size: 14px;
        font-weight: 500;
        font-family: Inter;
        line-height: 20px;
        color: #303030 !important;
    }
}

/* ticks & dashes */
.cmp-tick {
    color: #e24f9f;
    font-weight: 900;
}

.cmp-dash {
    color: #c2c7d3;
}

/* CTA */
.cmp-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
    width: 33.3333333333%;
    margin-left: auto;
    margin-right: 33.3333333333%;
}

.cmp-btn {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    background: var(--Surface-primary, #fff);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

@media (max-width: 767px) {
    .cmp-btn {
        font-size: 16px;
        line-height: 24px;
    }
}

.cmp-btn span {
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cmp-btn:hover {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 10px 3px rgba(237, 102, 178, 0.1215686275);
    border: 1px solid #ed66b2;
}

/* cards grid */
.prc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin: 0 auto;
}

/* card */
.prc-card {
    padding-top: 60px;
    display: flex;
    flex-flow: column;
    height: 100%;
}

.prc-card h3 {
    color: var(--Text-primary, #303030);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 16px;
    /* 133.333% */
}

@media (max-width: 767px) {
    .prc-card h3 {
        font-size: 18px;
        line-height: 28px;
    }
}

/* price */
.prc-price {
    display: flex;
    align-items: flex-end;
    margin-bottom: 16px;
    position: relative;
}

.prc-price .prc-currency {
    color: var(--Text-primary, #303030);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 52px;
    /* 133.333% */
}

@media (max-width: 767px) {
    .prc-price .prc-currency {
        font-size: 18px;
        line-height: 28px;
    }
}

.prc-price .prc-main {
    color: var(--Text-primary, #303030);
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 88px;
    letter-spacing: 0.4px;
    position: relative;
}

.prc-price .prc-old {
    position: absolute;
    top: 0;
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
    /* 27px */
    text-decoration-line: line-through;
}

@media (max-width: 767px) {
    .prc-price .prc-old {
        font-size: 14px;
        line-height: 24px;
    }
}

.prc-cycle {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .prc-cycle {
        font-size: 14px;
        line-height: 24px;
    }
}

.prc-cycle span {
    background: var(--Gradient-colors-Purple,
            linear-gradient(180deg, #a044ff 0%, #6a3093 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prc-description {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    min-height: 54px;
    /* 27px */
}

@media (max-width: 767px) {
    .prc-description {
        font-size: 14px;
        line-height: 24px;
    }
}

/* features */
.prc-list {
    margin: 0 !important;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prc-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: var(--Text-primary, #303030);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .prc-list li {
        font-size: 14px;
        line-height: 24px;
    }
}

.prc-check {
    color: #e24f9f;
    font-weight: 900;
    width: 100%;
    max-width: 24px;
    height: 24px;
}

/* button */
.prc-cta {
    margin-top: 40px;
    margin-bottom: 40px;
}

.prc-btn {
    display: inline-flex;
    height: 48px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    transition: all 0.3s ease;
}

.prc-btn:hover {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 10px 3px rgba(237, 102, 178, 0.1215686275);
    border: 1px solid #ed66b2;
}

.prc-btn span {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .prc-btn span {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Most popular (middle) */
.prc-card--pop {
    padding-top: 0;
    border-color: #e4c0ff;
}

.prc-card--pop h3 {
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prc-ribbon {
    display: flex;
    padding: 16px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    opacity: 0;
}

@media (max-width: 767px) {
    .prc-ribbon {
        font-size: 16px;
        line-height: 24px;
    }
}

.prc-content {
    display: flex;
    flex-direction: column;
    padding: 24px 40px;
    border-radius: 20px;
    background: var(--p-color-bg-surface);
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
    flex: 1;
}

.prc-card--pop .prc-ribbon {
    opacity: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.prc-card--pop .prc-content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 2px solid var(--Branding-Branding, #ed66b2);
    border-top: 0;
    background: var(--p-color-bg-surface);
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
}

.prc-card--pop .prc-btn {
    border-radius: 8px;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
}

.prc-card--pop .prc-btn span {
    color: #fff;
    background: none;
    -webkit-text-fill-color: initial;
}

/* button with gradient outline */
.gob-container-1280 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gob-btn {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
}

/* gradient text */
.gob-btn .gob-text {
    color: #ed66b2;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
}

@media (max-width: 767px) {
    .gob-btn .gob-text {
        font-size: 14px;
        line-height: 24px;
    }
}

/* header with 4 plan cards on top of table */
.cp4-plans {
    margin: 0 auto 12px;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.cp4-plan {
    max-width: calc(20% - 12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 0;
}

.cp4-plan h4 {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 16px;
    /* 140% */
}

@media (max-width: 767px) {
    .cp4-plan h4 {
        font-size: 16px;
        line-height: 24px;
    }
}

.cp4-price {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.2px;
    margin-bottom: 4px;
}

@media (max-width: 767px) {
    .cp4-price {
        font-size: 20px;
        line-height: 28px;
    }
}

.cp4-price span {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133% */
}

@media (max-width: 767px) {
    .cp4-price span {
        font-size: 14px;
        line-height: 24px;
    }
}

.cp4-note {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
    /* 125% */
}

@media (max-width: 767px) {
    .cp4-note {
        font-size: 12px;
        line-height: 16px;
    }
}

.cp4-btn {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
}

@media (max-width: 767px) {
    .cp4-btn {
        font-size: 14px;
        line-height: 24px;
    }
}

.cp4-btn span {
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cp4-plan--pop .cp4-btn {
    border-radius: 8px;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
}

.cp4-plan--pop .cp4-btn span {
    -webkit-text-fill-color: #fff;
    color: #fff;
}

/* table */
.cp4-table {
    margin: 0 auto;
    border-collapse: collapse;
    text-align: left;
}

.cp4-table thead th {
    font-size: 13px;
    color: #6b7280;
    padding: 8px 12px;
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
    width: 20%;
}

.cp4-table th,
.cp4-table td {
    padding: 0;
    border: 0;
    vertical-align: middle;
    width: 20%;
    text-align: left;
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    white-space: nowrap;
    /* 27px */
}

@media (max-width: 767px) {

    .cp4-table th,
    .cp4-table td {
        font-size: 14px;
        line-height: 24px;
    }
}

.cp4-table tr:not(.cp4-section)+tr:not(.cp4-section) td {
    padding-top: 16px;
}

.cp4-table .cp4-first-row td {
    padding-top: 16px;
}

.cp4-table .cp4-last-row td {
    padding-bottom: 16px;
    white-space: nowrap;
}

.cp4-table th:nth-child(2),
.cp4-table td:nth-child(2),
.cp4-table th:nth-child(3),
.cp4-table td:nth-child(3),
.cp4-table th:nth-child(4),
.cp4-table td:nth-child(4),
.cp4-table th:nth-child(5),
.cp4-table td:nth-child(5) {
    text-align: center;
}

/* section rows */
.cp4-section {
    background: #fafbfe;
}

.cp4-section td {
    padding: 8px 16px;
    align-items: center;
    color: var(--Text-primary, #303030);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

@media (max-width: 767px) {
    .cp4-section td {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ticks & dashes */
.cp4-tick {
    color: #e24f9f;
    font-weight: 900;
}

.cp4-dash {
    color: #c2c7d3;
}

/* CTA */
.cp4-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
    width: 33.3333333333%;
    margin-left: auto;
}

.cp4-btn {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    background: var(--Surface-primary, #fff);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
}

@media (max-width: 767px) {
    .cp4-btn {
        font-size: 16px;
        line-height: 24px;
    }
}

.cp4-btn span {
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cp4-btn:hover {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 10px 3px rgba(237, 102, 178, 0.1215686275);
    border: 1px solid #ed66b2;
}

.cp4-popular-badge {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
    text-decoration-line: line-through;
    min-height: 20px;
    margin-bottom: 4px;
}

@media (max-width: 767px) {
    .cp4-popular-badge {
        font-size: 12px;
        line-height: 16px;
    }
}

#Header_wrapper header#Header {
    position: fixed !important;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 1280px;
    height: 80px;
    padding: 0 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #4b5569;
    background: rgba(255, 255, 255, 0.1) !important;
    z-index: 9999;
}

header#Header {
    width: 100%;
}

#Header_wrapper header#Header div#Top_bar .container {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.header-classic #Top_bar {
    background-color: rgba(255, 255, 255, 0) !important;
}

#Top_bar #menu {
    background-color: rgba(255, 255, 255, 0) !important;
}

#Header_wrapper header#Header #Top_bar #logo img {
    max-height: 32px !important;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
}

#Header_wrapper header#Header #Top_bar #logo {
    text-align: left !important;
    padding: 0 !important;
}

#Top_bar .menu>li>a span {
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

@media (max-width: 767px) {
    #Top_bar .menu>li>a span {
        font-size: 12px;
        line-height: 16px;
    }
}

#Header .secondary-menu>li {
    padding: 0 !important;
}

#Header .secondary-menu>li {
    gap: 10px;
    border-radius: 8px !important;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    background: var(--Surface-primary, #fff);
}

#Header .secondary-menu>li a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 64px;
    padding: 0 40px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    #Header .secondary-menu>li a {
        font-size: 14px;
        line-height: 24px;
    }
}

#Header_wrapper header#Header #Top_bar .secondary_menu_wrapper {
    max-height: none !important;
    width: auto !important;
}

#Top_bar .top_bar_left {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

#Header_wrapper header#Header .top_bar_left.clearfix::before {
    display: none !important;
}

#Header_wrapper header#Header .top_bar_left.clearfix::after {
    display: none !important;
}

#Header_wrapper header#Header #Top_bar #logo {
    display: flex !important;
    align-items: center !important;
}

#Header_wrapper header#Header #Top_bar.is-sticky {
    top: 0 !important;
    position: relative !important;
    left: 0;
    height: 80px;
    width: 100%;
    opacity: 1;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_placeholder {
    display: none !important;
}

#Header_wrapper header#Header #Top_bar.is-sticky #logo {
    margin-top: 0;
}

#Header_wrapper header#Header #Top_bar .logo,
#Top_bar.is-sticky .logo {
    margin: 0 !important;
}

.fr-title {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    margin-bottom: 64px;
}

@media (max-width: 767px) {
    .fr-title {
        font-size: 20px;
        line-height: 28px;
    }
}

/* Tabs */
.fr-tabs {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 auto 48px;
}

.fr-tab {
    position: relative;
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    border: 0;
    padding: 0 0 8px;
    border-radius: 0;
    /* 27px */
}

@media (max-width: 767px) {
    .fr-tab {
        font-size: 14px;
        line-height: 24px;
    }
}

.fr-tab:hover {
    background-color: rgba(255, 255, 255, 0);
    color: #303030;
}

.fr-tab+.fr-tab {
    cursor: pointer;
}

.fr-tab.is-active {
    color: #303030;
    font-weight: 600;
}

.fr-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    width: 33px;
    bottom: -1px;
    height: 2px;
    background: #111827;
}

/* Grid */
.fr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-items: center;
}

/* Card */
.fr-card {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fr-media {
    position: relative;
    max-width: 330px;
    width: 100%;
    margin: 0 auto 24px !important;
}

.fr-media::before {
    content: "";
    display: block;
    padding-top: 118.1818181818%;
    /* 2:3 Aspect Ratio */
}

.fr-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.fr-card-title {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 140% */
    margin: 0 0 4px;
}

@media (max-width: 767px) {
    .fr-card-title {
        font-size: 16px;
        line-height: 24px;
    }
}

.fr-card-desc {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 24px;
    /* 27px */
}

@media (max-width: 767px) {
    .fr-card-desc {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Gradient outline button */
.fr-btn {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .fr-btn {
        font-size: 14px;
        line-height: 24px;
    }
}

.fr-btn:hover {
    box-shadow: 0 4px 15px rgba(237, 102, 178, 0.4);
}

/* Featured Resources Tab Functionality */
.fr-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content {
    transition: opacity 0.3s ease;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tab-content[style*="display: none"] {
    opacity: 0;
}

.fr-tab {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.fr-tab:hover {
    opacity: 0.8;
}

.fr-tab.is-active {
    color: #ed66b2;
}

.fr-tab.is-active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ed66b2;
    border-radius: 1px;
}

.fr-grid {
    min-height: 400px;
    /* Prevent layout shift during filtering */
}

.no-posts-message {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
}

/* Listing Ebooks Styles */
/* .listing-ebooks {
    padding: 40px 0;
}

.listing-ebooks .fr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
} */
.no-ebooks-found {
    text-align: center;
    padding: 60px 20px;
}

.no-ebooks-message {
    margin-bottom: 40px;
}

.no-ebooks-message h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.no-ebooks-message p {
    color: #666;
    font-size: 1.1rem;
}

/* Pagination Styles */
.ebooks-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 20px 0;
}

.ebooks-pagination .page-numbers {
    display: inline-block;
    padding: 12px 16px;
    margin: 0 4px;
    text-decoration: none;
    color: #666;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.ebooks-pagination .page-numbers:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
}

.ebooks-pagination .page-numbers.current {
    background: #ed66b2;
    color: white;
    border-color: #ed66b2;
}

.ebooks-pagination .page-numbers.prev,
.ebooks-pagination .page-numbers.next {
    padding: 12px 20px;
    font-weight: 600;
}

.ebooks-pagination .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
}

.ebooks-pagination .page-numbers.dots:hover {
    background: transparent;
    transform: none;
}

/* Pagination List Style */
.ebooks-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.ebooks-pagination li {
    margin: 0;
}

.ebooks-pagination li a,
.ebooks-pagination li span {
    display: inline-block;
    padding: 12px 16px;
    text-decoration: none;
    color: #666;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.ebooks-pagination li a:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
}

.ebooks-pagination li .current {
    background: #ed66b2;
    color: white;
    border-color: #ed66b2;
}

.ebooks-pagination li .dots {
    background: transparent;
    border: none;
    cursor: default;
}

.ebooks-pagination li .dots:hover {
    background: transparent;
    transform: none;
}

.single-case_studies #Subheader,
.post-type-archive-case_studies #Subheader,
.ebooks-template-default.single div#Subheader {
    display: none;
}

.hf-sec {
    padding-top: 120px;
    padding-bottom: 120px;
    width: 100%;
}

.hf-sec .fq-col {
    width: 100%;
}

/* Section background with dark gradient + radial "glow" */
.hero-form {
    padding-top: 120px;
    padding-bottom: 120px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

/* Container & layout */
.hf-container {
    display: flex;
    gap: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    max-width: 1280px;
    margin: 0 auto;
}

/* Left text */
.hf-title {
    color: #fff;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.2px;
    align-self: stretch;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .hf-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.hf-text {
    color: #dedede;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .hf-text {
        font-size: 14px;
        line-height: 24px;
    }
}

.hf-left {
    flex: 1;
}

.hf-image {
    display: flex;
    width: 100%;
    max-width: 628px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Card (right) */
.hf-card {
    display: flex;
    width: 100%;
    max-width: 628px;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #fff;
    box-shadow: 1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        -1px 0 0 0 rgba(0, 0, 0, 0.13) inset,
        0 -1px 0 0 rgba(0, 0, 0, 0.17) inset,
        0 1px 0 0 rgba(204, 204, 204, 0.5) inset,
        0 1px 0 0 rgba(26, 26, 26, 0.07);
}

.hf-card-title {
    color: var(--Text-primary, #303030);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    /* 133.333% */
    margin-bottom: 24px;
    width: 100%;
}

@media (max-width: 767px) {
    .hf-card-title {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Fields */
.hf-field {
    display: block;
    margin-bottom: 16px;
    width: 100%;
}

.hf-field span {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 767px) {
    .hf-field span {
        font-size: 14px;
        line-height: 24px;
    }
}

.hf-field .req {
    color: #ff6074;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 767px) {
    .hf-field .req {
        font-size: 14px;
        line-height: 24px;
    }
}

#hf-form .hf-field input,
#hf-form .hf-field select {
    display: flex;
    height: 48px;
    padding-left: 12px;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 9px;
    border: 1px solid var(--Border-secondary, #e7e7e7);
    width: 100%;
    margin-bottom: 0px;
}

#hf-form .hf-field input:focus {
    background: #ffffff;
    border-color: #a78bfa;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.18);
}

/* Consent */
.hf-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hf-consent {
        font-size: 11px;
        line-height: 16px;
    }
}

.hf-consent span {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .hf-consent span {
        font-size: 14px;
        line-height: 24px;
    }
}

.hf-consent input {
    margin-top: 4px;
    width: 100%;
    max-width: 20px;
    height: 20px;
    accent-color: #ec4899;
    /* màu tick như mock */
}

.hf-consent a {
    color: #1279aa;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 767px) {
    .hf-consent a {
        font-size: 14px;
        line-height: 24px;
    }
}

.hf-consent a:hover {
    text-decoration: underline;
}

/* Button gradient */
.hf-button {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
}

@media (max-width: 767px) {
    .hf-button {
        font-size: 14px;
        line-height: 24px;
    }
}

.hf-button:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    box-shadow: 0 10px 26px rgba(236, 72, 153, 0.33);
}

.hf-button:active {
    transform: translateY(0);
}

.ebook-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.ebook-cover {
    flex: 0 0 300px;
}

.ebook-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ebook-details {
    flex: 1;
}

.ebook-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.ebook-author {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.ebook-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ebook-meta span {
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
}

.ebook-price {
    margin-bottom: 30px;
}

.price-free {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
}

.price-regular {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 1.1rem;
}

.price-sale,
.price-current {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
}

.ebook-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-sample {
    background: #17a2b8;
    color: white;
}

.btn-pdf {
    background: #dc3545;
    color: white;
}

.btn-epub {
    background: #28a745;
    color: white;
}

.btn-mobi {
    background: #6f42c1;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ebook-taxonomies {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.ebook-categories,
.ebook-tags {
    margin-bottom: 15px;
}

.ebook-category-link,
.ebook-tag-link {
    display: inline-block;
    background: #f8f9fa;
    color: #007cba;
    padding: 5px 12px;
    margin: 2px 5px 2px 0;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}

.ebook-category-link:hover,
.ebook-tag-link:hover {
    background: #007cba;
    color: white;
}

@media (max-width: 767px) {
    .ebook-content {
        flex-direction: column;
        gap: 20px;
    }

    .ebook-cover {
        flex: none;
        text-align: center;
    }

    .ebook-thumbnail {
        max-width: 250px;
        margin: 0 auto;
    }

    .ebook-title {
        font-size: 2rem;
    }

    .download-buttons {
        justify-content: center;
    }
}

.bc {
    margin-bottom: 100px;
}

.bc-list {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    list-style: none;
    background: transparent;
}

.bc-item {
    display: flex;
    align-items: center;
}

.bc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    /* xám nhạt như ảnh */
    text-decoration: none;
    line-height: 1;
    padding: 2px 4px;
    color: var(--Text-secondary-on-dark-bg, #b8b8b8);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

@media (max-width: 767px) {
    .bc-link {
        font-size: 11px;
        line-height: 16px;
    }
}

.bc-link:hover {
    color: #9aa0a6;
}

.bc-home {
    display: block;
}

.bc-sep {
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.archive-case-studies-wrapper .hero-form {
    background-position: center;
}

.archive-case-studies-wrapper .hf-left {
    padding-bottom: 64px;
}

.cs {
    padding: 120px 0;
}

.cs-container {
    max-width: 1280px;
    margin: 0 auto;
}

.cs-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cs-post+.cs-post {
    margin: 184px auto 0;
}

/* Text */
.cs-title {
    color: var(--Text-primary, #303030);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.2px;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .cs-title {
        font-size: 20px;
        line-height: 28px;
    }
}

.cs-text {
    color: var(--Text-secondary, #616161);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .cs-text {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Button outline gradient */
.cs-btn {
    display: inline-flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--Branding-Branding, #ed66b2);
    background: var(--Surface-primary, #fff);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 22.5px */
    background: var(--Branding-Branding,
            linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .cs-btn {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Image */
.cs-image img {
    display: block;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.cs-list .cs-container {
    max-width: 1064px;
}

.cs-list .tp-pagination {
    margin-top: 64px;
    text-align: center;
}

.single-case_studies #Header_wrapper header#Header {
    border-radius: 20px;
    border: 1px solid #eaeaea;
    background: rgba(255, 255, 255, 0.1);
}

.single-case_studies #Top_bar .menu>li>a span {
    color: #616161;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 125% */
}

@media (max-width: 767px) {
    .single-case_studies #Top_bar .menu>li>a span {
        font-size: 12px;
        line-height: 16px;
    }
}

.redeem-center .rp-head {
    text-align: center;
}

.hf-action {
    display: flex;
}

/* Layout */
.single-case_studies-post {
    padding-top: 120px;
}

.single-case_studies-post-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Meta + title */
.single-case_studies-post-meta {
    color: #919191;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    margin-bottom: 8px;
    /* 17.5px */
}

.single-case_studies-post-meta b {
    color: #303030;
}

.single-case_studies-dot {
    margin: 0 6px;
}

.single-case_studies-post-title {
    color: var(--Text-primary, #303030);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 48px;
    /* 116.667% */
    max-width: 990px;
    margin: 0 auto 48px;
}

@media (max-width: 767px) {
    .single-case_studies-post-title {
        font-size: 28px;
        line-height: 36px;
    }
}

/* Hero image */
.single-case_studies-post-hero {
    margin: 0 auto 28px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
    margin-bottom: 80px;
}

.single-case_studies-post-hero img {
    display: block;
    width: 100%;
    height: auto;
}

/* Stats */
.single-case_studies-post-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto 80px;
}

.single-case_studies-stat {
    display: flex;
    padding: 24px 24px 40px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
}

.single-case_studies-stat .single-case_studies-num {
    color: var(--Text-primary, #303030);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 116.667% */
    letter-spacing: -0.24px;
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .single-case_studies-stat .single-case_studies-num {
        font-size: 28px;
        line-height: 36px;
    }
}

.single-case_studies-stat p {
    color: var(--Text-secondary, #616161);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
}

@media (max-width: 767px) {
    .single-case_studies-stat p {
        font-size: 14px;
        line-height: 20px;
    }
}

.single-case_studies-content {
    max-width: 960px;
    margin: 0 auto 120px;
}

.style-simple blockquote {
    border-left: 0 !important;
    padding-left: 80px !important;
}

.style-simple blockquote:before {
    content: "";
    position: absolute;
    background: linear-gradient(98deg, #ed66b2 18.85%, #86469c 116.55%);
    height: 100%;
    width: 2px;
    left: 40px;
}

section.cp4-wrap-1920.cp4-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.gob-btn {
    margin-bottom: 40px;
    transition: all 0.3s;
}

.cp4-container-1280 {
    width: 100%;
}

.gob-btn.active svg {
    transform: rotate(180deg);
}

.prc-tabs {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 24px;
}

.prc-tabs a {
    text-decoration: none;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #000;
    position: relative;
    padding: 0 16px;
}

.prc-tabs a:before {
    content: "";
    background-color: #ed66b2;
    height: 3px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    transition: all 0.3s;
}

.prc-tabs a.active::before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .elementor-section .elementor-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hb-badges {
        flex-flow: column;
    }

    .etabs-tabs {
        flex-flow: wrap;
        justify-content: flex-start;
    }

    .etabs-tab {
        max-width: 50%;
        flex: calc(50% - 16px);
    }

    div#etabs-tab1 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .loyalty-custom-grid {
        display: flex;
        flex-flow: column-reverse;
    }

    .integration-logo-slider.slick-initialized.slick-slider {
        margin-left: -15px;
        margin-right: -15px;
    }

    .integration-logo img {
        width: 50px;
        height: 50px;
    }

    .integration-logo::after {
        width: 75px;
    }

    .integration-logo-slider .slick-slide div+div {
        margin-top: 60px;
    }

    .hb-actions {
        margin-bottom: 20px;
    }

    .hb-trusted {
        flex-flow: column;
        align-items: normal;
        gap: 16px;
    }

    .hb-trusted__copy {
        text-align: center;
    }

    .hb-trusted__logos {
        overflow: visible !important;
    }

    .fp-grid {
        grid-template-columns: 1fr;
    }

    .rp-grid {
        flex-flow: column;
    }

    .gm-grid {
        display: flex;
        flex-flow: column-reverse;
    }

    .cr-grid {
        flex-flow: column;
    }

    .wp-grid {
        grid-template-columns: 1fr;
    }

    .patner-hero__btn {
        padding-left: 16px;
        padding-right: 16px;
    }

    .tp-grid {
        grid-template-columns: 1fr;
    }

    .ifm-grid {
        grid-template-columns: 1fr;
    }

    .ifm-eyebrow {
        justify-content: center;
    }

    h2.ifm-title {
        text-align: center;
    }

    .ifm-sub {
        text-align: center;
    }

    .rp-card {
        min-height: auto;
        padding: 24px;
    }

    .ft-cards {
        grid-template-columns: 1fr;
    }

    .wp-card {
        padding: 24px;
    }

    .wp-actions {
        margin-top: 32px;
    }

    .tp-filters {
        white-space: nowrap;
        display: -webkit-box;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .gm-box {
        width: 100%;
        padding: 24px;
    }

    .gm-list {
        width: 100%;
    }

    .prc-grid {
        flex-flow: column;
        display: flex;
    }

    .fq-item:not(:last-child) {
        padding: 0 0 16px;
        margin-bottom: 16px;
    }

    .prc-card {
        padding-top: 0;
    }

    .cp4-plans {
        flex-flow: column;
    }

    .cp4-plan {
        max-width: 100%;
    }

    .ep-item {
        width: 100%;
    }

    .ep-item:nth-child(3) {
        transform: none;
    }

    .ep-item:nth-child(4) {
        transform: none;
    }

    .gm-title {
        text-align: center;
    }

    .gm-badge {
        justify-content: center;
    }

    .gm-sub {
        text-align: center;
    }

    .fr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cmp-cta {
        width: 100%;
    }

    .loyalty-footer-main-inner {
        display: flex;
        flex-flow: column;
        padding-left: 16px;
        padding-right: 16px;
    }

    .loyalty-link-groups {
        display: grid;
        gap: 24px 16px;
        grid-template-columns: 1fr 1fr;
    }

    .loyalty-footer-bar-inner {
        height: auto;
        flex-flow: column;
        color: #fff;
        gap: 16px;
        padding: 24px 16px;
    }

    .loyalty-group-list br {
        display: none;
    }

    .hf-container {
        flex-flow: column;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hf-card {
        box-sizing: border-box;
    }

    .archive-case-studies-wrapper .cs-post {
        grid-template-columns: 1fr;
    }

    .archive-case-studies-wrapper .cs-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .archive-case-studies-wrapper .hf-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cs-post+.cs-post {
        margin-top: 24px;
    }

    .archive-case-studies-wrapper .hf-left {
        width: 100%;
        padding: 0;
    }

    .single-case_studies-post-stats {
        flex-flow: column;
        display: flex;
        gap: 0;
    }

    .single-case_studies-stat {
        padding: 16px;
    }

    .single-case_studies-post-hero {
        margin-bottom: 20px;
    }

    span.bc-current {
        white-space: nowrap;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }

    .bc-list {
        white-space: nowrap;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    .bc-item {
        text-overflow: ellipsis;
        flex: 1;
    }

    .single-case_studies-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .style-simple blockquote {
        padding-left: 40px !important;
    }

    .style-simple blockquote:before {
        left: 20px !important;
    }

    .prc-tabs {
        display: flex;
    }

    .prc-card {
        display: none;
    }

    .prc-card.active {
        display: flex;
    }

    .prc-card--pop .prc-content {
        padding: 24px;
    }

    .mobile-header-mini #Top_bar a.responsive-menu-toggle {
        margin-top: -22px !important;
    }
}

/*# sourceMappingURL=elementor-custom-addons.css.map */

.eca-section {
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1440px) {

    .entry-content .section_wrapper,
    .entry-content .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 1239px) {
    #Header_wrapper header#Header {
        width: calc(100% - 64px);
    }

    .hb-trusted {
        padding-left: 16px;
    }

    .etabs-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .loyalty-custom-sec-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bonloyalty-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .loyalty-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rp-head {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gm-container-1280 {
        padding-right: 16px;
        padding-left: 16px;
    }

    .fp-container-1280 {
        padding: 0 16px;
    }

    .fq-container-1280 {
        padding: 0 16px;
    }

    .heading-white .cs-hd-sub br {
        display: none;
    }

    section.prtn-wrap-1920.prtn-sec {
        padding: 0 16px;
    }

    .wp-wrap-1920.wp-sec {
        padding: 0 16px;
    }

    .tp-container-1280 {
        padding: 0 16px;
    }

    .ts-container-1280 {
        padding: 0 16px;
    }

    .ts-row {
        margin-left: -16px;
        margin-right: -16px;
    }

    .ifm-container-1280 {
        padding: 0 16px;
    }

    .rp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    #Top_bar a.responsive-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .prc-tabs {
        display: flex;
    }

    .prc-card {
        display: none;
    }

    .prc-card.active {
        display: flex;
    }

    .prc-card--pop .prc-content {
        padding: 24px;
    }

    .prc-grid {
        grid-template-columns: 1fr;
    }

    .cp4-wrap-1920,
    .prc-container-1280,
    .cs-hd-wrap-1920.cs-hd-sec {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gob-btn {
        max-width: 250px;
        margin: 0 auto;
    }

    .cp4-plan {
        max-width: calc((100vw - 350px) / 4) !important;
        width: 100%;
    }

    .cp4-table td {
        min-width: calc((100vw - 350px) / 4) !important;
        width: 100%;
    }

    .cp4-table tr td:first-child {
        max-width: 350px !important;
    }

    .cp4-table th,
    .cp4-table td {
        font-size: 16px;
    }

    .ft-wrap-1920 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 991px) and (max-width: 1239px) {
    .gm-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (min-width: 768px) and (max-width: 1120px) {
    .cp4-plans {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .cp4-btn {
        padding-left: 24x;
        padding-right: 24px;
        text-align: center;
    }

    .cp4-plan {
        max-width: 100% !important;
        width: 100%;
    }

    .hf-container,
    .fr-container,
    .fp-wrap-1920 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hf-card,
    .hf-image {
        max-width: 50vw;
    }

    .hb-hero__sub {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 767px) {
    .cp4-plans {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cp4-plan {
        max-width: 100% !important;
        width: 100%;
    }

    .cp4-container-1280 .cp4-plans {
        gap: 16px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
    .loyalty-link-groups {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

}

@media (min-width: 768px) and (max-width: 991px) {

    .ft-cards {
        grid-template-columns: 1fr 1fr;
    }

    .tp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fr-card-desc {
        font-size: 16px;
    }

    .ep-item {
        width: 50%;
    }

    .ep-item:nth-child(3) {
        transform: none;
    }

    .ep-item:nth-child(4) {
        transform: none;
    }

    .ep-grid {
        max-width: 100%;
    }
}

@media screen and (max-width: 1239px) {
    .cp4-container-1280 .cp4-table-wrapper {
        overflow-x: auto;
        max-width: 100vw;
        -webkit-overflow-scrolling: touch;
    }

    .cmp-container-1280 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media screen and (max-width: 991px) {
    #Header_wrapper header#Header:has(> div#Top_bar.is-sticky) {
        border-top: 1px solid #111723;
        border-left: 1px solid #111723;
        border-right: 1px solid #111723;
    }

    .mobile-header-mini #Top_bar a.responsive-menu-toggle {
        display: flex;
        align-items: center;
    }

    #Top_bar a.responsive-menu-toggle i {
        margin-top: -4px;
    }

    .ep-item {
        text-align: left;
    }

    .ep-item:nth-child(3) {
        text-align: right;
    }
}

@media screen and (max-width: 375px) {
    .hb-btn {
        padding-left: 24px;
        padding-right: 24px;
    }

    .loyalty-btn {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hb-hero__title br {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .style-simple td {
        font-size: 12px !important;
    }
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
    background: #fff0 !important;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item>a.mega-menu-link:hover,
#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item>a.mega-menu-link:focus {
    background: #fff0 !important;
}

@media screen and (max-width: 1239px) {

    #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
        color: #081f32 !important;
    }
}

@media screen and (max-width: 1239px) {
    #Header #Top_bar a.responsive-menu-toggle {
        top: 0 !important;
        left: 0;
        right: auto;
        bottom: auto;
        height: 100%;
        margin: 0 !important;
    }

    #Top_bar a.responsive-menu-toggle i {
        margin-top: 0 !important;
    }
}

.listing-ebooks .tp-pagination {
    margin-bottom: 0 !important;
}

.fq-question {
    padding-right: 55px;
}
.changelog-cat p {
    background-color: #fff !important;
}
@media screen and (max-width: 767px) {
    .fq-item::before {
        top: 38px !important;
    }

    .fq-item::after {
        top: 38px !important;
    }

    #Header_wrapper header#Header #Top_bar #logo img {
        height: 28px !important;
        width: auto !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0px);
    }

    #Header_wrapper header#Header #Top_bar #logo {
        height: 32px !important;
        margin: 0 !important;
    }

    .gm-list {
        display: -webkit-box;
        overflow-y: hidden;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: -16px;
        margin-right: -16px;
        width: -webkit-fill-available;
        gap: 0;
    }

    .gm-list::before {
        content: "";
        flex: 0 0 16px;
        display: block;
    }

    .gm-list::after {
        content: "";
        flex: 0 0 16px;
        display: block;
    }

    .gm-list .gm-box {
        padding: 16px;
        width: 80vw;
        flex: none;
        border-radius: 8px;
        border: 1px solid var(--Branding-Branding, #ED66B2);
        background: var(--p-color-bg-surface);
        margin-right: 16px;
    }

    .gm-list .gm-box.gm-box--active {
        border-radius: 8px;
    }

    .gm-container-1280 {
        width: 100%;
    }

    .gm-row {
        gap: 16px;
    }

    .gm-box h4 {
        margin-bottom: 8px;
    }

    .gm-ico {
        width: 24px;
        height: 24px;
    }

    .archive-case-studies-wrapper .cs-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .archive-case-studies-wrapper .cs-container .cs-btn {
        width: 100%;
        box-sizing: border-box;
        height: 48px;
    }

    .archive-case-studies-wrapper .cs-container .cs-content {
        display: flex;
        flex-direction: column;
    }

    .archive-case-studies-wrapper .cs-container .cs-content .cs-text {
        margin-bottom: 9px;
    }

    .archive-case-studies-wrapper .cs-container .cs-content .cs-title {
        margin-bottom: 8px;
    }

    .cp4-container-1280 .cp4-table-wrapper {
        margin-left: -16px;
        margin-right: -16px;
        padding: 0 16px;
    }

    .cp4-table tr td:first-of-type {
        padding-left: 0;
        padding-right: 0;
        max-width: 105px;
    }

    .cp4-table tr td {
        max-width: 121px;
        padding-left: 8px;
        padding-right: 8px;
        box-sizing: border-box;
    }

    .changelog-item .changelog-cat p {
        white-space: nowrap;
        border-radius: 8px;
        border: 1px solid var(--Branding-Branding, #ED66B2);
        background: var(--Light-Theme-Surface, #FFF);
        color: var(--Text-primary, #303030);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 24px;
    }

    .changelog-item .changelog-cat {
        flex: auto;
        margin-bottom: 8px;
    }

    .changelog-item .tab-ct {
        padding: 0;
        border: 0;
    }

    .changelog-item .changelog-cat::after {
        display: none;
    }

    .changelog-item h3.changelog-title {
        color: var(--Text-secondary, #616161);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        margin-bottom: 8px;
    }

    .changelog-item .changelog-desc {
        color: var(--Text-secondary, #616161);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .changelog-item span.changelog-status {
        margin: 0;
        display: inline-flex;
        padding: 6px 12px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
    }

    .changelog-item .tab-ct {
        margin-bottom: 40px;
        padding: 0;
    }

    .changelog-item .changelog-date p {
        margin-bottom: 0;
    }

    .ft-tag {
        display: none;
    }

    .ft-rating {
        display: none;
    }
    .cp4-table .cp4-last-row td {
        
        white-space: normal;
    }
}
.ft-tag {
    display: none;
}

.ft-rating {
    display: none;
}