.csCommercialRoot {
    /* Figma fonts used in this design:
     Raleway: Regular 400, Medium 500, SemiBold 600, Bold 700.
     Lato: Light 300, Medium 500, SemiBold 600, Bold 700.
     The site already loads these fonts, so no @font-face rules are needed here. */
    --csFontPrimary: Raleway, Arial, sans-serif;
    --csFontNumber: Lato, Arial, sans-serif;

    --csAccent: #c2185b;
    --csAccentBright: #e92064;
    --csAccentSoft: #fdecf2;
    --csAccentLine: #ffdbd4;
    --csText: #212121;
    --csHeroText: #411c2e;
    --csMuted: #496c6e;
    --csSubtle: #868686;
    --csSurface: #fff;
    --csPanel: #fafafa;
    --csBorderSoft: #f3e2ea;
    --csStar: #ffb543;
    --csOrange: #fb8e43;
    --csTurquoise: #11aabc;
    --csPurple: #6d41d6;
    --csBgBase: #fff8fb;
    --csBgEdge: 254 234 244;
    --csBgA: 255 201 85;
    --csBgB: 251 182 220;
    --csBgC: 216 0 212;
    --csBgD: 244 167 0;
    --csBgE: 245 251 182;
    --csLabelBorder: rgb(255 219 212 / 0.9);
    --csLabelBg: rgb(250 250 250 / 0.86);
    --csLabelShadow: rgb(233 32 100 / 0.15);

    color: var(--csText);
    font-family: var(--csFontPrimary);
}

.csCommercialRoot--instagramLikes {
    --csAccent: #c2185b;
    --csAccentBright: #e92064;
}

.csSubmenu {
    background: var(--csSurface);
    border-top: 1px solid #cfe5e4;
    border-bottom: 1px solid #cfe5e4;
    font-family: var(--csFontPrimary);
}

.csSubmenu__scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 13px 13px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.csSubmenu__scroller::-webkit-scrollbar {
    display: none;
}

.csSubmenu__link {
    position: relative;
    flex: 0 0 auto;
    padding: 0 0 14px;
    color: var(--csMuted);
    font-family: var(--csFontPrimary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.csSubmenu__link--active {
    color: var(--csText);
    font-weight: 700;
}

.csSubmenu__link--active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: var(--csAccentBright);
}

.csMain {
    background: var(--csBgBase);
}

.csHero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 20px 11px 25px;
    background-color: var(--csBgBase);
    font-family: var(--csFontPrimary);
}

/* Commercial page background: recolorable radial circle system.
   Change --csBgA through --csBgE on each page modifier. */
.csHero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse 42% 32% at 31% 12%, rgb(var(--csBgA) / 0.18), rgb(var(--csBgEdge) / 0.12) 68%, transparent 100%),
        radial-gradient(ellipse 55% 34% at 4% 16%, rgb(var(--csBgB) / 0.24), rgb(var(--csBgEdge) / 0.12) 70%, transparent 100%),
        radial-gradient(ellipse 70% 46% at 51% 36%, rgb(var(--csBgB) / 0.26), rgb(var(--csBgEdge) / 0.12) 72%, transparent 100%),
        radial-gradient(ellipse 50% 36% at 100% 19%, rgb(var(--csBgC) / 0.2), rgb(var(--csBgEdge) / 0.1) 72%, transparent 100%),
        radial-gradient(ellipse 62% 38% at 62% 21%, rgb(var(--csBgD) / 0.14), rgb(var(--csBgEdge) / 0.1) 72%, transparent 100%),
        radial-gradient(ellipse 86% 44% at 19% 84%, rgb(var(--csBgE) / 0.24), rgb(var(--csBgEdge) / 0.1) 72%, transparent 100%);
    background-position: top center;
    background-repeat: repeat-y;
    background-size: min(1972px, 525vw) auto;
}

.csHero__inner {
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}

.csHero__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    margin: 0 0 16px;
    padding: 6px 22px;
    border: 1px solid var(--csLabelBorder);
    border-radius: 999px;
    background: var(--csLabelBg);
    color: #000;
    font-family: var(--csFontPrimary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    box-shadow: 0 1px 10px var(--csLabelShadow);
}

.csHero__labelIcon {
    color: var(--csAccentBright);
    font-size: 18px;
    line-height: 1;
}

.csHero__title {
    max-width: 366px;
    margin: 0 auto 10px;
    color: var(--csHeroText);
    font-family: var(--csFontPrimary);
    font-size: 26.553px;
    font-weight: 700;
    line-height: 1.17;
    letter-spacing: 0;
}

.csHero__title span {
    display: block;
    color: var(--csAccent);
}

.csHero__subtitle {
    max-width: 324px;
    margin: 0 auto 20px;
    color: #151515;
    font-family: var(--csFontPrimary);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.05;
}

.csHero__proof {
    display: grid;
    gap: 10px;
    justify-items: center;
    margin-bottom: 16px;
}

/* ==========================================================================
   Social proof component: Review badge
   Reusable Django component. Optional theme variables:
   --csAccent, --csText, --csAccentLine, --csStar, --csFontPrimary, --csFontNumber.
   ========================================================================== */

.spReviewBadge {
    box-sizing: border-box;
    width: min(100%, 370px);
    min-height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 13px;
    border: 1px solid var(--csLabelBorder);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.94);
    color: var(--csText, #212121);
    font-family: var(--csFontPrimary, Raleway, Arial, sans-serif);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
}

.spReviewBadge__stars {
    flex: 0 0 auto;
    color: var(--csStar, #ffb543);
    font-family: var(--csFontPrimary, Raleway, Arial, sans-serif);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.spReviewBadge__rating {
    flex: 0 0 auto;
    font-family: var(--csFontNumber, Lato, Arial, sans-serif);
    font-weight: 700;
}

.spReviewBadge__text {
    min-width: 0;
    color: #212121;
    font-family: var(--csFontPrimary, Raleway, Arial, sans-serif);
    font-weight: 400;
    white-space: nowrap;
}

.spReviewBadge__count {
    color: var(--csAccent, #c2185b);
    font-family: var(--csFontNumber, Lato, Arial, sans-serif);
    font-weight: 700;
}

.spReviewBadge__linkText {
    font-family: var(--csFontPrimary, Raleway, Arial, sans-serif);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==========================================================================
   Social proof component: Live action badge
   Reusable Django component. JS hooks:
   [data-sp-live-badge] and [data-sp-live-message].
   ========================================================================== */

.spLiveBadge {
    box-sizing: border-box;
    width: min(100%, 370px);
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid var(--csLabelBorder);
    border-radius: 999px;
    background: rgb(250 250 250 / 0.94);
    color: #000;
    font-family: var(--csFontNumber, Raleway, Arial, sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.05;
}

.spLiveBadge__signal {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--csAccentBright, #e92064);
    box-shadow: 0 0 0 6px rgb(233 32 100 / 0.1);
    animation: spLiveBadgePulse 2.4s ease-out infinite;
}

.spLiveBadge__icon {
    width: 19px;
    height: 14px;
    flex: 0 0 auto;
    border: 2px solid var(--csAccentBright, #e92064);
    border-radius: 999px;
    position: relative;
}

.spLiveBadge__icon::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid var(--csAccentBright, #e92064);
    border-left: 2px solid var(--csAccentBright, #e92064);
    border-bottom-left-radius: 4px;
}

.spLiveBadge__messages {
    display: grid;
    min-width: 0;
}

.spLiveBadge__message {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    text-align: left;
    margin-left: 4px;
}

.spLiveBadge__message.is-active {
    opacity: 1;
    visibility: visible;
}

.spLiveBadge__message strong {
    color: var(--csText, #212121);
    font-family: var(--csFontNumber, Lato, Arial, sans-serif);
    font-weight: 700;
}

@keyframes spLiveBadgePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.72);
        opacity: 0.55;
    }
}

.csPackage {
    box-sizing: border-box;
    position: relative;
    width: min(100%, 353px);
    margin: 0 auto;
    padding: 18px 14px 21px;
    border-radius: 14px;
    background: rgb(255 255 255 / 0.94);
    box-shadow: 0 12px 34px rgb(194 24 91 / 0.08);
    font-family: var(--csFontPrimary);
}

.csPackage::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -30px;
    z-index: -1;
    width: 130px;
    height: 120px;
    border-radius: 48% 52% 45% 55%;
    background: rgb(255 255 255 / 0.72);
}

.csPackage__eyebrow {
    margin: 0 0 17px;
    color: var(--csAccent);
    font-family: var(--csFontPrimary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 2.16px;
    text-transform: uppercase;
}

.csPackage__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px 18px;
    margin-bottom: 12px;
}

.csPackageOption {
    box-sizing: border-box;
    position: relative;
    min-width: 0;
    min-height: 100px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    padding: 12px 4px 9px;
    border: 1px solid #f0b5c8;
    border-radius: 5px;
    background: var(--csSurface);
    color: #000;
    cursor: pointer;
    font-family: var(--csFontPrimary);
}

.csPackageOption--selected {
    border-color: transparent;
    background: linear-gradient(180deg, #ff4fa2 0%, #e92064 100%);
    color: var(--csSurface);
    box-shadow: 0 7px 16px rgb(233 32 100 / 0.28);
}

.csPackageOption--outlined {
    border-color: var(--csTurquoise);
    box-shadow: inset -1px 0 0 var(--csPurple);
}

.csPackageOption__tag {
    position: absolute;
    top: -8px;
    left: 50%;
    min-width: 72px;
    min-height: 15px;
    display: inline-grid;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid var(--csSurface);
    border-radius: 999px;
    background: var(--csOrange);
    color: var(--csSurface);
    font-family: var(--csFontPrimary);
    font-size: 8px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.csPackageOption__tag--pink {
    background: #f01173;
}

.csPackageOption__amount {
    font-family: var(--csFontNumber);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.05;
}

.csPackageOption__type {
    font-family: var(--csFontPrimary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.05;
}

.csPackageOption__price {
    width: 52px;
    padding-top: 9px;
    border-top: 1px solid currentColor;
    font-family: var(--csFontNumber);
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
}

.csPackage__selected {
    margin: 0 0 15px;
    color: #000;
    font-family: var(--csFontPrimary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
    text-align: left;
}

.csPackage__selected strong {
    font-family: var(--csFontNumber);
    font-size: 24px;
    font-weight: 600;
}

.csPackage__features {
    display: grid;
    gap: 13px;
    margin: 0 0 13px;
    padding: 0;
    list-style: none;
    text-align: left;
}

.csPackage__feature {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    color: #000;
    font-family: var(--csFontPrimary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.39px;
}

.csPackage__check {
    width: 24px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--csAccentSoft);
    color: #ff5ea7;
    font-family: var(--csFontPrimary);
    font-size: 12px;
    font-weight: 700;
}

.csPackage__total {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    margin: 3px 0 13px;
}

.csPackage__total span {
    color: #5f5f5f;
    font-family: var(--csFontNumber);
    font-size: 16px;
    font-weight: 500;
}

.csPackage__total strong {
    color: #000;
    font-family: var(--csFontNumber);
    font-size: 25.506px;
    font-weight: 700;
}

.csPackage__cta {
    width: min(100%, 248px);
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: linear-gradient(180deg, #f72f88 0%, #df0d60 100%);
    color: var(--csSurface);
    font-family: var(--csFontPrimary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 9px 18px rgb(194 24 91 / 0.26);
}

.csRegionToggler {
    box-sizing: border-box;
    width: min(100%, 353px);
    margin: 18px auto 0;
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: rgb(255 255 255 / 0.94);
    box-shadow: 0 12px 34px rgb(194 24 91 / 0.08);
    font-family: var(--csFontPrimary);
}

.csRegionToggler__header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 10px 2px;
}

.csRegionToggler__headerIcon {
    position: relative;
    width: 13px;
    height: 16px;
    flex: 0 0 auto;
}

.csRegionToggler__headerIcon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 13px;
    height: 13px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, #f25a9c 0%, #d81b60 100%);
    transform: translateX(-50%) rotate(-45deg);
}

.csRegionToggler__headerIcon::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
}

.csRegionToggler__title {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.csRegionToggler__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 10px 8px;
    border-radius: 10px;
    background: #ffeef5;
}

.csRegionToggler__item {
    box-sizing: border-box;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 4px 9px;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.csRegionToggler__item:hover {
    background: rgb(255 255 255 / 0.55);
}

.csRegionToggler__item--active,
.csRegionToggler__item--active:hover {
    background: linear-gradient(90deg, #ed458c 0%, #c24d9f 100%);
    color: #fff;
    box-shadow: 0 6px 14px rgb(210 76 156 / 0.28);
}

.csRegionToggler__flag {
    width: 26px;
    height: 19px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.csRegionToggler__flag--worldwide {
    background-image: url("/ig_commenter/static/images/images_new/pkg_int_flag.svg");
}

.csRegionToggler__flag--us {
    background-image: url("/ig_commenter/static/images/images_new/pkg_us_flag.svg");
}

.csRegionToggler__flag--german {
    background-image: url("/ig_commenter/static/images/images_new/pkg_de_flag.svg");
}

.csRegionToggler__flag--french {
    background-image: url("/ig_commenter/static/images/images_new/pkg_fr_flag.svg");
}

.csRegionToggler__flag--israeli {
    background-image: url("/ig_commenter/static/images/images_new/pkg_is_flag.svg");
}

.csRegionToggler__label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
}

.csRegionToggler__status {
    margin: 10px 0 0;
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.csRegionToggler__status strong {
    color: #000;
    font-weight: 700;
}

.csPaymentIcons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: min(100%, 353px);
    margin: 15px auto 0;
    box-sizing: border-box;
}

.csPaymentIcons__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    min-width: 46px;
    padding: 0 9px;
    border: 1px solid var(--csLabelBorder);
    border-radius: 6px;
    background: #ffffff;
    box-sizing: border-box;
}

.csPaymentIcons__mark {
    display: block;
    height: 20px;
    width: auto;
}

.csPaymentIcons__wordmark {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #111111;
    font-family: var(--csFontPrimary);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.csPaymentIcons__appleIcon {
    height: 18px;
    width: auto;
}

.csPaymentIcons__googleIcon {
    height: 16px;
    width: auto;
}

.csPaymentIcons__word--google {
    color: #5f6368;
}

.csTrustPills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    width: min(100%, 353px);
    margin: 15px auto 18px;
    padding: 0;
    list-style: none;
    border-radius: 20px;
    border: 1px solid var(--csLabelBorder);
    background: rgba(255, 255, 255, 0.5);
    padding: 12px;
    box-sizing: border-box;
}

.csTrustPills__item {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--csBorderSoft);
    border-radius: 999px;
    background: var(--csSurface);
    color: var(--csText);
    font-family: var(--csFontPrimary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    min-width: 155px;
}

.csTrustPills__itemIcon {
    flex: 0 0 auto;
    display: block;
    width: 14px;
    height: 14px;
    margin-right: 0;
    background-image: url("/ig_commenter/static/images/trust_badge_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.csStats {
    width: min(100%, 330px);
    margin: 0 auto;
    font-family: var(--csFontPrimary);
    margin-top: 15px;
}

.csStats__since {
    display: grid;
    grid-template-columns: 55px 1fr;
    column-gap: 15px;
    align-items: center;
    /* margin-bottom: 18px; */
    text-align: left;
    margin-top: 15px;
    border-radius: 20px;
    border: 1px solid var(--csLabelBorder);
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    box-sizing: border-box;
}

.csStats__icon,
.csStat__icon {
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: var(--csAccentSoft);
    color: var(--csAccentBright);
    font-family: var(--csFontPrimary);
}

.csStats__icon-calendar {
    width: 25px;
    height: 27px;
    background: url("/ig_commenter/static/images/cp_calendar.svg") no-repeat center center;
    background-size: contain;
}

.csStat__icon-comment {
    width: 25px;
    height: 27px;
    background: url("/ig_commenter/static/images/cp_comment.svg") no-repeat center center;
    background-size: contain;
}

.csStat__icon-shield {
    width: 25px;
    height: 27px;
    background: url("/ig_commenter/static/images/cp_shield.svg") no-repeat center center;
    background-size: contain;
}
.csStat__icon-star {
    width: 25px;
    height: 27px;
    background: url("/ig_commenter/static/images/cp_star.svg") no-repeat center center;
    background-size: contain;
}

.csStat__icon-people {
    width: 25px;
    height: 27px;
    background: url("/ig_commenter/static/images/cp_people.svg") no-repeat center center;
    background-size: contain;
}

.csStats__icon {
    grid-row: span 3;
    width: 55px;
    height: 55px;
    font-size: 27px;
}

.csStats__small {
    margin: 0;
    color: var(--csMuted);
    font-family: var(--csFontPrimary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.csStats__headline {
    margin: 6px 0;
    color: var(--csText);
    font-family: var(--csFontPrimary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.csStats__headline strong {
    color: var(--csAccentBright);
}

.csStats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
    margin-top: 15px;
    border-radius: 20px;
    border: 1px solid var(--csLabelBorder);
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    box-sizing: border-box;
}

.csStat {
    min-width: 0;
    text-align: center;
}

.csStat__icon {
    width: 41px;
    height: 41px;
    margin-bottom: 7px;
    font-size: 23px;
}

.csStat__value {
    margin: 0 0 5px;
    color: #000;
    font-family: var(--csFontPrimary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.csStat:first-child .csStat__value,
.csStat:nth-child(3) .csStat__value,
.csStat:nth-child(4) .csStat__value {
    font-family: var(--csFontNumber);
}

.csStat__label {
    margin: 0;
    color: var(--csSubtle);
    font-family: var(--csFontPrimary);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.55px;
}

@media (max-width: 374px) {
    .spReviewBadge,
    .spLiveBadge {
        font-size: 12px;
    }

    .csPackage__grid {
        gap: 12px 8px;
    }

    .csTrustPills {
        gap: 8px;
    }

    .csTrustPills__item {
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .csSubmenu__scroller {
        justify-content: center;
        gap: 42px;
        overflow: visible;
        padding-inline: 32px;
    }

    .csHero {
        padding: 54px 32px 25px;
    }

    .csHero__label {
        margin-bottom: 34px;
        padding: 14px 34px;
        font-size: 24px;
    }

    .csHero__title {
        max-width: 860px;
        font-size: 58px;
    }

    .csHero__subtitle {
        max-width: 760px;
        margin-bottom: 38px;
        font-size: 32px;
        line-height: 1.2;
    }

    .spReviewBadge {
        width: min(100%, 420px);
        font-size: 15px;
    }

    .spReviewBadge__stars {
        font-size: 15px;
    }

    .spLiveBadge {
        width: min(100%, 420px);
        font-size: 13px;
    }

    .spLiveBadge__signal {
        width: 14px;
        height: 14px;
    }

    .spLiveBadge__icon {
        width: 36px;
        height: 27px;
        border-width: 3px;
    }

    .spLiveBadge__icon::after {
        bottom: -8px;
        left: 8px;
        width: 10px;
        height: 10px;
        border-width: 3px;
    }

    .csPackage {
        width: min(100%, 620px);
        padding: 30px 34px;
    }

    .csPackage__eyebrow {
        font-size: 24px;
    }

    .csPackage__grid {
        gap: 18px;
    }

    .csPackageOption {
        min-height: 118px;
    }

    .csRegionToggler,
    .pkg__automaticWrapper--csDesign,
    .csPaymentIcons,
    .csTrustPills,
    .csStats {
        width: min(100%, 620px);
    }
}

/* ==========================================================================
   Commercial services responsive overrides
   Load after commercial-services.css.
   ========================================================================== */

@media (max-width: 359px) {
    .csSubmenu__scroller {
        gap: 14px;
        padding: 12px 10px 0;
    }

    .csSubmenu__link {
        padding-bottom: 12px;
        font-size: 13px;
    }

    .csHero {
        padding: 18px 10px 25px;
    }

    .csHero__label {
        min-height: 32px;
        max-width: 100%;
        margin-bottom: 14px;
        padding: 6px 14px;
        font-size: 13px;
    }

    .csHero__labelIcon {
        font-size: 15px;
    }

    .csHero__title {
        max-width: 310px;
        font-size: 23px;
        line-height: 1.13;
    }

    .csHero__subtitle {
        max-width: 300px;
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.18;
    }

    .csHero__proof {
        gap: 8px;
        margin-bottom: 14px;
    }

    .spReviewBadge,
    .spLiveBadge {
        width: 100%;
        min-height: 34px;
        padding: 7px 9px;
        /* font-size: 11px; */
    }

    /* .spReviewBadge {
        gap: 5px;
    } */

    .spReviewBadge__stars {
        font-size: 10px;
        letter-spacing: 0;
    }

    .spLiveBadge {
        gap: 7px;
    }

    .spLiveBadge__signal {
        width: 7px;
        height: 7px;
        box-shadow: 0 0 0 4px rgb(233 32 100 / 0.1);
    }

    .spLiveBadge__icon {
        width: 17px;
        height: 13px;
    }

    .csPackage {
        width: 100%;
        padding: 16px 10px 18px;
    }

    .csPackage__eyebrow {
        margin-bottom: 14px;
        font-size: 15px;
        letter-spacing: 1.7px;
    }

    .csPackage__grid {
        gap: 10px 7px;
    }

    .csPackageOption {
        min-height: 86px;
        padding: 10px 3px 8px;
    }

    .csPackageOption__amount {
        font-size: 18px;
    }

    .csPackageOption__type,
    .csPackageOption__price {
        font-size: 12px;
    }

    .csPackageOption__price {
        width: 44px;
        padding-top: 7px;
    }

    .csPackage__selected {
        font-size: 17px;
    }

    .csPackage__selected strong {
        font-size: 20px;
    }

    .csPackage__feature {
        grid-template-columns: 20px 1fr;
        gap: 8px;
        font-size: 11px;
    }

    .csPackage__check {
        width: 20px;
        height: 19px;
    }

    .csPackage__total strong {
        font-size: 22px;
    }

    .csPackage__cta {
        min-height: 48px;
        font-size: 15px;
    }

    .csTrustPills {
        gap: 7px;
    }

    .csTrustPills__item {
        min-height: 30px;
        /* padding: 5px 8px; */
        font-size: 12px;
    }

    .csStats__headline,
    .csStat__value {
        font-size: 14px;
    }
}

@media (min-width: 480px) {
    .csHero {
        padding: 24px 16px 25px;
    }

    .csHero__label {
        margin-bottom: 18px;
    }

    .csHero__title {
        max-width: 390px;
        font-size: 28px;
    }

    .csHero__subtitle {
        max-width: 380px;
        margin-bottom: 18px;
        font-size: 17px;
        line-height: 1.17;
    }

    .spReviewBadge {
        width: min(100%, 400px);
        font-size: 14px;
    }

    .spLiveBadge {
        width: min(100%, 370px);
        font-size: 13px;
    }

    .csPackage {
        width: min(100%, 410px);
        padding: 20px 18px 22px;
    }

    .csRegionToggler,
    .pkg__automaticWrapper--csDesign,
    .csPaymentIcons,
    .csTrustPills,
    .csStats {
        width: min(100%, 410px);
    }
}

@media (min-width: 640px) {
    .csSubmenu__scroller {
        gap: 26px;
        padding: 14px 22px 0;
    }

    .csSubmenu__link {
        padding-bottom: 14px;
        font-size: 15px;
    }

    .csHero {
        padding: 30px 22px 25px;
    }

    .csHero::before {
        background-size: 1180px auto;
    }

    .csHero__inner {
        max-width: 620px;
    }

    .csHero__label {
        min-height: 34px;
        margin-bottom: 20px;
        padding: 7px 22px;
        font-size: 15px;
    }

    .csHero__title {
        max-width: 500px;
        font-size: 30px;
        line-height: 1.12;
    }

    .csHero__subtitle {
        max-width: 480px;
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.2;
    }

    .spReviewBadge {
        width: min(100%, 400px);
        min-height: 38px;
        gap: 7px;
        padding: 8px 14px;
        font-size: 14px;
    }

    .spReviewBadge__stars {
        font-size: 14px;
    }

    .spLiveBadge {
        width: min(100%, 370px);
        min-height: 36px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .csPackage {
        width: min(100%, 470px);
        padding: 22px 22px 26px;
    }

    .csPackage__grid {
        gap: 14px 16px;
    }

    .csRegionToggler,
    .pkg__automaticWrapper--csDesign,
    .csPaymentIcons,
    .csTrustPills,
    .csStats {
        width: min(100%, 470px);
    }
}

@media (min-width: 768px) {
    .csSubmenu__scroller {
        justify-content: center;
        gap: 34px;
        overflow: visible;
        padding: 15px 28px 0;
    }

    .csSubmenu__link {
        padding-bottom: 15px;
        font-size: 15px;
    }

    .csHero {
        padding: 36px 28px 25px;
    }

    .csHero::before {
        background-size: 1320px auto;
    }

    .csHero__inner {
        max-width: 680px;
    }

    .csHero__label {
        min-height: 36px;
        margin-bottom: 22px;
        padding: 8px 24px;
        font-size: 15px;
    }

    .csHero__labelIcon {
        font-size: 17px;
    }

    .csHero__title {
        max-width: 560px;
        font-size: 31px;
        line-height: 1.12;
    }

    .csHero__subtitle {
        max-width: 500px;
        margin-bottom: 22px;
        font-size: 17px;
        line-height: 1.22;
    }

    .csHero__proof {
        gap: 9px;
        margin-bottom: 18px;
    }

    .spReviewBadge {
        width: min(100%, 420px);
        min-height: 38px;
        gap: 7px;
        padding: 8px 15px;
        font-size: 15px;
    }

    .spReviewBadge__stars {
        font-size: 15px;
    }

    .spLiveBadge {
        width: min(100%, 370px);
        min-height: 36px;
        gap: 8px;
        padding: 8px 15px;
        font-size: 14px;
    }

    .spLiveBadge__signal {
        width: 8px;
        height: 8px;
    }

    .spLiveBadge__icon {
        width: 20px;
        height: 15px;
        border-width: 2px;
    }

    .spLiveBadge__icon::after {
        bottom: -5px;
        left: 4px;
        width: 6px;
        height: 6px;
        border-width: 2px;
    }

    .csPackage {
        width: min(100%, 510px);
        padding: 24px 26px 28px;
    }

    .csPackage__eyebrow {
        font-size: 18px;
    }

    .csPackageOption {
        min-height: 100px;
    }

    .csRegionToggler,
    .pkg__automaticWrapper--csDesign,
    .csPaymentIcons,
    .csTrustPills,
    .csStats {
        width: min(100%, 510px);
    }
}

@media (min-width: 1024px) {
    .csSubmenu__scroller {
        gap: 42px;
    }

    .csHero {
        padding: 42px 34px 25px;
    }

    .csHero::before {
        background-size: 1500px auto;
    }

    .csHero__inner {
        max-width: 760px;
    }

    .csHero__label {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .csHero__title {
        max-width: 620px;
        font-size: 33px;
    }

    .csHero__subtitle {
        max-width: 560px;
        font-size: 18px;
    }

    .spReviewBadge {
        width: min(100%, 420px);
        min-height: 39px;
        font-size: 15px;
    }

    .spLiveBadge {
        width: min(100%, 370px);
        min-height: 37px;
        font-size: 14px;
    }

    .csPackage {
        width: min(100%, 600px);
        padding: 28px 30px 32px;
    }

    .csPackage__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: center;
        gap: 16px 22px;
    }

    .csPackageOption {
        min-height: 112px;
    }

    .csRegionToggler {
        width: min(100%, 600px);
        padding: 18px 18px 14px;
    }

    .csRegionToggler__title {
        font-size: 15px;
        letter-spacing: 1.4px;
    }

    .csRegionToggler__grid {
        gap: 8px;
        padding: 12px 10px;
    }

    .csRegionToggler__item {
        gap: 7px;
        padding: 12px 6px 11px;
    }

    .csRegionToggler__flag {
        width: 30px;
        height: 22px;
    }

    .csRegionToggler__label {
        font-size: 15px;
    }

    .csRegionToggler__status {
        margin-top: 12px;
        font-size: 15px;
    }

    .pkg__automaticWrapper--csDesign {
        width: min(100%, 600px);
        padding: 28px 30px 32px;
    }

    .pkg__packageSectionTitle {
        margin-bottom: 20px;
        font-size: 20px;
        letter-spacing: 2.4px;
    }

    .pkg__automaticWrapper--csDesign .pkg__packagesContainer {
        gap: 16px 22px;
        margin-bottom: 16px;
    }

    .pkg__automaticWrapper--csDesign .pkg__packageItem {
        min-height: 112px;
        padding: 14px 6px 12px;
        gap: 4px;
    }

    .pkg__automaticWrapper--csDesign .pkg__package_item_size {
        font-size: 15px;
    }

    .pkg__automaticWrapper--csDesign .pkg__packageItem > .pkg__package_item_size:first-of-type {
        font-size: 26px;
    }

    .pkg__automaticWrapper--csDesign .pkg__package_item_size_activity {
        font-size: 15px;
    }

    .pkg__automaticWrapper--csDesign .pkg__packagePrice,
    .pkg__automaticWrapper--csDesign .pkg__bigPricePackage {
        font-size: 17px;
    }

    .pkg__automaticWrapper--csDesign .pkg__packagePriceCurPackage {
        font-size: 15px;
    }

    .pkg__selectedSummaryTitle {
        font-size: 22px;
    }

    .pkg__selectedSummaryTitle strong {
        font-size: 28px;
    }

    .pkg__selectedBenefitsItem {
        font-size: 15px;
        letter-spacing: 0.45px;
    }

    .pkg__selectedTotal {
        font-size: 18px;
    }

    .pkg__selectedTotal strong {
        font-size: 28px;
    }

    .pkg__automaticWrapper--csDesign .pkg__automatic_submitBtn {
        width: min(100%, 280px);
        min-height: 60px;
        font-size: 20px;
    }

    .pkg__automaticWrapper--csDesign .pkg__packageItemLabel {
        min-width: 80px;
        min-height: 17px;
        font-size: 9px;
    }

    .csPaymentIcons {
        width: min(100%, 600px);
    }

    .csTrustPills {
        width: min(100%, 720px);
        grid-template-columns: repeat(4, max-content);
        justify-content: center;
        gap: 10px 12px;
        padding: 14px 16px;
    }

    .csTrustPills__item {
        min-height: 42px;
        min-width: 0;
        padding: 0 14px;
        gap: 8px;
        font-size: 15px;
    }

    .csTrustPills__itemIcon {
        width: 15px;
        height: 15px;
    }

    .csStats {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .csStats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        margin-top: 10px;
    }

    .csStat {
        min-width: 0;
    }

    .csStat__value,
    .csStat__label {
        text-align: center;
    }

    .csStat__value,
    .csStat__label {
        text-align: center;
    }

    .csStats__since {
        width: min(100%, 520px);
        margin-inline: auto;
        grid-template-columns: 55px minmax(0, max-content);
        justify-content: center;
        text-align: left;
    }
}

@media (min-width: 1280px) {
    .csHero {
        padding: 48px 40px 25px;
    }

    .csHero::before {
        background-size: 1680px auto;
    }

    .csHero__inner {
        max-width: 820px;
    }

    .csHero__title {
        max-width: 660px;
        font-size: 35px;
    }

    .csHero__subtitle {
        max-width: 590px;
        font-size: 18px;
    }

    .spReviewBadge {
        width: min(100%, 420px);
        font-size: 15px;
    }

    .spLiveBadge {
        width: min(100%, 370px);
        font-size: 14px;
    }

    .csPackage {
        width: min(100%, 600px);
    }

    .csPackage__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 22px;
    }

    .csRegionToggler,
    .pkg__automaticWrapper--csDesign,
    .csPaymentIcons {
        width: min(100%, 600px);
    }

    .csTrustPills {
        width: min(100%, 720px);
    }

    .csStats {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .csStats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        margin-top: 10px;
    }

    .csStat {
        min-width: 0;
    }

    .csStat__value,
    .csStat__label {
        text-align: center;
    }

    .csStat__value,
    .csStat__label {
        text-align: center;
    }

    .csStats__since {
        width: min(100%, 520px);
        margin-inline: auto;
        grid-template-columns: 55px minmax(0, max-content);
        justify-content: center;
        text-align: left;
    }
}

@media (min-width: 1536px) {
    .csHero {
        padding-top: 54px;
        padding-bottom: 25px;
    }

    .csHero::before {
        background-size: 1840px auto;
    }

    .csHero__inner {
        max-width: 880px;
    }

    .csHero__label {
        font-size: 16px;
    }

    .csHero__title {
        max-width: 700px;
        font-size: 37px;
    }

    .csHero__subtitle {
        max-width: 620px;
        font-size: 19px;
    }

    .spReviewBadge {
        width: min(100%, 420px);
        min-height: 40px;
        font-size: 15px;
    }

    .spLiveBadge {
        width: min(100%, 370px);
        min-height: 38px;
        font-size: 14px;
    }

    .csPackage {
        width: min(100%, 600px);
    }

    .csPackage__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .csRegionToggler,
    .pkg__automaticWrapper--csDesign,
    .csPaymentIcons {
        width: min(100%, 600px);
    }

    .csTrustPills {
        width: min(100%, 720px);
    }

    .csStats {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .csStats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
        margin-top: 10px;
    }

    .csStat {
        min-width: 0;
    }

    .csStat__value,
    .csStat__label {
        text-align: center;
    }

    .csStat__value,
    .csStat__label {
        text-align: center;
    }

    .csStats__since {
        width: min(100%, 520px);
        margin-inline: auto;
        grid-template-columns: 55px minmax(0, max-content);
        justify-content: center;
        text-align: left;
    }
}

@media (min-width: 1920px) {
    .csHero {
        padding-top: 60px;
        padding-bottom: 84px;
    }

    .csHero::before {
        background-size: 1972px auto;
    }

    .csHero__inner {
        max-width: 920px;
    }

    .csHero__title {
        max-width: 720px;
        font-size: 39px;
    }

    .csHero__subtitle {
        max-width: 640px;
        font-size: 19px;
    }

    .csPackage {
        width: min(100%, 600px);
    }

    .csRegionToggler,
    .pkg__automaticWrapper--csDesign,
    .csPaymentIcons {
        width: min(100%, 600px);
    }

    .csTrustPills {
        width: min(100%, 720px);
    }

    .csStat__value,
    .csStat__label {
        text-align: center;
    }

    .csStats__since {
        width: min(100%, 520px);
        margin-inline: auto;
        grid-template-columns: 55px minmax(0, max-content);
        justify-content: center;
        text-align: left;
    }
}
/* END ADAPTIVE  */

/* css logic for popular and bestseller packages */

/* NEW LOGIC CS: explicit POPULAR/BESTSELLER labels + final gradient polish */
.pkg__automaticWrapper--csDesign .pkg__packageItem {
    isolation: isolate;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem:hover {
    border-color: transparent !important;
    background: linear-gradient(180deg, #ff4fa2 0%, #f12d86 46%, #d90f62 100%) !important;
    color: #fff !important;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem--selected,
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected:hover {
    border-color: transparent !important;
    background: linear-gradient(180deg, #ff4fa2 0%, #f12d86 46%, #d90f62 100%) !important;
    color: #fff !important;
    box-shadow:
        0 10px 20px rgb(233 32 100 / 0.28),
        inset 0 1px 0 rgb(255 255 255 / 0.32);
    transform: translateY(-3px) scale(1.03);
}
/* 
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected .pkg__package_item_size,
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected .pkg__package_item_size_activity,
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected .pkg__packagePrice,
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected .pkg__packagePriceCurPackage,
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected .pkg__bigPricePackage {
  color: #fff !important;
} */

.pkg__automaticWrapper--csDesign .pkg__packageItem:hover .pkg_line,
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected .pkg_line {
    background: rgb(255 255 255 / 0.72);
    opacity: 1;
}

.pkg__automaticWrapper--csDesign .pkg__packageItemLabel {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 4;
    min-width: 72px;
    min-height: 15px;
    display: inline-grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-family: Raleway, sans-serif;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.96px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem--bestseller .pkg__packageItemLabel--bestseller {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
}

.pkg__automaticWrapper--csDesign .pkg__packageItemLabel--popular {
    background: linear-gradient(90deg, #ffbf4b 0%, #fb8e43 48%, #ff6f9f 100%);
    animation: csPackagePopularGlow 2.4s ease-in-out infinite;
}

.pkg__automaticWrapper--csDesign .pkg__packageItemLabel--bestseller {
    background: linear-gradient(90deg, #f01173 0%, #b44cff 52%, #11aabc 100%);
    animation: csPackageBestSellerPop 1.8s ease-in-out infinite;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem--bestseller {
    position: relative;
    overflow: visible;
    border: 2px solid transparent !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(from var(--csPackageBorderAngle, 0deg), #11aabc, #6d41d6, #f01173, #fb8e43, #11aabc) border-box !important;
    animation: csPackageBestSellerBorder 2.2s linear infinite;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem--bestseller:hover {
    background:
        linear-gradient(180deg, #ff4fa2 0%, #f12d86 46%, #d90f62 100%) padding-box,
        conic-gradient(from var(--csPackageBorderAngle, 0deg), #11aabc, #6d41d6, #f01173, #fb8e43, #11aabc) border-box !important;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem--bestseller::before,
.pkg__automaticWrapper--csDesign .pkg__packageItem--bestseller::after {
    content: none;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem--bestseller > * {
    position: relative;
    z-index: 1;
}

.pkg__automaticWrapper--csDesign .pkg__packageItem--selected.pkg__packageItem--bestseller,
.pkg__automaticWrapper--csDesign .pkg__packageItem--selected.pkg__packageItem--bestseller:hover {
    background:
        linear-gradient(180deg, #ff4fa2 0%, #f12d86 46%, #d90f62 100%) padding-box,
        conic-gradient(from var(--csPackageBorderAngle, 0deg), #11aabc, #6d41d6, #f01173, #fb8e43, #11aabc) border-box !important;
}

.pkg__automaticWrapper--csDesign .pkg__automatic_submitBtn,
.pkg__automaticWrapper--csDesign .pkg__automatic_submitBtn:not(.disabled),
.pkg__automaticWrapper--csDesign .pkg__automatic_submitBtn:not(.disabled):hover {
    /* background: linear-gradient(91deg, #F44388 0.13%, #D81B60 100%); */
    color: #fff;
    box-shadow:
        0 10px 20px rgb(194 24 91 / 0.28),
        inset 0 1px 0 rgb(255 255 255 / 0.28);
}

.pkg__automaticWrapper--csDesign .pkg__automatic_submitBtn:not(.disabled):hover {
    box-shadow:
        0 13px 24px rgb(194 24 91 / 0.34),
        inset 0 1px 0 rgb(255 255 255 / 0.28);
}

.pkg__automaticWrapper--csDesign .pkg__automatic_submitBtn.disabled {
    background: #d9d9d9 !important;
    color: #fff !important;
    box-shadow: 1px 1px 10px 0 rgb(87 87 87 / 0.15);
}

@property --csPackageBorderAngle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@keyframes csPackagePopularGlow {
    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.16);
    }
}

@keyframes csPackageBestSellerBorder {
    to {
        --csPackageBorderAngle: 360deg;
    }
}

@keyframes csPackageBestSellerPop {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }

    45% {
        transform: translate(-50%, -50%) scale(1.12);
        filter: brightness(1.18);
    }

    60% {
        transform: translate(-50%, -50%) scale(0.98);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pkg__automaticWrapper--csDesign .pkg__packageItemLabel--popular,
    .pkg__automaticWrapper--csDesign .pkg__packageItemLabel--bestseller,
    .pkg__automaticWrapper--csDesign .pkg__packageItem--bestseller {
        animation: none;
    }
}
/* END OF NEW LOGIC CS */

/*
  Page hero palettes — same .csHero::before recipe as likes,
  only --csBg* colors change. Set on the hero so ::before inherits.
  Roles mirror likes: A=bright accent, B=soft wash, C=vivid punch,
  D=secondary accent, E=light accent, Edge=soft blend.
*/
.csHero.cp_comments_hero_bg {
    --csBgBase: #f6fbf9;
    --csBgEdge: 236 248 244;
    --csBgA: 64 214 196;
    --csBgB: 244 170 208;
    --csBgC: 194 24 91;
    --csBgD: 17 170 188;
    --csBgE: 186 245 220;
    --csLabelBorder: rgb(111 209 197 / 0.55);
    --csLabelBg: rgb(255 255 255 / 0.76);
    --csLabelShadow: rgb(64 214 196 / 0.16);
    background-color: var(--csBgBase);
}

.csHero.cp_followers_hero_bg {
    --csBgBase: #f7f6fc;
    --csBgEdge: 232 228 248;
    --csBgA: 170 150 245;
    --csBgB: 190 175 240;
    --csBgC: 109 65 214;
    --csBgD: 130 160 240;
    --csBgE: 220 210 255;
    --csLabelBorder: rgb(163 145 236 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.74);
    --csLabelShadow: rgb(109 65 214 / 0.14);
    background-color: var(--csBgBase);
}

.csHero.cp_tiktok_likes_hero_bg {
    --csBgBase: #f3fafc;
    --csBgEdge: 226 242 248;
    --csBgA: 56 200 230;
    --csBgB: 140 210 235;
    --csBgC: 0 140 190;
    --csBgD: 17 170 188;
    --csBgE: 186 240 245;
    --csLabelBorder: rgb(103 197 225 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.74);
    --csLabelShadow: rgb(0 140 190 / 0.14);
    background-color: var(--csBgBase);
}

.csHero.cp_tiktok_comments_hero_bg {
    --csBgBase: #f6f7fc;
    --csBgEdge: 232 236 248;
    --csBgA: 45 212 191;
    --csBgB: 196 170 235;
    --csBgC: 109 65 214;
    --csBgD: 56 160 230;
    --csBgE: 210 220 250;
    --csLabelBorder: rgb(162 155 234 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.75);
    --csLabelShadow: rgb(109 65 214 / 0.14);
    background-color: var(--csBgBase);
}

.csHero.cp_tiktok_followers_hero_bg {
    --csBgBase: #f3faf7;
    --csBgEdge: 224 242 236;
    --csBgA: 45 212 191;
    --csBgB: 120 210 220;
    --csBgC: 13 148 136;
    --csBgD: 8 170 200;
    --csBgE: 190 240 230;
    --csLabelBorder: rgb(98 199 187 / 0.48);
    --csLabelBg: rgb(255 255 255 / 0.74);
    --csLabelShadow: rgb(13 148 136 / 0.14);
    background-color: var(--csBgBase);
}

/* USA Likes — soft sky blue (lighter; distinct from pink likes) */
.csCommercialRoot:has(.cp_usa_likes_hero_bg),
.csHero.cp_usa_likes_hero_bg {
    --csBgBase: #f4f8fd;
    --csBgEdge: 220 232 248;
    --csBgA: 100 160 235;
    --csBgB: 175 205 245;
    --csBgC: 55 110 200;
    --csBgD: 80 140 225;
    --csBgE: 195 220 250;
    --csLabelBorder: rgb(120 165 230 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.8);
    --csLabelShadow: rgb(55 110 200 / 0.12);
}

.csHero.cp_usa_likes_hero_bg {
    background-color: var(--csBgBase);
}

.csMain:has(.cp_comments_hero_bg),
.csMain:has(.cp_followers_hero_bg),
.csMain:has(.cp_tiktok_likes_hero_bg),
.csMain:has(.cp_tiktok_comments_hero_bg),
.csMain:has(.cp_tiktok_followers_hero_bg),
.csMain:has(.cp_usa_likes_hero_bg),
.csMain:has(.cp_usa_black_likes_hero_bg),
.csMain:has(.cp_german_likes_hero_bg),
.csMain:has(.cp_french_likes_hero_bg),
.csMain:has(.cp_israeli_likes_hero_bg) {
    background: var(--csBgBase);
}

.csMain:has(.cp_comments_hero_bg) {
    --csBgBase: #f6fbf9;
}

.csMain:has(.cp_followers_hero_bg) {
    --csBgBase: #f7f6fc;
}

.csMain:has(.cp_tiktok_likes_hero_bg) {
    --csBgBase: #f3fafc;
}

.csMain:has(.cp_tiktok_comments_hero_bg) {
    --csBgBase: #f6f7fc;
}

.csMain:has(.cp_tiktok_followers_hero_bg) {
    --csBgBase: #f3faf7;
}

.csMain:has(.cp_usa_likes_hero_bg) {
    --csBgBase: #f4f8fd;
}

/* USA Black Likes — soft terracotta / cocoa peach */
.csCommercialRoot:has(.cp_usa_black_likes_hero_bg),
.csHero.cp_usa_black_likes_hero_bg {
    --csBgBase: #faf3ee;
    --csBgEdge: 242 220 208;
    --csBgA: 220 140 110;
    --csBgB: 235 185 160;
    --csBgC: 170 90 65;
    --csBgD: 200 120 90;
    --csBgE: 245 210 190;
    --csLabelBorder: rgb(210 145 115 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.8);
    --csLabelShadow: rgb(170 90 65 / 0.12);
}

.csHero.cp_usa_black_likes_hero_bg {
    background-color: var(--csBgBase);
}

.csMain:has(.cp_usa_black_likes_hero_bg) {
    --csBgBase: #faf3ee;
}

/* German Likes — soft butter yellow / pale gold */
.csCommercialRoot:has(.cp_german_likes_hero_bg),
.csHero.cp_german_likes_hero_bg {
    --csBgBase: #faf9ef;
    --csBgEdge: 240 235 200;
    --csBgA: 235 200 60;
    --csBgB: 240 220 130;
    --csBgC: 200 160 30;
    --csBgD: 220 185 50;
    --csBgE: 245 235 170;
    --csLabelBorder: rgb(220 190 70 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.8);
    --csLabelShadow: rgb(200 160 30 / 0.12);
}

.csHero.cp_german_likes_hero_bg {
    background-color: var(--csBgBase);
}

.csMain:has(.cp_german_likes_hero_bg) {
    --csBgBase: #faf9ef;
}

/* French Likes — soft blush lavender */
.csCommercialRoot:has(.cp_french_likes_hero_bg),
.csHero.cp_french_likes_hero_bg {
    --csBgBase: #faf5f9;
    --csBgEdge: 240 225 235;
    --csBgA: 210 150 200;
    --csBgB: 230 190 220;
    --csBgC: 160 90 170;
    --csBgD: 190 130 190;
    --csBgE: 240 215 235;
    --csLabelBorder: rgb(200 150 195 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.8);
    --csLabelShadow: rgb(160 90 170 / 0.12);
}

.csHero.cp_french_likes_hero_bg {
    background-color: var(--csBgBase);
}

.csMain:has(.cp_french_likes_hero_bg) {
    --csBgBase: #faf5f9;
}

/* Israeli Likes — soft mint aqua */
.csCommercialRoot:has(.cp_israeli_likes_hero_bg),
.csHero.cp_israeli_likes_hero_bg {
    --csBgBase: #f3faf8;
    --csBgEdge: 220 240 235;
    --csBgA: 80 190 175;
    --csBgB: 150 215 205;
    --csBgC: 30 140 130;
    --csBgD: 60 170 160;
    --csBgE: 190 235 225;
    --csLabelBorder: rgb(100 185 170 / 0.5);
    --csLabelBg: rgb(255 255 255 / 0.8);
    --csLabelShadow: rgb(30 140 130 / 0.12);
}

.csHero.cp_israeli_likes_hero_bg {
    background-color: var(--csBgBase);
}

.csMain:has(.cp_israeli_likes_hero_bg) {
    --csBgBase: #f3faf8;
}
