/* ============================================================
   DUBAI WEALTH SECRET QUIZ V5 — VSL-FIRST RESULTS
   ============================================================ */
:root {
    --bg: #08090c;
    --bg2: #0c0d12;
    --card: #101218;
    --card-h: #151722;
    --border: rgba(255, 255, 255, .06);
    --border-g: rgba(212, 175, 55, .12);
    --border-g2: rgba(212, 175, 55, .25);
    --gold: #d4af37;
    --gold-l: #f0d878;
    --gold-glow: rgba(212, 175, 55, .2);
    --gold-dim: rgba(212, 175, 55, .08);
    --green: #22c55e;
    --green-d: #16a34a;
    --green-glow: rgba(34, 197, 94, .25);
    --red: #ef4444;
    --red-bg: rgba(239, 68, 68, .08);
    --red-glow: rgba(239, 68, 68, .15);
    --cta-red: #cc0000;
    --cta-orange: #ff6600;
    --w: #fff;
    --w9: rgba(255, 255, 255, .92);
    --w7: rgba(255, 255, 255, .7);
    --w5: rgba(255, 255, 255, .5);
    --w3: rgba(255, 255, 255, .3);
    --w1: rgba(255, 255, 255, .1);
    --w05: rgba(255, 255, 255, .05);
    --f: 'Inter', -apple-system, system-ui, sans-serif;
    --fd: 'Playfair Display', Georgia, serif;
    --r: 14px;
    --r2: 20px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--w);
    font-family: var(--f);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

#app {
    width: 100%;
    min-height: 100vh
}

.screen {
    display: none;
    width: 100%;
    min-height: 100vh;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.screen.active {
    display: flex
}

.s-results.active {
    display: block
}

.screen.anim {
    animation: sIn .5s ease-out
}

@keyframes sIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

/* BACKGROUNDS */
.s-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0
}

.bg-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(212, 175, 55, .05) 0%, transparent 50%), radial-gradient(ellipse 50% 50% at 80% 100%, rgba(8, 9, 12, 1) 0%, transparent 50%), linear-gradient(180deg, var(--bg2), var(--bg))
}

.bg-noise {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(212, 175, 55, .1), transparent 70%);
    animation: orbF 10s ease-in-out infinite alternate
}

.orb-2 {
    width: 350px;
    height: 350px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 175, 55, .06), transparent 70%);
    animation: orbF 14s ease-in-out infinite alternate-reverse
}

@keyframes orbF {
    from {
        transform: translate(0, 0) scale(1)
    }

    to {
        transform: translate(15px, -15px) scale(1.08)
    }
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: pUp linear infinite
}

@keyframes pUp {
    0% {
        opacity: 0;
        transform: translateY(0) scale(.5)
    }

    12% {
        opacity: .6
    }

    88% {
        opacity: .15
    }

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

.s-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    width: 100%;
    padding: 40px 22px;
    text-align: center
}

.hl-gold {
    color: var(--gold)
}

strong {
    color: var(--w9);
    font-weight: 600
}

/* LANDING */
.topline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: var(--w05);
    border: 1px solid var(--w1);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--w3);
    margin-bottom: 28px
}

.topline-dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotP 2s infinite
}

@keyframes dotP {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--gold-glow)
    }

    50% {
        box-shadow: 0 0 0 5px transparent
    }
}

h1 {
    font-family: var(--f);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -.03em
}

.hero-sub {
    font-size: 14px;
    color: var(--w5);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto
}

.hero-sub strong {
    color: var(--w)
}

.social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    margin-bottom: 28px
}

.social-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2
}

.social-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--w3);
    text-transform: uppercase;
    letter-spacing: 1px
}

.social-sep {
    width: 1px;
    height: 28px;
    background: var(--w1)
}

/* BUTTONS */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 420px;
    padding: 17px 24px;
    background: linear-gradient(135deg, var(--green), var(--green-d));
    color: var(--w);
    border: none;
    border-radius: var(--r);
    font-family: var(--f);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px var(--green-glow);
    margin-bottom: 18px
}

.btn-main svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .2s
}

.btn-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    animation: shimmer 3s infinite
}

@keyframes shimmer {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--green-glow)
}

.btn-main:hover svg {
    transform: translateX(4px)
}

.btn-main:active {
    transform: scale(.98)
}

.btn-cta {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 14px;
    padding: 20px 24px;
    background: linear-gradient(180deg, #e63600 0%, #ff8c00 100%);
    color: var(--w);
    border: none;
    border-radius: 8px;
    font-family: var(--f);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(230, 54, 0, .3);
    text-transform: uppercase;
    letter-spacing: 1px
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    animation: shimmer 3s infinite
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 54, 0, .4)
}

.btn-cta:active {
    transform: scale(.98)
}

.pulse-glow {
    animation: pGlow 2.5s infinite
}

@keyframes pGlow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(230, 54, 0, .3)
    }

    50% {
        box-shadow: 0 8px 40px rgba(230, 54, 0, .5)
    }
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px
}

.payment-badges span {
    padding: 4px 10px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--w5);
    letter-spacing: .5px
}

.secure-text {
    font-size: 11px;
    color: var(--w3);
    text-align: center;
    margin-top: .6rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 360px;
    line-height: 1.5;
}

.trust-row,
.t-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--w3);
    margin-bottom: 6px
}

.t-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px
}

.micro {
    font-size: 10px;
    color: var(--w3);
    margin-bottom: 16px;
    letter-spacing: .5px
}

/* ============================================================
   VSL RESULTS PAGE — PREMIUM DARK GLASSMORPHISM DESIGN
   ============================================================ */

/* --- CTA PURCHASE SECTION --- */
.r-cta-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, .06), rgba(212, 175, 55, .02));
    border: 1px solid var(--border-g2);
    border-radius: var(--r2);
    margin: 2rem 0;
    overflow: hidden;
}

.r-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, .08), transparent 70%);
    pointer-events: none;
}

/* Stacked CTA (column layout like TSL) */
.r-cta-stacked {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.r-cta-stacked .r-cta-image {
    max-width: 550px;
}

.r-cta-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.r-cta-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .r-cta-layout {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

.r-cta-image {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .6));
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.r-cta-image:hover {
    transform: scale(1.03);
}

.r-cta-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 260px;
}

.rp-was {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--w7);
    margin: 0;
}

.rp-was s {
    color: var(--red);
    font-weight: 800;
}

.rp-now {
    font-size: 1.4rem;
    font-weight: 800;
    margin: .5rem 0;
    color: var(--w);
}

.rp-amount {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--green);
    display: block;
    text-shadow: 0 0 25px var(--green-glow);
}

.payment-badges-img {
    text-align: center;
}

.payment-badges-img img:hover {
    opacity: 1;
}

/* --- TESTIMONIAL CAROUSEL --- */
.r-carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-g);
    border-radius: var(--r2);
    overflow: hidden;
    text-align: center;
}

.r-carousel-track {
    display: flex;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.r-carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity .6s ease;
    padding: 0 1rem;
}

.r-carousel-slide.active {
    opacity: 1;
}

.rc-photo-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 3px;
    background: var(--bg);
    overflow: hidden;
}

.rc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.rc-quote {
    font-family: var(--fd);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--w9);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.rc-author {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: .2rem;
    font-weight: 700;
}

.rc-desc {
    font-size: .9rem;
    color: var(--w5);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.rc-stars {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.r-carousel-dots {
    display: flex;
    justify-content: center;
    gap: .8rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all .3s;
}

.dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

@media (max-width: 768px) {
    .rc-quote {
        font-size: 1.1rem;
    }

    .r-carousel-container {
        margin: 2rem auto;
        padding: 1.5rem;
    }
}

/* --- SOCIAL PROOF & BOXED TESTIMONIALS --- */
.social-proof-header {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .02));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-g);
    border-radius: var(--r);
    margin: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.social-proof-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    animation: shimmer 4s infinite;
}

.social-proof-header h3 {
    font-family: var(--fd);
    font-size: 1.2rem;
    background: linear-gradient(to right, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
    margin: 0;
}

.r-boxed-testimonial {
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-g);
    border-left: 3px solid var(--gold);
    border-radius: var(--r);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform .3s, background .3s;
}

.r-boxed-testimonial:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, .04);
}

.rbt-quote {
    font-family: var(--f);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--w9);
    margin-bottom: 1rem;
    font-style: italic;
}

.rbt-author {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.r-photo-testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.r-photo-testimonial::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--fd);
    font-size: 120px;
    color: rgba(212, 175, 55, .08);
    line-height: 1;
    pointer-events: none;
}

.rpt-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: 1.2rem;
    box-shadow: 0 0 24px var(--gold-glow);
    transition: transform .3s, box-shadow .3s;
}

.rpt-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, .3);
}

.rpt-quote {
    font-size: 1.1rem;
    font-family: var(--fd);
    font-style: italic;
    line-height: 1.65;
    color: var(--w7);
}

/* --- SOCIAL PROOF BAR --- */
.social-proof-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .03));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-g);
    color: var(--w);
    padding: 1.2rem 1.5rem;
    text-align: center;
    width: 100%;
    margin: 2rem 0 1.5rem 0;
    border-radius: var(--r);
    position: relative;
    overflow: hidden;
}

.social-proof-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .06), transparent);
    animation: shimmer 5s infinite;
}

.social-proof-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* --- BOXED TESTIMONIALS --- */
.r-boxed-testimonial {
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-g);
    border-left: 3px solid var(--gold);
    border-radius: var(--r);
    padding: 1.5rem 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    transition: all .3s ease;
}

.r-boxed-testimonial:hover {
    background: rgba(212, 175, 55, .04);
    border-color: var(--border-g2);
    transform: translateX(4px);
}

.rbt-quote {
    font-style: italic;
    font-family: var(--fd);
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: .8rem;
    color: var(--w7);
}

.rbt-author {
    color: var(--gold);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .5px;
}

/* --- PRODUCT TABLE (GLASSMORPHISM) --- */
.r-product-table {
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-g);
    border-radius: var(--r);
    overflow: hidden;
    margin: 1.5rem 0;
}

.rpt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, .1);
    transition: background .3s;
}

.rpt-row:hover {
    background: rgba(212, 175, 55, .04);
}

.rpt-row:last-child {
    border-bottom: none;
}

.rpt-ck {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rpt-name {
    font-weight: 600;
    font-size: 1.1rem;
    flex-grow: 1;
    margin-left: 1rem;
    color: var(--w9);
}

.rpt-val {
    color: var(--red);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.rpt-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 77, 77, .05);
    border-top: 2px solid var(--red);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--w);
}

.rpt-total .rpt-val {
    font-size: 1.4rem;
    color: var(--red);
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.3);
}

/* --- GUARANTEE BOX --- */
.r-guarantee-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, .06), rgba(212, 175, 55, .02));
    border: 1px solid var(--border-g2);
    border-radius: var(--r2);
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.r-guarantee-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, .06), transparent 70%);
    pointer-events: none;
}

.rg-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rg-seal {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, .25));
    flex-shrink: 0;
}

.rg-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--w9);
    line-height: 1.4;
    flex: 1;
    min-width: 200px;
}

/* --- FAQ BOXES (DARK GLASSMORPHISM) --- */
.faq-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
    background: transparent;
    border-radius: 0;
    color: var(--w);
}

.faq-intro {
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--w5);
}

.faq-item-box {
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-g);
    border-radius: var(--r);
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    transition: all .3s ease;
}

.faq-item-box:hover {
    background: rgba(212, 175, 55, .04);
    border-color: var(--border-g2);
}

.faq-q-header {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: var(--gold-l);
}

.faq-q-text {
    font-style: italic;
    font-family: var(--fd);
    color: var(--w9);
}

.faq-a-text {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--w5);
}

.faq-a-text p {
    margin-bottom: .8rem;
}

.faq-a-text p:last-child {
    margin-bottom: 0;
}

.live-bar {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, .06);
    border: 1px solid rgba(239, 68, 68, .12);
    border-radius: 50px;
    font-size: 11px;
    color: var(--w5)
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.2s infinite
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

/* QUIZ */
.quiz-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 9, 12, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--w05)
}

.qtb-track {
    height: 3px;
    background: var(--w05)
}

.qtb-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    transition: width .5s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 10px var(--gold-glow)
}

.qtb-label {
    text-align: center;
    padding: 7px;
    font-size: 10px;
    font-weight: 600;
    color: var(--w3);
    letter-spacing: 2px
}

#s-quiz {
    padding-top: 56px
}

.quiz-area {
    text-align: center;
    padding-top: 24px
}

.q-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--w1);
    letter-spacing: -2px;
    margin-bottom: 8px;
    line-height: 1
}

.q-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--w9)
}

.q-source {
    font-size: 10px;
    font-style: italic;
    color: var(--w3);
    padding: 6px 12px;
    background: var(--w05);
    border-radius: 8px;
    display: none;
    margin-bottom: 16px
}

.q-source.show {
    display: inline-block
}

.q-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px
}

.opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    transition: all .25s;
    text-align: left;
    opacity: 0;
    transform: translateY(14px)
}

.opt.show {
    opacity: 1;
    transform: translateY(0)
}

.opt:hover {
    border-color: var(--border-g2);
    background: rgba(212, 175, 55, .04);
    transform: translateY(-1px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .3)
}

.opt.sel {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, .12), rgba(212, 175, 55, .04));
    box-shadow: 0 0 24px var(--gold-glow);
    transform: scale(1.02)
}

.opt.sel .opt-txt {
    color: var(--w)
}

.opt-emo {
    font-size: 20px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--w05);
    border-radius: 9px;
    flex-shrink: 0
}

.opt-txt {
    font-size: 14px;
    font-weight: 500;
    color: var(--w7);
    line-height: 1.4;
    transition: color .25s
}

.q-context {
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--card);
    border: 1px solid var(--border-g);
    border-radius: var(--r);
    font-size: 12px;
    color: var(--w5);
    line-height: 1.6;
    display: none;
    text-align: left
}

.q-context.show {
    display: block
}

.q-context strong {
    color: var(--gold);
    font-weight: 600
}

/* LOADING */
.load-area {
    text-align: center
}

.load-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 28px
}

.load-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.lr-track {
    fill: none;
    stroke: var(--w05);
    stroke-width: 3
}

.lr-fill {
    fill: none;
    stroke: var(--gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 326.7;
    transition: stroke-dashoffset .08s linear;
    filter: drop-shadow(0 0 6px var(--gold-glow))
}

.load-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--gold)
}

.load-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--w9)
}

.load-sub {
    font-size: 12px;
    color: var(--w3);
    margin-bottom: 28px
}

.load-steps {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: left;
    max-width: 380px;
    margin: 0 auto
}

.ls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--card);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 12px;
    color: var(--w3);
    opacity: .25;
    transform: translateX(-6px);
    transition: all .4s
}

.ls.on {
    opacity: 1;
    transform: translateX(0);
    color: var(--w7);
    border-color: var(--border-g);
    background: rgba(212, 175, 55, .03)
}

.ls.done {
    opacity: .45;
    border-color: transparent;
    background: var(--card)
}

.ls-dot {
    width: 5px;
    height: 5px;
    background: var(--w3);
    border-radius: 50%;
    transition: all .3s
}

.ls.on .ls-dot {
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold-glow)
}

.ls.done .ls-dot {
    background: var(--gold)
}

.ls-t {
    flex: 1
}

.ls-ck {
    color: var(--gold);
    font-weight: 700;
    opacity: 0;
    transition: opacity .3s
}

.ls.done .ls-ck {
    opacity: 1
}

/* ===== RESULTS — PREMIUM DARK GLASSMORPHISM ===== */
.results-wrap {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 20px 24px;
}

.r-card {
    background: rgba(16, 18, 24, .7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px 24px;
    margin-bottom: 1.5rem;
    transition: border-color .3s, background .3s;
}

.r-card:hover {
    border-color: var(--border-g);
    background: rgba(16, 18, 24, .85);
}

.r-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--w9);
    letter-spacing: -.01em;
}

.r-title-center {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--w9);
    text-align: center;
    letter-spacing: -.01em;
}

.r-text {
    font-size: .95rem;
    color: var(--w5);
    line-height: 1.7;
    margin-bottom: .8rem;
}

.r-text:last-child {
    margin-bottom: 0
}

.r-text-hl {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    font-style: italic
}

/* Diagnosis */
.r-diag {
    text-align: center;
    border-color: rgba(239, 68, 68, .15);
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
    background: linear-gradient(135deg, rgba(239, 68, 68, .04), rgba(16, 18, 24, .8));
}

.r-diag-glow {
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(239, 68, 68, .08), transparent 70%);
    pointer-events: none;
    animation: diagPulse 3s ease-in-out infinite;
}

@keyframes diagPulse {

    0%,
    100% {
        opacity: .6;
    }

    50% {
        opacity: 1;
    }
}

.r-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--w3);
    margin-bottom: 14px
}

.r-score-row {
    margin-bottom: 4px
}

.r-score {
    font-size: 72px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    text-shadow: 0 0 40px var(--red-glow);
}

.r-score-pct {
    font-size: 34px;
    font-weight: 800;
    color: var(--red)
}

.r-score-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 18px;
    text-transform: uppercase
}

.r-bar {
    width: 100%;
    height: 5px;
    background: var(--w05);
    border-radius: 3px;
    overflow: hidden
}

.r-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-radius: 3px;
    transition: width 2s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 10px var(--red-glow)
}

/* Compact Findings */
.r-findings-compact {
    padding: 20px 24px;
    background: rgba(16, 18, 24, .6);
}

.rfc {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: var(--w5);
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid var(--w05);
}

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

.rfc-x {
    color: var(--red);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px
}

.rfc strong {
    color: var(--w9)
}

/* Video Intro Bridge */
.r-video-intro {
    text-align: center;
    padding: 2rem 0 1rem;
}

.vsl-headline {
    font-family: var(--fd);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--w);
    margin: 0 auto;
    max-width: 560px;
    text-align: center;
    letter-spacing: -.02em;
    background: linear-gradient(135deg, var(--w), var(--w7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Video Hero */
.r-video-hero {
    margin-bottom: 1.5rem;
}

.rvh-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--w5);
    background: rgba(16, 18, 24, .8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--r) var(--r) 0 0;
    border-bottom: none;
    letter-spacing: .5px;
}

.r-video {
    position: relative;
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border-g);
    border-radius: 0 0 var(--r2) var(--r2);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .6), 0 0 30px rgba(212, 175, 55, .06);
}

.rv-poster {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, .03), transparent 60%), linear-gradient(135deg, var(--bg2), var(--card));
    padding: 20px
}

.rv-play {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), #c9a130);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px var(--gold-glow);
    transition: transform .3s;
    margin-bottom: 16px;
    animation: playPulse 2s infinite
}

@keyframes playPulse {

    0%,
    100% {
        box-shadow: 0 4px 30px var(--gold-glow)
    }

    50% {
        box-shadow: 0 8px 50px rgba(212, 175, 55, .4)
    }
}

.rv-play svg {
    width: 28px;
    height: 28px;
    color: var(--w);
    margin-left: 4px
}

.r-video:hover .rv-play {
    transform: scale(1.1)
}

.rv-headline {
    font-size: 14px;
    font-weight: 700;
    color: var(--w9);
    margin-bottom: 6px;
    text-align: center;
    line-height: 1.4;
    max-width: 320px
}

.rv-cta {
    font-size: 11px;
    color: var(--w3)
}

.rvh-transcript {
    text-align: center;
    margin-top: 8px;
    font-size: 11px;
    color: var(--w3)
}

.rvh-transcript a {
    color: var(--gold);
    text-decoration: underline
}

/* Badges */
.r-badge-gold {
    display: inline-block;
    padding: 3px 12px;
    background: var(--gold-glow);
    border: 1px solid var(--border-g);
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 14px;
    text-transform: uppercase
}

.r-badge-green {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .15);
    border-radius: 50px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 14px;
    text-transform: uppercase
}

/* (Product table, price box, & guarantee styles consolidated above) */

.r-price-box {
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border-g);
    border-radius: var(--r);
    margin-bottom: 18px;
    text-align: center
}

.rp-save {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600
}

.r-final-micro {
    font-size: 11px;
    color: var(--w3);
    margin-top: 10px
}

/* FAQ */
.r-faq {
    padding: 14px 0;
    border-bottom: 1px solid var(--w05)
}

.r-faq:last-child {
    border-bottom: none
}

.faq-q {
    font-size: 13px;
    font-weight: 600;
    color: var(--w9);
    margin-bottom: 8px;
    padding: 10px 14px;
    background: rgba(212, 175, 55, .04);
    border: 1px solid var(--border-g);
    border-radius: var(--r);
    line-height: 1.5
}

.faq-a {
    font-size: 13px;
    color: var(--w5);
    line-height: 1.7;
    padding: 0 4px
}

/* Testimonials */
.r-testimonial {
    padding: 16px 0;
    border-bottom: 1px solid var(--w05)
}

.r-testimonial:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.rt-quote {
    font-size: 13px;
    color: var(--w7);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 8px
}

.rt-author {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 2px
}

.rt-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px
}

/* Closing */
.r-closing {
    text-align: center;
    border-color: var(--border-g);
    background: linear-gradient(135deg, rgba(212, 175, 55, .04), rgba(212, 175, 55, .01))
}

/* Footer */
.r-footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-g);
    margin-top: 2rem;
}

.r-footer p {
    font-size: 10px;
    color: var(--w3);
    margin-bottom: 8px;
    letter-spacing: .3px;
}

.r-disclaimer {
    font-size: 9px;
    color: rgba(255, 255, 255, .15);
    line-height: 1.6;
}

/* DESKTOP */
@media(min-width:769px) {
    h1 {
        font-size: 38px
    }

    .hero-sub {
        font-size: 15px
    }

    .btn-main {
        font-size: 16px;
        padding: 20px 32px
    }

    .btn-cta {
        font-size: 22px;
        padding: 22px 28px
    }

    .social-num {
        font-size: 22px
    }

    .q-text {
        font-size: 24px
    }

    .opt {
        padding: 18px 22px
    }

    .vsl-headline {
        font-size: 1.7rem;
        max-width: 640px;
    }

    .opt-txt {
        font-size: 15px
    }

    .r-score {
        font-size: 88px
    }

    .r-score-pct {
        font-size: 42px
    }

    .r-card {
        padding: 36px 32px
    }

    .results-wrap {
        padding: 40px 28px 24px
    }

    .r-title,
    .r-title-center {
        font-size: 1.3rem
    }

    .rp-amount {
        font-size: 3.2rem;
    }

    .social-proof-header h3 {
        font-size: 1.15rem;
    }

    .rbt-quote {
        font-size: 1.05rem;
    }

    .faq-q-header {
        font-size: 1.1rem;
    }

    .rg-seal {
        width: 120px;
    }
}

@media(max-width:380px) {
    h1 {
        font-size: 22px
    }

    .social-row {
        gap: 12px;
        padding: 12px
    }

    .social-num {
        font-size: 16px
    }

    .q-text {
        font-size: 18px
    }

    .opt {
        padding: 13px 14px
    }

    .opt-txt {
        font-size: 13px
    }

    .r-score {
        font-size: 52px
    }

    .btn-main {
        font-size: 13px;
        padding: 15px 18px
    }

    .btn-cta {
        font-size: 17px;
        padding: 18px 20px
    }

    .vsl-headline {
        font-size: 16px
    }
}

/* Product image inside price box */
.product-img {
    width: 100%;
    max-width: 480px;
    display: block;
    margin: 0 auto 16px;
    border-radius: 10px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .7));
}

/* ========== SCREEN: TRANSCRIPT (PREMIUM DARK DESIGN) ========== */
.s-transcript {
    background: var(--bg);
    color: var(--w);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 0;
    position: relative;
}

.s-transcript.active {
    display: flex;
}

.tsl-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.tsl-header {
    text-align: center;
    margin-bottom: 60px;
}

.tsl-back-btn {
    background: var(--w05);
    border: 1px solid var(--border);
    color: var(--w7);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.tsl-back-btn:hover {
    background: var(--w1);
    color: var(--w);
    border-color: var(--w3);
}

.tsl-headline {
    font-family: var(--fd);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hl-gold {
    color: var(--gold);
    background: linear-gradient(to right, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tsl-presenter {
    font-size: 18px;
    color: var(--w5);
    font-style: italic;
    margin-bottom: 30px;
}

.tsl-video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-g);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Cards */
.tsl-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.tsl-card p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--w9);
    text-align: center;
}

.tsl-sub {
    font-family: var(--fd);
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--gold);
    text-align: center;
}

.tsl-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: center;
}

.tsl-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    color: var(--w7);
    text-align: center;
}

.tsl-list li::before {
    display: none;
}

/* Images */
.tsl-img-wrap {
    margin: 40px 0;
    text-align: center;
    width: 100%;
}

.tsl-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-g);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.tsl-caption {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: var(--w3);
    font-style: italic;
    text-align: center;
}

.tsl-card h3 {
    text-align: center;
    margin-bottom: 20px;
}

.tsl-bonus-item {
    text-align: center;
    margin-bottom: 40px;
}

/* Testimonials */
.tsl-quote-card {
    background: var(--w05);
    border: 1px solid var(--border-g);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.tsl-quote-card p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--w);
}

.tsl-quote-card .author {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}

/* Offer Card */
.tsl-offer-card {
    text-align: center;
    border: 2px solid var(--gold-dim);
    background: radial-gradient(circle at top right, var(--gold-glow), transparent), var(--card);
}

.tsl-product-box {
    margin: 40px 0;
}

.tsl-product-img {
    max-width: 400px;
    width: 100%;
}

.tsl-price-box {
    margin-bottom: 30px;
}

.rp-was {
    font-size: 20px;
    color: var(--w3);
    margin-bottom: 5px;
}

.rp-now {
    font-size: 32px;
    font-weight: 800;
}

.rp-amount {
    font-size: 56px;
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
}

.secure-text {
    font-size: 13px;
    color: var(--w3);
    margin-top: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Bonus List */
.tsl-bonus-list {
    list-style: none;
    padding: 0;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
}

.tsl-bonus-list li {
    background: var(--w05);
    border: 1px solid var(--border);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 16px;
}

.tsl-bonus-list li strong {
    color: var(--gold);
}

/* FAQ */
.tsl-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
    text-align: center;
}

.tsl-faq-item:last-child {
    border-bottom: none;
}

.tsl-faq-q {
    font-size: 19px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.tsl-faq-a {
    font-size: 17px;
    color: var(--w7);
}

/* Freedom Moment Grid */
.freedom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 500px;
    margin: 20px auto;
}

.freedom-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.freedom-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

/* Footer */
.tsl-footer {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.tsl-footer p {
    font-size: 14px;
    color: var(--w3);
    margin-bottom: 20px;
}

.tsl-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Special TSL Blocks */
.tsl-alert-card {
    background: linear-gradient(135deg, #8b0000, #ff0000);
    border: 2px solid #ff4d4d;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.tsl-alert-card p,
.tsl-alert-card .tsl-sub {
    color: #fff !important;
}

.tsl-highlight-card {
    background: #000;
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.tsl-yellow-card {
    background: linear-gradient(135deg, #fff9c4, #fbc02d);
    color: #1a1a1a;
    border: 1px solid #fbc02d;
}

.tsl-yellow-card p,
.tsl-yellow-card .author,
.tsl-yellow-card .tsl-sub {
    color: #1a1a1a !important;
}

.tsl-yellow-card .tsl-quote-card {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.tsl-guarantee-seal-img {
    max-width: 280px;
    margin: 20px auto;
    display: block;
}

.tsl-bonus-img {
    max-width: 400px;
    margin: 20px auto;
    border-radius: 12px;
    display: block;
}

.tsl-link-wrap {
    margin-top: 20px;
    text-align: center;
}

.tsl-link {
    color: var(--w5);
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
}

.tsl-link:hover {
    color: var(--gold);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .tsl-container {
        padding: 20px 12px;
    }

    .tsl-headline {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .tsl-card {
        padding: 20px 15px;
        border-radius: 16px;
        margin-bottom: 20px;
    }

    .tsl-sub {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .tsl-card p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .tsl-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .rp-amount {
        font-size: 36px;
    }

    .rp-now {
        font-size: 24px;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 15px;
        font-size: 18px;
        letter-spacing: 1px;
    }

    .freedom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
    }

    .freedom-img {
        height: 110px;
    }

    .tsl-img-wrap {
        margin: 25px 0;
    }

    .tsl-bonus-img,
    .tsl-guarantee-seal-img {
        max-width: 80% !important;
    }
}

/* --- RESULTS GUARANTEE BOX --- */
.r-guarantee-box {
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-g);
    border-radius: var(--r2);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.rg-seal {
    max-width: 180px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.rg-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--w9);
    margin-bottom: 1.5rem;
}

.rg-text p {
    margin-bottom: 1.2rem;
}

.rg-text strong {
    color: var(--gold);
}

.rg-footer {
    font-family: var(--fd);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 768px) {
    .r-guarantee-box {
        padding: 2rem 1.5rem;
    }

    .rg-text {
        font-size: 1rem;
    }

    .rg-seal {
        max-width: 140px;
    }
}

/* --- OFFER SUMMARY --- */
.r-offer-summary {
    text-align: center;
    margin: 4rem 0;
}

.r-offer-summary .r-cta-image {
    max-width: 600px;
    margin-top: 2rem;
}