/* ============================================================
   RABBI SOLOMON — TORAH MONEY LAWS
   Dark luxury · Private banking meets ancient Torah
   ============================================================ */

:root {
    --bg:          #0A0A0A;
    --bg-card:    #111111;
    --bg-elev:    #161616;
    --gold:       #C9A84C;
    --gold-light: #E8C97A;
    --gold-deep:  #8A7233;
    --white:      #F5F5F0;
    --muted:      #888880;
    --border:     #2A2A2A;
    --red:        #C94C4C;
    --red-glow:   rgba(201, 76, 76, .45);
    --gold-glow:  rgba(201, 168, 76, .35);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

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

/* Particle canvas */
#particles-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ========================= TOP BAR ========================= */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.top-bar.scrolled {
    background: rgba(6, 6, 6, 0.92);
    border-bottom-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.top-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.top-brand:hover {
    color: var(--gold-light);
    text-shadow: 0 0 18px rgba(232, 201, 122, 0.45);
}
.top-brand-mark {
    font-size: 16px;
    color: var(--gold-light);
}
.top-nav {
    display: flex;
    gap: 28px;
}
.top-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.08em;
    transition: color 0.25s ease;
    position: relative;
}
.top-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
}
.top-nav-link:hover {
    color: var(--gold);
}
.top-nav-link:hover::after {
    width: 100%;
}
.top-cta {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    padding: 10px 20px;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #0A0A0A;
    border-radius: 2px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.28);
    white-space: nowrap;
}
.top-cta:hover {
    transform: scale(1.04);
    filter: brightness(1.08);
    box-shadow: 0 10px 26px rgba(201, 168, 76, 0.5);
}

/* ========================= LIVE VIEWERS PILL ========================= */
.live-viewers {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 28px;
    padding: 9px 18px;
    background: rgba(17, 17, 17, 0.72);
    border: 1px solid rgba(201, 76, 76, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.02em;
    box-shadow: 0 0 30px rgba(201, 76, 76, 0.14);
}
.live-viewers strong {
    color: var(--gold-light);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    transition: transform 0.35s ease, color 0.35s ease;
}
.live-viewers strong.bump {
    transform: translateY(-2px);
    color: #fff;
    text-shadow: 0 0 14px rgba(232, 201, 122, 0.7);
}
.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e64949;
    box-shadow: 0 0 12px rgba(230, 73, 73, 0.9);
    position: relative;
    flex-shrink: 0;
}
.live-dot::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(230, 73, 73, 0.45);
    animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse {
    0%   { transform: scale(0.6); opacity: 0.85; }
    100% { transform: scale(2.1); opacity: 0; }
}

/* Placeholder covers */
.cover.placeholder,
.bundle-cover.placeholder {
    background:
        linear-gradient(135deg, #1b1b1b 0%, #0f0f0f 100%);
    position: relative;
    min-height: 320px;
    border: 1px solid var(--gold-deep);
    opacity: 1;
}
.cover.placeholder::after,
.bundle-cover.placeholder::after {
    content: "COVER\A COMING SOON";
    white-space: pre;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-align: center;
}

/* Shimmer separator */
.shimmer-line {
    height: 1px;
    width: 100%;
    margin: 32px auto;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold-deep) 20%,
        var(--gold) 50%,
        var(--gold-deep) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================= REVEAL ========================= */
.reveal, .reveal-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s ease, transform .9s ease;
}
.reveal.in-view, .reveal-stagger.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= HERO ========================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    from { opacity: .6; transform: translate(-50%, -50%) scale(1); }
    to   { opacity: 1;  transform: translate(-50%, -50%) scale(1.1); }
}

.hero-container {
    text-align: center;
}
.hero-brand {
    font-family: 'Cinzel', serif;
    letter-spacing: .45em;
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}
.hero-title .line-1 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--gold);
    font-size: clamp(14px, 2vw, 20px);
}
.hero-title .line-2 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--white);
    font-size: clamp(40px, 8vw, 96px);
    line-height: 1;
    letter-spacing: -.02em;
    text-shadow: 0 0 40px rgba(201,168,76,.12);
}

.hero-sub {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 48px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.7;
}

/* Countdown */
.countdown-wrapper {
    max-width: 560px;
    margin: 0 auto 44px;
    padding: 28px 32px;
    background: rgba(17,17,17,.7);
    border: 1px solid var(--border);
    border-radius: 2px;
    backdrop-filter: blur(6px);
}
.countdown-label {
    font-family: 'Cinzel', serif;
    letter-spacing: .25em;
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 18px;
}
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, #181818, #0c0c0c);
    border: 1px solid var(--gold-deep);
    padding: 14px 18px;
    min-width: 82px;
    border-radius: 2px;
    box-shadow: inset 0 0 20px rgba(201,168,76,.08);
}
.time-unit span {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(30px, 4.5vw, 48px);
    color: var(--gold);
    line-height: 1;
    display: inline-block;
    text-shadow: 0 0 20px rgba(201,168,76,.35);
    animation: digitFlip .6s ease forwards;
}
.time-unit small {
    font-family: 'Cinzel', serif;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .2em;
    margin-top: 8px;
}
.time-sep {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 40px);
    color: var(--gold);
    font-weight: 900;
    animation: blink 1s steps(2) infinite;
}
@keyframes blink {
    to { opacity: .35; }
}
@keyframes digitFlip {
    0%   { transform: perspective(300px) rotateX(-90deg); opacity: 0; }
    100% { transform: perspective(300px) rotateX(0);      opacity: 1; }
}
.countdown-note {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .05em;
}

/* CTA Primary */
.cta-primary, .cta-buy, .cta-bundle {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #0A0A0A;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2em;
    padding: 18px 44px;
    border: none;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
    box-shadow: 0 8px 30px rgba(201,168,76,.25);
    text-transform: uppercase;
    border-radius: 2px;
}
.cta-primary:hover, .cta-buy:hover, .cta-bundle:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
    box-shadow: 0 12px 40px rgba(201,168,76,.45);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2em;
    padding: 17px 44px;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    border-radius: 2px;
}
.cta-secondary:hover {
    background: var(--gold);
    color: #0A0A0A;
    transform: scale(1.03);
}

/* ========================= SOCIAL PROOF BAR ========================= */
.social-proof {
    background: linear-gradient(90deg, #0a0a0a, #181410, #0a0a0a);
    border-top: 1px solid var(--gold-deep);
    border-bottom: 1px solid var(--gold-deep);
    overflow: hidden;
    padding: 16px 0;
    position: relative;
    z-index: 2;
}
.marquee {
    width: 100%;
    overflow: hidden;
}
.marquee-track {
    display: inline-flex;
    gap: 28px;
    white-space: nowrap;
    animation: marquee 55s linear infinite;
    color: var(--gold-light);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    letter-spacing: .02em;
}
.mq-item { font-weight: 500; }
.mq-sep  { color: var(--gold-deep); }
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================= PRODUCTS ========================= */
.products-section {
    padding: 110px 0;
    position: relative;
    z-index: 2;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 56px);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}
.section-sub {
    color: var(--muted);
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
    font-size: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    border-radius: 2px;
}
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,.04) 100%);
}
.product-card:hover {
    transform: scale(1.02);
    border-color: var(--gold-deep);
    box-shadow: 0 20px 50px rgba(201,168,76,.2);
}

.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .2em;
    padding: 6px 12px;
    color: #0A0A0A;
    z-index: 3;
    border-radius: 2px;
}
.badge-bestseller { background: var(--gold); }
.badge-popular    { background: var(--gold-light); }
.badge-premium    { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.badge-highest    { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--white); }

.cover-wrap {
    width: 100%;
    max-width: 240px;
    margin-bottom: 24px;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.1);
    transition: box-shadow .4s ease;
}
.product-card:hover .cover-wrap {
    box-shadow: 0 25px 50px rgba(0,0,0,.7), 0 0 0 1px var(--gold-deep);
}
.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.25;
}
.product-desc {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 20px;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 20px;
}
.price-strike {
    color: var(--red);
    text-decoration: line-through;
    font-size: 15px;
    font-weight: 500;
}
.price-now {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -.01em;
}

.cta-buy {
    width: 100%;
    max-width: 340px;
    padding: 16px 20px;
    font-size: 12.5px;
    letter-spacing: .18em;
}

.instant-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 14px;
    letter-spacing: .02em;
}
.instant-note.center { text-align: center; }

/* ========================= BUNDLE ========================= */
.bundle-section {
    padding: 90px 0 110px;
    position: relative;
    z-index: 2;
}
.bundle-card {
    position: relative;
    background: linear-gradient(180deg, #121010 0%, #0a0a0a 100%);
    border: 1px solid var(--gold-deep);
    padding: 64px 44px 48px;
    border-radius: 2px;
    overflow: visible;
    box-shadow: 0 0 0 1px rgba(201,168,76,.15), 0 0 60px rgba(201,168,76,.15);
    animation: bundlePulse 4s ease-in-out infinite;
}
.bundle-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
@keyframes bundlePulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(201,168,76,.15), 0 0 60px rgba(201,168,76,.15); }
    50%      { box-shadow: 0 0 0 1px rgba(232,201,122,.45), 0 0 90px rgba(201,168,76,.3); }
}
.bundle-glow {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent, var(--gold-deep), transparent, var(--gold-deep), transparent);
    opacity: .2;
    animation: bundleRotate 18s linear infinite;
    z-index: 0;
    pointer-events: none;
    border-radius: 2px;
    mask: linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0);
}
@keyframes bundleRotate {
    to { transform: rotate(360deg); }
}

.bundle-badge-top {
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d33b3b, #992020);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: .2em;
    padding: 9px 22px;
    border: 1px solid #e06060;
    border-radius: 2px;
    z-index: 5;
    animation: redPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px var(--red-glow);
    white-space: nowrap;
}
@keyframes redPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%      { transform: translateX(-50%) scale(1.04); }
}

.bundle-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 46px);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}
.bundle-sub {
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.bundle-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.bundle-cover-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--gold-deep);
    box-shadow: 0 30px 60px rgba(0,0,0,.7), 0 0 50px rgba(201,168,76,.2);
}
.bundle-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bundle-list {
    list-style: none;
    margin-bottom: 30px;
}
.bundle-list li {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 12px;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.bundle-list li:last-child { border-bottom: none; }
.bundle-list .check {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
}
.bundle-list .li-title { color: var(--white); }
.bundle-list .li-value {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}
.bundle-list .li-value.exclusive {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .2em;
}
.bonus-li {
    background: rgba(201,168,76,.05);
    padding: 14px 16px !important;
    border-radius: 2px;
    border-bottom: 1px solid var(--gold-deep) !important;
    border: 1px solid var(--gold-deep);
    margin-top: 6px;
}
.bonus-desc {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 13px;
    font-style: italic;
    margin-top: 8px;
    padding-left: 36px;
    line-height: 1.5;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    margin-bottom: 18px;
}
.total-label {
    font-family: 'Cinzel', serif;
    letter-spacing: .15em;
    color: var(--muted);
    font-size: 13px;
}
.total-value {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
}

.bundle-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.bundle-price {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(56px, 7vw, 88px);
    color: var(--gold);
    line-height: 1;
    letter-spacing: -.02em;
    text-shadow: 0 0 30px rgba(201,168,76,.4);
    animation: pricePulse 3s ease-in-out infinite;
}
@keyframes pricePulse {
    0%, 100% { text-shadow: 0 0 30px rgba(201,168,76,.4); }
    50%      { text-shadow: 0 0 50px rgba(232,201,122,.8), 0 0 80px rgba(201,168,76,.5); }
}
.save-badge {
    background: linear-gradient(135deg, #d33b3b, #8b1a1a);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    padding: 10px 20px;
    border: 1px solid #e06060;
    border-radius: 2px;
}

.cta-bundle {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 22px 28px;
    letter-spacing: .2em;
}

/* ========================= TRUST ========================= */
.trust-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0b08 50%, #0a0a0a 100%);
    position: relative;
    z-index: 2;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.trust-item {
    text-align: center;
    padding: 32px 20px;
}
.trust-icon {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(201,168,76,.4);
}
.trust-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .2em;
    font-size: 18px;
    margin-bottom: 14px;
}
.trust-text {
    color: var(--muted);
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================= TESTIMONIALS ========================= */
.testimonials-section {
    padding: 110px 0;
    position: relative;
    z-index: 2;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 32px 28px;
    border-radius: 2px;
    transition: transform .4s ease, border-color .4s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-deep);
    border-left-color: var(--gold-light);
}
.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: .12em;
    margin-bottom: 16px;
}
.quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 18px;
}
.author {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: .15em;
}

/* ========================= FINAL CTA ========================= */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.final-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.2;
    margin: 40px auto 22px;
    max-width: 900px;
}
.final-sub {
    color: var(--muted);
    font-size: 17px;
    max-width: 620px;
    margin: 0 auto 44px;
    line-height: 1.6;
}
.final-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ========================= FOOTER ========================= */
.footer {
    padding: 48px 0 36px;
    border-top: 1px solid var(--border);
    text-align: center;
    background: #070707;
    position: relative;
    z-index: 2;
}
.footer-logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    letter-spacing: .25em;
    font-size: 13px;
    margin-bottom: 14px;
}
.footer-copy {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
}
.footer-disclaimer {
    color: #4a4a45;
    font-size: 11px;
    letter-spacing: .04em;
}

/* ========================= PURCHASE NOTIFICATION ========================= */
.purchase-notif {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: var(--bg-card);
    border: 1px solid var(--gold-deep);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 340px;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.15);
    transform: translateY(140%);
    opacity: 0;
    transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .4s ease;
    z-index: 50;
    backdrop-filter: blur(10px);
}
.purchase-notif.visible {
    transform: translateY(0);
    opacity: 1;
}
.notif-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,.08);
    border: 1px solid var(--gold-deep);
    border-radius: 2px;
    flex-shrink: 0;
}
.notif-body { flex: 1; min-width: 0; }
.notif-line-1 {
    color: var(--white);
    font-size: 13px;
    line-height: 1.3;
}
.notif-line-1 strong {
    color: var(--gold);
    font-weight: 600;
}
.notif-line-2 {
    color: var(--gold-light);
    font-size: 13px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.3;
    margin: 2px 0;
}
.notif-line-3 {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .03em;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
    .top-nav { gap: 20px; }
    .top-bar-inner { padding: 12px 22px; gap: 16px; }
}

@media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .trust-grid { grid-template-columns: 1fr; gap: 24px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .bundle-body { grid-template-columns: 1fr; gap: 32px; }
    .bundle-cover-wrap { max-width: 260px; margin: 0 auto; }
    .bundle-card { padding: 52px 24px 36px; }
    .bundle-price-row { justify-content: center; text-align: center; flex-direction: column; }
    .time-unit { min-width: 66px; padding: 12px 12px; }
    .countdown-wrapper { padding: 22px 18px; }
    .hero { padding: 120px 0 60px; }
    .final-buttons { flex-direction: column; }
    .final-buttons .cta-primary,
    .final-buttons .cta-secondary { width: 100%; }
    .purchase-notif { max-width: calc(100vw - 32px); left: 16px; right: 16px; }

    .top-nav { display: none; }
    .top-bar-inner { padding: 11px 18px; }
    .top-brand { font-size: 12px; letter-spacing: 0.25em; }
    .top-brand-mark { font-size: 14px; }
    .top-cta { font-size: 10.5px; padding: 9px 16px; letter-spacing: 0.18em; }
}

@media (max-width: 600px) {
    .hero { padding: 110px 0 50px; }
    .hero-brand { font-size: 11px; letter-spacing: 0.35em; margin-bottom: 18px; }
    .hero-title .line-1 { font-size: 11px; letter-spacing: .3em; }
    .hero-title .line-2 { font-size: clamp(34px, 11vw, 60px); }
    .hero-sub { font-size: 14.5px; margin-bottom: 30px; }
    .live-viewers { font-size: 12px; padding: 8px 14px; margin-bottom: 22px; }

    .countdown-wrapper { padding: 20px 14px; max-width: 100%; }
    .countdown { gap: 6px; }
    .time-unit { min-width: 58px; padding: 10px 8px; }
    .time-unit span { font-size: clamp(26px, 8vw, 36px); }
    .time-unit small { font-size: 9px; letter-spacing: 0.15em; margin-top: 6px; }
    .time-sep { font-size: 22px; }
    .countdown-label { font-size: 10.5px; letter-spacing: 0.2em; margin-bottom: 14px; }

    .container { padding: 0 18px; }
    .products-section { padding: 80px 0; }
    .section-title { font-size: clamp(28px, 7vw, 44px); }
    .section-sub { margin-bottom: 48px; font-size: 14.5px; }

    .product-card { padding: 32px 22px 26px; }
    .cover-wrap { max-width: 200px; margin-bottom: 20px; }
    .product-title { font-size: 20px; }
    .price-now { font-size: 36px; }
    .cta-buy { font-size: 11.5px; padding: 15px 18px; letter-spacing: 0.15em; }
    .badge { font-size: 9px; padding: 5px 10px; letter-spacing: 0.16em; }

    .bundle-section { padding: 70px 0 90px; }
    .bundle-card { padding: 48px 18px 32px; }
    .bundle-badge-top { font-size: 10.5px; padding: 8px 16px; letter-spacing: 0.15em; top: -15px; }
    .bundle-title { font-size: clamp(22px, 6vw, 32px); }
    .bundle-sub { font-size: 13.5px; margin-bottom: 34px; }
    .bundle-list li { font-size: 13px; padding: 11px 0; grid-template-columns: 20px 1fr; }
    .bundle-list .li-value {
        grid-column: 2;
        font-size: 11.5px;
        margin-top: -4px;
    }
    .bonus-li { padding: 12px !important; }
    .bonus-desc { padding-left: 0; font-size: 12px; margin-top: 6px; }
    .total-value { font-size: 22px; }
    .bundle-price { font-size: clamp(46px, 14vw, 70px); }
    .save-badge { font-size: 10.5px; padding: 8px 16px; letter-spacing: 0.15em; }
    .cta-bundle { font-size: 12px; padding: 18px 18px; letter-spacing: 0.15em; }

    .trust-section { padding: 60px 0; }
    .trust-icon { font-size: 36px; }
    .trust-title { font-size: 16px; letter-spacing: 0.18em; }

    .testimonials-section { padding: 80px 0; }
    .testimonial-card { padding: 26px 22px; }
    .quote { font-size: 15px; }

    .final-cta { padding: 90px 0; }
    .final-title { font-size: clamp(26px, 7vw, 42px); margin: 30px auto 18px; }
    .final-sub { font-size: 15px; margin-bottom: 34px; }
    .cta-primary, .cta-secondary { padding: 16px 28px; font-size: 12.5px; letter-spacing: 0.16em; }

    .purchase-notif { padding: 12px 14px; gap: 10px; }
    .notif-icon { width: 38px; height: 38px; font-size: 19px; }
    .notif-line-1, .notif-line-2 { font-size: 12.5px; }
    .notif-line-3 { font-size: 10.5px; }
}

@media (max-width: 380px) {
    .top-cta { font-size: 10px; padding: 8px 12px; letter-spacing: 0.12em; }
    .top-brand-text { display: none; }
    .top-brand-mark { font-size: 18px; }
    .time-unit { min-width: 52px; padding: 10px 6px; }
}
