/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
    --bg-main: #07030a;
    --bg-card: rgba(20, 10, 30, 0.7);
    --primary: #9b51e0;
    --gold: #d4af37;
    --gold-light: #f9d976;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --red: #ef4444;
    --border-glass: rgba(255,255,255,0.08);
    --shadow-glass: 0 8px 32px rgba(0,0,0,0.4);
    --radius-lg: 20px;
    --radius-xl: 28px;
    --section-pad: clamp(60px, 10vw, 110px) 0;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
    background: var(--bg-main);
    background-image:
        radial-gradient(circle at 10% 50%, rgba(155,81,224,0.10) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(212,175,55,0.06) 0%, transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 5vw, 24px);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* =============================================
   UTILITIES
   ============================================= */
.text-center  { text-align: center; }
.mt-2  { margin-top: .75rem; }
.mt-4  { margin-top: 1.5rem; }
.mt-6  { margin-top: 2.5rem; }
.mb-4  { margin-bottom: 1.5rem; }
.mb-6  { margin-bottom: 2.5rem; }
.mx-auto { margin-inline: auto; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1 { font-size: clamp(2rem, 7vw, 3.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
h2 { font-size: clamp(1.7rem, 5vw, 2.8rem); font-weight: 700; line-height: 1.2;  margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 600; margin-bottom: .75rem; }
h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
p  { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--gold-light); font-weight: 700; }
em     { font-style: italic; }

.highlight-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.highlight-red { color: var(--red); }
.text-muted    { color: var(--text-muted); }
.text-large    { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
.text-glow     { text-shadow: 0 0 24px rgba(212,175,55,.35); }

/* =============================================
   GLASSMORPHISM CARD
   ============================================= */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
}

/* =============================================
   BADGE
   ============================================= */
.badge-wrapper { margin-bottom: 24px; }
.badge {
    display: inline-block;
    background: rgba(212,175,55,.10);
    color: var(--gold-light);
    border: 1px solid rgba(212,175,55,.30);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform .25s, box-shadow .25s;
    width: 100%;
    max-width: 420px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 8px 24px rgba(212,175,55,.45);
}
.btn-gold:hover, .btn-gold:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(212,175,55,.65);
}

.btn-pulse { animation: pulse 2s infinite; }

@keyframes pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0    rgba(212,175,55,.7); }
    70%  { transform: scale(1.04); box-shadow: 0 0 0 14px rgba(212,175,55,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0    rgba(212,175,55,0); }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes neonPulse {
    0%   { box-shadow: 0 0 8px var(--primary), 0 0 18px rgba(155,81,224,.5); }
    100% { box-shadow: 0 0 18px var(--primary), 0 0 40px rgba(155,81,224,.8), 0 0 60px rgba(155,81,224,.3); }
}

@keyframes pulseBorder {
    0%   { box-shadow: 0 0 0 0    rgba(212,175,55,.4); }
    70%  { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0    rgba(212,175,55,0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SECTIONS — base
   ============================================= */
section { padding: var(--section-pad); position: relative; z-index: 1; }

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: clamp(80px, 14vw, 130px) 0 clamp(60px, 10vw, 90px);
}

.hero .main-title { animation: fadeInUp .7s ease both; }
.hero .subheadline { animation: fadeInUp .7s .15s ease both; }

.subheadline {
    font-size: clamp(.95rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 32px;
}

/* VSL */
.vsl-container {
    width: 100%;
    max-width: 380px;
    margin: 0 auto 36px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--primary);
    background: #000;
    animation: neonPulse 2s infinite alternate;
}

/* Lies list */
.lies-glass-box {
    max-width: 680px;
    margin: 0 auto 40px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 5vw, 32px);
    text-align: left;
}

.lies-list { display: flex; flex-direction: column; gap: 10px; }

.lie-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(.95rem, 2.5vw, 1.05rem);
    color: #e2e8f0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.lie-item:last-child { border: none; padding-bottom: 0; }
.lie-item .num { color: var(--red); font-weight: 800; min-width: 24px; flex-shrink: 0; }

.hero-cta { margin-top: 8px; }
.security-text { margin-top: 12px; font-size: .88rem; color: var(--text-muted); }

/* =============================================
   IDENTIFICATION
   ============================================= */
.identification .content-box { padding: clamp(24px, 6vw, 50px); }

.pain-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 36px;
}
@media (min-width: 768px) {
    .pain-points { grid-template-columns: 1fr 1fr; }
}

.pain-errors h3 { color: var(--red); margin-bottom: 16px; font-size: 1.1rem; }

.error-list { list-style: none; }
.error-list li {
    padding: 10px 12px 10px 40px;
    position: relative;
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: #cbd5e1;
    margin-bottom: 10px;
    background: rgba(239,68,68,.07);
    border-radius: 10px;
    border-left: 3px solid rgba(239,68,68,.4);
}
.error-list li::before { content:"❌"; position:absolute; left:10px; top:10px; }

/* =============================================
   ANCIENT SECRET
   ============================================= */
.ancient-secret { background: rgba(0,0,0,.4); }
.power-box {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(32px, 8vw, 60px) clamp(20px, 6vw, 50px);
}
.icon-top { font-size: 2.8rem; margin-bottom: 16px; }
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 36px auto;
    width: 60%;
    opacity: .5;
}

/* =============================================
   PRODUCT PRESENTATION
   ============================================= */
.product-showcase { display: flex; justify-content: center; }
.book-mockup {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    animation: pulseBorder 2.5s infinite;
}
.book-mockup img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
.fallback-book {
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--gold);
}
.fallback-book h2 { color: var(--gold-light); font-size: 1.8rem; }
.gold-line { height: 2px; background: var(--gold-gradient); width: 50px; margin: 12px auto; }

.benefits-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; font-size: clamp(.95rem, 2vw, 1.05rem); }
.check { color: #10b981; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* =============================================
   STRATEGY / MESSAGES
   ============================================= */
.messages-preview {
    max-width: 560px;
    margin: 40px auto 0;
    padding: clamp(24px, 5vw, 40px);
    text-align: left;
}
.messages-preview h3 { text-align: center; color: var(--gold-light); margin-bottom: 28px; }
.msg-bubbles { display: flex; flex-direction: column; gap: 18px; }
.msg-bubble { padding: 14px 18px; border-radius: 18px; max-width: 88%; }
.msg-text  { font-size: clamp(.95rem, 2vw, 1.05rem); margin-bottom: 4px; }
.msg-note  { font-size: .78rem; opacity: .65; font-style: italic; }
.incoming  { background: #1e293b; align-self: flex-start; border-bottom-left-radius: 0; border: 1px solid rgba(255,255,255,.1); }
.outgoing  { background: linear-gradient(135deg, var(--primary), #6b21a8); align-self: flex-end; border-bottom-right-radius: 0; }

/* =============================================
   BONUSES
   ============================================= */
.bonuses { background: linear-gradient(to bottom, transparent, rgba(212,175,55,.05), transparent); }

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 50px;
}
@media (min-width: 560px)  { .bonus-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bonus-grid { grid-template-columns: repeat(4, 1fr); } }

.bonus-card {
    padding: clamp(30px, 5vw, 44px) clamp(20px, 4vw, 30px);
    text-align: center;
    position: relative;
    transition: transform .3s;
}
.bonus-card:hover { transform: translateY(-8px); }

.bonus-value {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: .82rem;
    white-space: nowrap;
}
.bonus-icon { font-size: 2.8rem; margin-bottom: 18px; }
.bonus-card h3 { color: var(--gold-light); font-size: 1.15rem; }
.highlight-bonus { border-color: rgba(212,175,55,.5) !important; box-shadow: 0 0 20px rgba(212,175,55,.2) !important; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }

.testimonial { padding: clamp(24px, 5vw, 40px); }
.test-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.test-header img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.test-info strong { display: block; color: #fff; font-size: 1rem; }
.stars { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.testimonial > p { font-style: italic; color: #cbd5e1; font-size: clamp(.9rem, 2vw, 1rem); }

/* =============================================
   OFFER
   ============================================= */
.offer-section { padding-top: 50px; }
.price-box {
    max-width: 520px;
    margin: 0 auto;
    padding: clamp(44px, 8vw, 64px) clamp(24px, 6vw, 48px);
    text-align: center;
    position: relative;
    border: 1px solid rgba(212,175,55,.3);
    box-shadow: 0 0 50px rgba(212,175,55,.12), inset 0 0 20px rgba(212,175,55,.04);
}

.pulse-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    padding: 7px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: 1px;
    white-space: nowrap;
    animation: pulseBg 2s infinite;
}
@keyframes pulseBg { 0%,100% { background:#ef4444; } 50% { background:#dc2626; } }

.offer-includes {
    margin: 28px 0;
    text-align: left;
    background: rgba(0,0,0,.25);
    padding: 20px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.offer-includes p { font-size: clamp(.92rem, 2vw, 1rem); margin: 0; }

.total-value { font-size: 1rem; color: var(--text-muted); margin-top: 24px; }
.strike { text-decoration: line-through; }
.today-price { font-size: 1.3rem; margin: 8px 0 4px; }
.today-price span { font-size: clamp(3rem, 8vw, 4rem); font-weight: 800; color: var(--gold-light); display: block; line-height: 1.1; }
.payment-terms { color: var(--text-muted); font-size: 1rem; margin-bottom: 24px; }

.safe-checkout { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.payment-icons { display: flex; justify-content: center; gap: 10px; margin-bottom: 4px; }
.safe-checkout p { font-size: .82rem; color: var(--text-muted); }

/* =============================================
   GUARANTEE
   ============================================= */
.guarantee { background: rgba(255,255,255,.02); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }
.guarantee-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}
@media (min-width: 768px) {
    .guarantee-inner { flex-direction: row; text-align: left; }
}
.seal img { width: 130px; flex-shrink: 0; }

/* =============================================
   FAQ — ACCORDION
   ============================================= */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
    padding: 0;
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item:hover { border-color: rgba(212,175,55,.25); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--gold-light);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(.95rem, 2vw, 1.05rem);
    font-weight: 700;
    text-align: left;
    padding: 20px 50px 20px 22px;
    cursor: pointer;
    position: relative;
    display: block;
    line-height: 1.4;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform .3s;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 22px;
    font-size: clamp(.9rem, 2vw, 1rem);
    color: var(--text-muted);
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 22px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    font-size: .88rem;
    color: var(--text-muted);
}
.footer-links { margin: 12px 0; }
.footer-links a { color: var(--gold); text-decoration: none; margin: 0 8px; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.disclaimer { font-size: .75rem; color: #475569; max-width: 720px; margin: 16px auto 0; }

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */
@media (max-width: 768px) {
    .presentation .grid-2 > :first-child { order: -1; }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 480px) {
    .btn { font-size: .92rem; padding: 14px 20px; }
    .vsl-container { max-width: 100%; }
    .lies-glass-box { padding: 18px; }
    .content-box { padding: 22px 18px; }
    .power-box { padding: 28px 18px; }
    .messages-preview { padding: 22px 18px; }
    .testimonial { padding: 22px 18px; }
    .price-box { padding: 44px 18px 30px; }
    .offer-includes { padding: 16px; }
    .today-price span { font-size: 2.8rem; }
    .bonus-card { padding: 36px 20px 28px; }
    .faq-question { padding: 16px 44px 16px 16px; }
    .faq-answer { padding: 0 16px; }
    .faq-item.open .faq-answer { padding: 0 16px 18px; }
    .sticky-bar-inner { flex-direction: column; gap: 10px; }
    .aida-phase-label { display: none; }
}

/* =============================================
   AIDA — Visual labels (hidden from visitors)
   ============================================= */
.aida-phase-label { display: none; }

.aida-label-tag {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   INTEREST — extra elements
   ============================================= */
.insight-box {
    background: rgba(155,81,224,.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin-top: 20px;
    font-size: .95rem;
}
.alert-text {
    margin-top: 18px;
    color: var(--red);
    font-weight: 700;
    font-size: .95rem;
    border-top: 1px solid rgba(239,68,68,.2);
    padding-top: 14px;
}

/* =============================================
   VSL wrapper label
   ============================================= */
.vsl-wrapper { width: 100%; }
.vsl-label {
    font-size: .85rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* =============================================
   OFFER — value tags
   ============================================= */
.value-tag {
    background: rgba(212,175,55,.15);
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
    text-decoration: line-through;
    opacity: .8;
}

/* =============================================
   URGENCY box
   ============================================= */
.urgency-box {
    max-width: 540px;
    margin: 24px auto 0;
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: 14px;
    padding: 18px 24px;
    font-size: clamp(.88rem, 2vw, .98rem);
    color: #fca5a5;
}

/* =============================================
   FINAL CTA block
   ============================================= */
.final-cta {
    margin-top: 60px;
    padding: clamp(32px, 6vw, 50px);
    background: var(--bg-card);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
}
.final-cta h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--gold-light);
    margin-bottom: 8px;
}

/* =============================================
   STICKY CTA BAR
   ============================================= */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7,3,10,.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212,175,55,.25);
    padding: 12px clamp(16px, 5vw, 32px);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.sticky-bar.visible { transform: translateY(0); }

.sticky-bar-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.sticky-info { display: flex; flex-direction: column; }
.sticky-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}
.sticky-desc { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.sticky-bar .btn {
    width: auto;
    max-width: none;
    padding: 12px 28px;
    font-size: .9rem;
    white-space: nowrap;
}

/* =============================================
   ANIMATIONS & EFFECTS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Background floating spheres */
.bg-spheres {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}
.sphere-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}
.sphere-2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: 10%;
    left: -50px;
    animation-delay: -5s;
}
.sphere-3 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 40%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}

/* Hover effects for glass cards */
.glass-card {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 20px rgba(155,81,224,0.1);
}

/* Glowing text animation */
.text-glow-alt {
    animation: textGlow 3s infinite alternate ease-in-out;
}
@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(212,175,55,0.2); }
    100% { text-shadow: 0 0 25px rgba(212,175,55,0.5); }
}

/* Floating animation for mockup */
.book-mockup img {
    animation: floatingMockup 4s infinite alternate ease-in-out;
}
@keyframes floatingMockup {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Enhancing sticky bar entry */
.sticky-bar {
    transition: transform 0.6s cubic-bezier(0.3, 1, 0.2, 1), opacity 0.4s;
    opacity: 0;
}
.sticky-bar.visible {
    opacity: 1;
}

/* Button pulse refinement */
.btn-pulse {
    position: relative;
    overflow: hidden;
}
.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}


