.t4m-vip-page {
    --vip-page-bg: #09090d;
    --vip-page-bg-soft: #111118;
    --vip-page-card: rgba(255,255,255,.055);
    --vip-page-border: rgba(255,255,255,.12);
    --vip-page-text: #fff;
    --vip-page-muted: rgba(255,255,255,.68);
    --vip-page-pink: #f04fc5;
    --vip-page-purple: #8f6cff;

    background:
        radial-gradient(circle at 75% 5%, rgba(143,108,255,.16), transparent 30%),
        radial-gradient(circle at 18% 12%, rgba(240,79,197,.12), transparent 28%),
        var(--vip-page-bg);

    color: var(--vip-page-text);
}

.t4m-vip-page *,
.t4m-vip-page *::before,
.t4m-vip-page *::after {
    box-sizing: border-box;
}

.t4m-vip-page__shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.t4m-vip-page__hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    text-align: center;
}

.t4m-vip-page__hero .t4m-vip-page__shell {
    position: relative;
    z-index: 2;
}

.t4m-vip-page__glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .2;
    pointer-events: none;
}

.t4m-vip-page__glow--one {
    top: -250px;
    left: -180px;
    background: var(--vip-page-pink);
}

.t4m-vip-page__glow--two {
    right: -180px;
    bottom: -260px;
    background: var(--vip-page-purple);
}

.t4m-vip-page__back {
    display: inline-flex;
    margin-bottom: 58px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
}

.t4m-vip-page__back:hover {
    color: #fff;
}

.t4m-vip-page__badge {
    display: table;
    margin: 0 auto 26px;
    padding: 9px 16px;
    border: 1px solid rgba(240,79,197,.5);
    border-radius: 999px;
    background: rgba(240,79,197,.08);
    color: #ff8bdd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
}

.t4m-vip-page__kicker,
.t4m-vip-page__eyebrow {
    color: #b9a7ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.t4m-vip-page__title {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(52px, 7vw, 92px);
    line-height: .98;
    letter-spacing: -.055em;
}

.t4m-vip-page__lead {
    max-width: 710px;
    margin: 28px auto 0;
    color: var(--vip-page-muted);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.t4m-vip-page__price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 7px;
    margin-top: 42px;
}

.t4m-vip-page__currency {
    font-size: 31px;
    font-weight: 700;
}

.t4m-vip-page__price strong {
    font-size: clamp(58px, 8vw, 88px);
    line-height: 1;
    letter-spacing: -.055em;
}

.t4m-vip-page__price > span:last-child {
    color: var(--vip-page-muted);
    font-size: 17px;
}

.t4m-vip-page__availability {
    margin-top: 18px;
    color: rgba(255,255,255,.52);
    font-size: 14px;
}

.t4m-vip-page__section {
    padding: 105px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.t4m-vip-page__section--dark {
    background: rgba(255,255,255,.018);
}

.t4m-vip-page__section-heading {
    max-width: 670px;
    margin-bottom: 50px;
}

.t4m-vip-page__section-heading h2 {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.t4m-vip-page__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.t4m-vip-page__card {
    min-height: 290px;
    padding: 32px;
    border: 1px solid var(--vip-page-border);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.025)
        );
}

.t4m-vip-page__card-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 42px;
    border-radius: 14px;
    background: rgba(143,108,255,.12);
    color: #cabfff;
    font-size: 22px;
}

.t4m-vip-page__card h3,
.t4m-vip-page__step h3 {
    color: #fff;
    font-size: 22px;
}

.t4m-vip-page__card p,
.t4m-vip-page__step p {
    margin-top: 13px;
    color: var(--vip-page-muted);
    font-size: 16px;
    line-height: 1.65;
}

.t4m-vip-page__steps {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--vip-page-border);
    border-radius: 22px;
    background: var(--vip-page-border);
}

.t4m-vip-page__step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    padding: 34px;
    background: var(--vip-page-bg-soft);
}

.t4m-vip-page__step > span {
    color: #b9a7ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
}

.t4m-vip-page__join {
    padding: 105px 0 120px;
}

.t4m-vip-page__join-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(185,167,255,.25);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(143,108,255,.18), transparent 42%),
        rgba(255,255,255,.045);
    box-shadow:
        0 35px 90px rgba(0,0,0,.24);
}

.t4m-vip-page__status {
    color: #b9a7ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.t4m-vip-page__join-card h2 {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(34px, 5vw, 52px);
}

.t4m-vip-page__countdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin: 38px auto;
}

.t4m-vip-page__countdown > div {
    min-width: 76px;
}

.t4m-vip-page__countdown strong {
    display: block;
    color: #fff;
    font-variant-numeric: tabular-nums;
    font-size: 42px;
    line-height: 1;
}

.t4m-vip-page__countdown span:not(.t4m-vip-page__colon) {
    display: block;
    margin-top: 9px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.t4m-vip-page__colon {
    margin-top: 7px;
    color: rgba(255,255,255,.28);
    font-size: 28px;
}

.t4m-vip-page__join-price {
    margin: 4px 0 25px;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.t4m-vip-page__join-price small {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.5);
    font-size: 13px;
    font-weight: 400;
}

.t4m-vip-page__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 310px;
    min-height: 58px;
    padding: 15px 28px;
    border-radius: 999px;
    background:
        linear-gradient(
            100deg,
            var(--vip-page-purple),
            var(--vip-page-pink)
        );
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow:
        0 15px 40px rgba(143,108,255,.22);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        opacity .18s ease;
}

.t4m-vip-page__button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        0 20px 50px rgba(143,108,255,.32);
}

.t4m-vip-page__button[aria-disabled="true"] {
    cursor: default;
    opacity: .42;
    box-shadow: none;
    transform: none;
}

.t4m-vip-page__fineprint {
    margin-top: 19px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.t4m-vip-page__places {
    margin-top: 7px;
    color: rgba(255,255,255,.38);
    font-size: 12px;
}

.t4m-vip-page__join-card.is-open {
    border-color: rgba(240,79,197,.38);
}

@media (max-width: 850px) {
    .t4m-vip-page__cards {
        grid-template-columns: 1fr;
    }

    .t4m-vip-page__card {
        min-height: 0;
    }

    .t4m-vip-page__card-icon {
        margin-bottom: 28px;
    }
}

@media (max-width: 600px) {
    .t4m-vip-page__shell {
        width: min(100% - 32px, 1180px);
    }

    .t4m-vip-page__hero {
        padding: 55px 0 70px;
    }

    .t4m-vip-page__back {
        margin-bottom: 42px;
    }

    .t4m-vip-page__section {
        padding: 72px 0;
    }

    .t4m-vip-page__join {
        padding: 72px 0 85px;
    }

    .t4m-vip-page__join-card {
        padding: 42px 18px;
        border-radius: 22px;
    }

    .t4m-vip-page__step {
        grid-template-columns: 42px 1fr;
        gap: 12px;
        padding: 26px 20px;
    }

    .t4m-vip-page__countdown {
        gap: 6px;
    }

    .t4m-vip-page__countdown > div {
        min-width: 55px;
    }

    .t4m-vip-page__countdown strong {
        font-size: 31px;
    }

    .t4m-vip-page__colon {
        font-size: 21px;
    }

    .t4m-vip-page__button {
        width: 100%;
        min-width: 0;
    }
}

/* ==========================================================
   Talk4Me VIP — Premium Polish V2
   ========================================================== */

.t4m-vip-page__hero {
    padding-top: 58px;
    padding-bottom: 84px;
}

.t4m-vip-page__back {
    margin-bottom: 38px;
}

.t4m-vip-page__badge {
    margin-bottom: 20px;
}

.t4m-vip-page__lead {
    max-width: 680px;
}

.t4m-vip-page__price {
    margin-top: 34px;
}

.t4m-vip-page__price-note {
    margin: 12px auto 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.5;
}

.t4m-vip-page__availability {
    margin-top: 10px;
}

.t4m-vip-page__card {
    position: relative;
}

.t4m-vip-page__card-label {
    margin: 0 0 8px;
    color: #b9a7ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.t4m-vip-page__card-note {
    margin-top: 16px !important;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.82) !important;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.55 !important;
}

.t4m-vip-page__join-card {
    max-width: 900px;
    padding: 66px 64px;
    border-color: rgba(185,167,255,.34);
    background:
        radial-gradient(circle at 50% -10%, rgba(240,79,197,.19), transparent 38%),
        radial-gradient(circle at 85% 20%, rgba(143,108,255,.15), transparent 34%),
        rgba(255,255,255,.055);
    box-shadow:
        0 38px 100px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.04);
}

.t4m-vip-page__join-limit {
    display: table;
    margin: 0 auto 22px;
    padding: 8px 14px;
    border: 1px solid rgba(240,79,197,.48);
    border-radius: 999px;
    background: rgba(240,79,197,.08);
    color: #ff8bdd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .10em;
}

.t4m-vip-page__join-price {
    margin-top: 6px;
    margin-bottom: 28px;
    font-size: 40px;
}

.t4m-vip-page__join-price small {
    margin-top: 7px;
}

.t4m-vip-page__button {
    min-width: 360px;
    min-height: 62px;
    font-size: 16px;
}

/*
 * Countdown — force normal zero glyphs.
 * Prevent slashed-zero/OpenType zero alternatives.
 */
.t4m-vip-page__countdown strong {
    font-family: Arial, Helvetica, sans-serif;
    font-feature-settings:
        "zero" 0,
        "ss01" 0,
        "ss02" 0,
        "ss03" 0;
    font-variant-numeric: tabular-nums;
    font-variant-alternates: normal;
    font-variant-ligatures: none;
}

@media (max-width: 600px) {
    .t4m-vip-page__hero {
        padding-top: 42px;
        padding-bottom: 62px;
    }

    .t4m-vip-page__back {
        margin-bottom: 30px;
    }

    .t4m-vip-page__join-card {
        padding: 42px 18px;
    }

    .t4m-vip-page__button {
        min-width: 0;
        width: 100%;
    }

    .t4m-vip-page__join-price {
        font-size: 36px;
    }
}

/* VIP price — normal zero glyphs */
.t4m-vip-page__price strong,
.t4m-vip-page__join-price {
    font-family: Arial, Helvetica, sans-serif;
    font-feature-settings:
        "zero" 0,
        "ss01" 0,
        "ss02" 0,
        "ss03" 0;
    font-variant-numeric: tabular-nums;
    font-variant-alternates: normal;
    font-variant-ligatures: none;
}

/* =========================================================
   VIP MEMBERSHIP — SCOPE CLARIFICATION
   ========================================================= */

.t4m-vip-page__scope {
    max-width: 880px;
    margin: 34px auto 0;
    padding: 22px 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    text-align: center;
}

.t4m-vip-page__scope strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
}

.t4m-vip-page__scope p {
    margin: 0;
    opacity: 0.78;
    line-height: 1.65;
    font-size: 14px;
}

@media (max-width: 640px) {
    .t4m-vip-page__scope {
        margin-top: 24px;
        padding: 18px 20px;
        text-align: left;
    }
}

/* =========================================================
   VIP HOW IT WORKS — STEP ICONS
   ========================================================= */

.t4m-vip-page__step-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #b596ff;
    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(142, 92, 255, 0.28),
            rgba(82, 52, 150, 0.16) 65%,
            rgba(34, 28, 58, 0.18) 100%
        );
    border: 1px solid rgba(166, 126, 255, 0.16);
    box-shadow:
        inset 0 0 18px rgba(133, 85, 255, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.18);
}

.t4m-vip-page__step-icon svg {
    width: 29px;
    height: 29px;
    display: block;
}

@media (max-width: 640px) {
    .t4m-vip-page__step-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 14px;
    }

    .t4m-vip-page__step-icon svg {
        width: 25px;
        height: 25px;
    }
}

/* =========================================================
   VIP BENEFIT CARDS — LARGER INNER ICONS
   Keep icon boxes unchanged
   ========================================================= */

/* Envelope — PRIORITY */
.t4m-vip-page__card:nth-child(1) .t4m-vip-page__card-icon {
    font-size: 30px;
    line-height: 1;
}

/* Infinity — 12-MONTH ACCESS */
.t4m-vip-page__card:nth-child(2) .t4m-vip-page__card-icon {
    font-size: 34px;
    line-height: 1;
}

/* Phone — ON-DEMAND CALLS */
.t4m-vip-page__card:nth-child(3) .t4m-vip-page__card-icon {
    font-size: 29px;
    line-height: 1;
}

/* Prevent inherited sizing from shrinking nested glyphs */
.t4m-vip-page__card-icon > span {
    font-size: inherit;
    line-height: inherit;
    display: block;
}

/* =========================================================
   VIP BENEFIT ICONS — XL INNER GLYPHS
   Boxes remain exactly the same size
   ========================================================= */

.t4m-vip-page__card:nth-child(1) .t4m-vip-page__card-icon {
    font-size: 40px !important;
    line-height: 1 !important;
}

.t4m-vip-page__card:nth-child(2) .t4m-vip-page__card-icon {
    font-size: 48px !important;
    line-height: 1 !important;
}

.t4m-vip-page__card:nth-child(3) .t4m-vip-page__card-icon {
    font-size: 38px !important;
    line-height: 1 !important;
}

.t4m-vip-page__card-icon > span {
    font-size: inherit !important;
    line-height: 1 !important;
}

/* =========================================================
   VIP BENEFIT ICONS — FINAL OPTICAL BALANCE
   Icon containers remain unchanged
   ========================================================= */

/* PRIORITY — envelope */
.t4m-vip-page__card:nth-child(1) .t4m-vip-page__card-icon {
    font-size: 46px !important;
    line-height: 1 !important;
}

/* 12-MONTH ACCESS — infinity */
.t4m-vip-page__card:nth-child(2) .t4m-vip-page__card-icon {
    font-size: 52px !important;
    line-height: 1 !important;
}

/* ON-DEMAND CALLS — telephone
   Smaller because this glyph has much more visual mass */
.t4m-vip-page__card:nth-child(3) .t4m-vip-page__card-icon {
    font-size: 31px !important;
    line-height: 1 !important;
}

.t4m-vip-page__card-icon > span {
    font-size: inherit !important;
    line-height: 1 !important;
}

/* =========================================================
   TALK4ME VIP — PREMIUM POLISH V3
   ========================================================= */


/* ---------------------------------------------------------
   1. STRONGER SECTION RHYTHM
   Give HOW IT WORKS its own subtle atmosphere
   --------------------------------------------------------- */

.t4m-vip-page__section--dark {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 5%,
            rgba(111, 69, 190, 0.10),
            transparent 35%
        ),
        radial-gradient(
            circle at 88% 95%,
            rgba(179, 57, 158, 0.07),
            transparent 32%
        ),
        #0d0c12;
}

.t4m-vip-page__section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-top: 1px solid rgba(255,255,255,0.035);
    border-bottom: 1px solid rgba(255,255,255,0.035);
}

.t4m-vip-page__section--dark > .t4m-vip-page__shell {
    position: relative;
    z-index: 1;
}


/* ---------------------------------------------------------
   2. MEMBERSHIP SCOPE — MORE IMPORTANT VISUALLY
   --------------------------------------------------------- */

.t4m-vip-page__scope {
    position: relative;
    max-width: 900px;
    margin-top: 38px;
    padding: 24px 34px 24px 72px;

    border:
        1px solid rgba(183, 139, 255, 0.24);

    background:
        linear-gradient(
            135deg,
            rgba(120, 78, 188, 0.10),
            rgba(255,255,255,0.025)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 18px 45px rgba(0,0,0,0.16);
}

.t4m-vip-page__scope::before {
    content: "✓";

    position: absolute;
    left: 26px;
    top: 50%;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border-radius: 10px;

    color: #c4a7ff;
    font-size: 16px;
    font-weight: 800;

    background:
        linear-gradient(
            145deg,
            rgba(128, 79, 220, 0.42),
            rgba(74, 45, 126, 0.28)
        );

    border:
        1px solid rgba(184, 145, 255, 0.22);

    box-shadow:
        0 0 22px rgba(132, 81, 221, 0.12);
}

.t4m-vip-page__scope strong {
    color: rgba(255,255,255,0.96);
    font-size: 15px;
}

.t4m-vip-page__scope p {
    color: rgba(255,255,255,0.68);
}


/* ---------------------------------------------------------
   3. HOW IT WORKS ICONS — CONSISTENT WEIGHT
   --------------------------------------------------------- */

.t4m-vip-page__step-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;

    border-radius: 14px;

    color: #bda2ff;

    background:
        radial-gradient(
            circle at 35% 28%,
            rgba(147, 99, 255, 0.30),
            rgba(71, 46, 123, 0.18) 68%
        );

    border:
        1px solid rgba(173, 132, 255, 0.17);

    box-shadow:
        inset 0 0 18px rgba(132, 82, 222, 0.08),
        0 8px 25px rgba(0,0,0,0.16);
}

.t4m-vip-page__step-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 1.9;
}


/* ---------------------------------------------------------
   4. FINAL CONVERSION SECTION
   Reduce empty black space and strengthen conclusion
   --------------------------------------------------------- */

.t4m-vip-page__join {
    padding-top: 76px;
    padding-bottom: 82px;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(113, 69, 184, 0.09),
            transparent 42%
        ),
        #0b0a0e;
}

.t4m-vip-page__join-card {
    max-width: 920px;

    border:
        1px solid rgba(192, 145, 255, 0.24);

    box-shadow:
        0 32px 90px rgba(0,0,0,0.40),
        0 0 70px rgba(105, 56, 176, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.035);
}


/* Make the primary CTA feel more final */
.t4m-vip-page__button {
    min-width: 370px;

    box-shadow:
        0 14px 38px rgba(123, 68, 206, 0.20),
        inset 0 1px 0 rgba(255,255,255,0.16);
}


/* ---------------------------------------------------------
   5. CONVERSION REASSURANCE
   --------------------------------------------------------- */

.t4m-vip-page__reassurance {
    margin:
        15px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 7px;

    color: rgba(255,255,255,0.48);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.015em;
}

.t4m-vip-page__reassurance span {
    color: rgba(193, 151, 255, 0.65);
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 640px) {

    .t4m-vip-page__scope {
        padding:
            58px 20px
            20px 20px;

        text-align: left;
    }

    .t4m-vip-page__scope::before {
        left: 20px;
        top: 18px;
        transform: none;
    }

    .t4m-vip-page__join {
        padding-top: 54px;
        padding-bottom: 58px;
    }

    .t4m-vip-page__button {
        width: 100%;
        min-width: 0;
    }

    .t4m-vip-page__reassurance {
        max-width: 300px;
        gap: 5px;
        line-height: 1.55;
    }
}
