:root {
    --bg: #0a0a0f;
    --bg-alt: #07070a;
    --card: rgba(255,255,255,0.02);
    --card-hover: rgba(255,255,255,0.05);
    --text: #f5f7fa;
    --text-dim: rgba(255,255,255,0.6);
    --text-muted: rgba(255,255,255,0.4);
    --gold: #ffd84d;
    --gold-dark: #ffb400;
    --gold-glow: rgba(255,216,77,0.4);
    --gold-soft: rgba(255,216,77,0.08);
    --border: rgba(255,255,255,0.06);
    --gradient: linear-gradient(135deg, #ffd84d 0%, #ffb400 100%);
    --radius: 12px;
    --radius-lg: 20px;
}
* { margin:0; padding:0; box-sizing:border-box; }
a, button, .btn { transition: transform 0.2s, background 0.2s, color 0.2s; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* GLOBAL GLOW EFFECTS */
.section-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glow-gold { background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%); }
.glow-orange { background: radial-gradient(circle, rgba(255,180,0,0.25) 0%, transparent 70%); }

/* ANIMATED GRID - używany w wielu sekcjach */
.animated-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,216,77,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,216,77,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 25s linear infinite;
    pointer-events: none;
}
@keyframes gridMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(80px, 80px); }
}

/* FLOATING 3D ELEMENTS */
.float-3d {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}
.float-cube {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,216,77,0.2);
    background: rgba(255,216,77,0.03);
    animation: cubeFloat 12s ease-in-out infinite;
}
.float-ring {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,216,77,0.15);
    border-radius: 50%;
    animation: ringFloat 10s ease-in-out infinite;
}
.float-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--gold-glow);
    animation: dotFloat 8s ease-in-out infinite;
}
@keyframes cubeFloat {
    0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}
@keyframes ringFloat {
    0%,100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.4; }
}
@keyframes dotFloat {
    0%,100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 1; }
}

/* PARTICLES CANVAS */
.particles-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(90deg, #ffd84d, #ffb400, #ffd84d);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient);
    color: #0a0a0f;
    box-shadow: 0 0 40px var(--gold-glow);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 80px var(--gold-glow), 0 20px 40px rgba(0,0,0,0.3);
}
.btn-secondary {
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border: 2px solid var(--border);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
    box-shadow: 0 0 30px rgba(255,216,77,0.15);
}
.btn-large { padding: 22px 48px; font-size: 18px; }

/* ICON */
.icon {
    width: 24px; height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}
.icon-sm { width: 18px; height: 18px; }

.icon-box {
    width: 60px; height: 60px;
    background: var(--gold-soft);
    border: 1px solid rgba(255,216,77,0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s ease;
}

/* SECTIONS */
section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}
.section-content { position: relative; z-index: 10; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--gold-soft);
    border: 1px solid rgba(255,216,77,0.2);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-dim);
    max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   HERO - FULL EFFECTS
   ============================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-orbs .section-glow {
    animation: orbPulse 8s ease-in-out infinite;
}
.hero-orb-1 { width: 900px; height: 900px; top: -400px; right: -300px; animation-delay: 0s; }
.hero-orb-2 { width: 700px; height: 700px; bottom: -300px; left: -200px; animation-delay: -3s; }
.hero-orb-3 { width: 500px; height: 500px; top: 40%; left: 40%; animation-delay: -6s; }

@keyframes orbPulse {
    0%,100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.4);
    border-radius: 50px;
    font-size: 14px;
    color: #22c55e;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease, badgePulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(34,197,94,0.2);
}
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 20px rgba(34,197,94,0.15); }
    50% { box-shadow: 0 0 50px rgba(34,197,94,0.35); }
}

.pulse-dot {
    width: 10px; height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px #22c55e;
}
@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(44px, 7vw, 82px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeUp 0.8s ease 0.1s backwards;
    text-shadow: 0 0 100px rgba(255,216,77,0.2);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 21px);
    color: var(--text-dim);
    max-width: 720px;
    margin: 0 auto 40px;
    animation: fadeUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeUp 0.8s ease 0.3s backwards;
}

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

/* VIDEO */
.hero-video {
    max-width: 850px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease 0.4s backwards;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,216,77,0.08) 0%, rgba(255,180,0,0.03) 100%);
    border: 1px solid rgba(255,216,77,0.2);
    box-shadow: 0 0 80px rgba(255,216,77,0.15), 0 40px 80px rgba(0,0,0,0.5);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
    filter: blur(25px);
    animation: videoGlow 4s ease-in-out infinite;
}
@keyframes videoGlow {
    0%,100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.03); }
}

.video-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(255,216,77,0.05) 0%, rgba(10,10,15,0.95) 70%);
}

.play-btn {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 60px var(--gold-glow);
    transition: all 0.4s ease;
    margin-bottom: 20px;
}
.play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 100px var(--gold-glow);
}
.play-btn svg { width: 36px; height: 36px; fill: #0a0a0f; margin-left: 6px; }

.video-text { color: var(--text-dim); font-size: 14px; }

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-top: 50px;
    animation: fadeUp 0.8s ease 0.5s backwards;
}
.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 14px;
}
.hero-proof-item svg { color: var(--gold); }

/* ============================================
   PROBLEM - INTERACTIVE CARDS + GLOW
   ============================================ */
#problem {
    background: var(--bg-alt);
}

.problem-intro {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 50px;
    max-width: 700px;
}
.problem-intro p { margin-bottom: 16px; }
.problem-intro strong { color: var(--text); }

.problem-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 50px;
}

.problem-item {
    display: flex;
    gap: 18px;
    padding: 24px 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}
.problem-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}
.problem-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 50%, rgba(255,216,77,0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.problem-item:hover {
    border-color: rgba(255,216,77,0.3);
    transform: translateX(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(255,216,77,0.05);
}
.problem-item:hover::before { transform: scaleY(1); }
.problem-item:hover::after { opacity: 1; }
.problem-item.checked {
    border-color: var(--gold);
    background: rgba(255,216,77,0.05);
}
.problem-item.checked::before { transform: scaleY(1); }

.problem-checkbox {
    width: 28px; height: 28px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.problem-item.checked .problem-checkbox {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 25px var(--gold-glow);
}
.problem-item.checked .problem-checkbox svg { color: #0a0a0f; }

.problem-text { position: relative; z-index: 1; }
.problem-text strong { display: block; margin-bottom: 4px; font-size: 17px; }
.problem-text span { color: var(--text-dim); font-size: 15px; }

.problem-summary {
    padding: 48px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    color: #0a0a0f;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px var(--gold-glow), 0 30px 60px rgba(0,0,0,0.4);
}
.problem-summary::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
    0%,100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}
.problem-summary h3 { font-size: 28px; margin-bottom: 16px; position: relative; }
.problem-summary p { opacity: 0.9; margin-bottom: 12px; position: relative; font-size: 17px; }
.problem-summary p:last-child { font-weight: 600; opacity: 1; margin-bottom: 0; }

/* ============================================
   STATS - ANIMATED COUNTERS + HOVER GLOW
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 70px;
}

.stat-card {
    padding: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,216,77,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.stat-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255,216,77,0.3);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,216,77,0.1);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover::after { opacity: 1; }

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
    position: relative;
    text-shadow: 0 0 60px var(--gold-glow);
}
.stat-label { font-size: 18px; font-weight: 600; margin-bottom: 14px; position: relative; }
.stat-desc { color: var(--text-dim); font-size: 14px; line-height: 1.7; position: relative; }
.stat-source { display: block; margin-top: 14px; font-size: 12px; color: var(--text-muted); }

/* ============================================
   SOLUTION/FEATURES - 3D CARD HOVER
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 70px;
}

.feature-card {
    padding: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    transform-style: preserve-3d;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.feature-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 50px rgba(255,216,77,0.08);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover .icon-box {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 40px rgba(255,216,77,0.3);
}

.feature-card .icon-box { margin-bottom: 28px; }
.feature-card h4 { font-size: 22px; margin-bottom: 14px; }
.feature-card p { color: var(--text-dim); font-size: 15px; line-height: 1.8; }

/* ============================================
   AUTHOR - FLOATING AVATAR + GLOWING STATS
   ============================================ */
.author-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    align-items: start;
}

.author-avatar {
    width: 320px; height: 320px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    font-weight: 900;
    color: #0a0a0f;
    position: sticky;
    top: 100px;
    box-shadow: 0 0 100px var(--gold-glow), 0 40px 80px rgba(0,0,0,0.5);
    animation: avatarFloat 5s ease-in-out infinite;
}
@keyframes avatarFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.author-content p { color: var(--text-dim); margin-bottom: 18px; font-size: 18px; line-height: 1.8; }
.author-content p strong { color: var(--text); }
.author-content p em { color: var(--gold); font-style: normal; font-weight: 600; }

.author-projects { margin-top: 50px; }
.author-projects h3 { font-size: 28px; margin-bottom: 28px; }

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

.project-card {
    padding: 26px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    gap: 18px;
    transition: all 0.4s ease;
}
.project-card:hover {
    border-color: rgba(255,216,77,0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,216,77,0.05);
}
.project-card .icon-box { width: 52px; height: 52px; flex-shrink: 0; }
.project-card h4 { font-size: 17px; margin-bottom: 4px; }
.project-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

.author-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.author-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,216,77,0.05) 0%, transparent 60%);
}
.author-stat { text-align: center; flex: 1; min-width: 100px; position: relative; }
.author-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
}
.author-stat-label { color: var(--text-dim); font-size: 13px; margin-top: 4px; }

/* ============================================
   LEVELS - ANIMATED CARDS + NUMBER GLOW
   ============================================ */
.levels-container {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 70px;
}

.level-card {
    padding: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.level-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--gradient);
    transform: scaleY(0);
    transition: transform 0.5s ease;
}
.level-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,216,77,0.03) 0%, transparent 30%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.level-card:hover {
    border-color: rgba(255,216,77,0.3);
    transform: translateX(15px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 50px rgba(255,216,77,0.08);
}
.level-card:hover::before { transform: scaleY(1); }
.level-card:hover::after { opacity: 1; }
.level-card:hover .level-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 60px var(--gold-glow);
}

.level-number {
    width: 100px; height: 100px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    color: #0a0a0f;
    box-shadow: 0 0 40px var(--gold-glow);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.level-content { position: relative; z-index: 1; }
.level-content h3 { font-size: 28px; margin-bottom: 6px; }
.level-subtitle { color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.level-desc { color: var(--text-dim); font-size: 15px; }

.level-badge {
    padding: 16px 32px;
    background: var(--gold-soft);
    border: 1px solid rgba(255,216,77,0.25);
    color: var(--gold);
    font-weight: 700;
    border-radius: 50px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ============================================
   PRICING - FEATURED CARD GLOW + 3D
   ============================================ */
#pricing .section-bg-glow {
    position: absolute;
    width: 800px; height: 800px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,216,77,0.06) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 30px rgba(255,216,77,0.5), 0 0 60px rgba(255,216,77,0.3); } 50% { box-shadow: 0 0 50px rgba(255,216,77,0.8), 0 0 100px rgba(255,216,77,0.5); } }
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
}
.toggle-label { color: var(--text-dim); cursor: pointer; font-weight: 500; transition: all 0.3s; }
.toggle-label.active { color: var(--text); }
.toggle-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold);
    color: #0a0a0f;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    margin-left: 8px;
}
.toggle-switch { position: relative; width: 90px; height: 48px; cursor: pointer; box-shadow: 0 0 30px rgba(255,216,77,0.5), 0 0 60px rgba(255,216,77,0.3); border-radius: 48px; animation: pulseGlow 2s ease-in-out infinite; }
.toggle-switch input { 
    opacity: 0; 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    cursor: pointer; 
    z-index: 2;
    margin: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 34px;
    transition: 0.4s;
}
.toggle-slider:before {
    content: "";
    position: absolute;
    height: 38px; width: 38px;
    left: 4px; bottom: 4px;
    background: var(--gold);
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 0 20px var(--gold-glow);
}
input:checked + .toggle-slider:before { transform: translateX(42px); }

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

.pricing-card {
    padding: 48px 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.pricing-card:hover {
    border-color: rgba(255,216,77,0.2);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* BASIC disabled on lifetime */
.pricing-card.disabled {
    opacity: 0.35;
    pointer-events: none;
    filter: grayscale(100%);
    transform: scale(0.95);
    transition: all 0.5s ease;
    position: relative;
}
.pricing-card.disabled .btn {
    background: #333;
    color: #555;
    box-shadow: none;
}
.pricing-card.disabled::before,
.pricing-card.disabled::after {
    display: none;
}
.pricing-card .disabled-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.85);
    border-radius: var(--radius-lg);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}
.pricing-card.disabled .disabled-overlay {
    display: flex;
    pointer-events: auto;
}
.disabled-overlay span {
    color: var(--text-muted);
    font-size: 14px;
}
.disabled-overlay strong {
    color: var(--gold);
    font-size: 16px;
}
.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(255,216,77,0.06) 0%, transparent 40%);
    box-shadow: 0 0 100px var(--gold-glow), 0 40px 80px rgba(0,0,0,0.5);
}
.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.pricing-badge {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    padding: 14px 36px;
    background: var(--gradient);
    color: #0a0a0f;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px var(--gold-glow);
}

.pricing-header { text-align: center; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.pricing-header h3 { font-size: 28px; margin-bottom: 6px; }
.pricing-header p { color: var(--text-muted); font-size: 14px; }

.pricing-price { text-align: center; margin-bottom: 40px; }
.price-amount { font-size: 68px; font-weight: 900; transition: all 0.3s; }
.pricing-card.featured .price-amount { color: var(--gold); text-shadow: 0 0 50px var(--gold-glow); }
.price-currency { font-size: 26px; color: var(--text-dim); }
.price-period { display: block; color: var(--text-muted); font-size: 14px; margin-top: 6px; }

.pricing-features { list-style: none; margin-bottom: 40px; }
.pricing-features li {
    padding: 16px 0;
    padding-left: 38px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li svg { position: absolute; left: 0; top: 18px; }
.pricing-features li.included svg { color: var(--gold); }
.pricing-features li.excluded { color: var(--text-muted); }
.pricing-features li.excluded svg { color: var(--text-muted); }
.pricing-features li.bonus { color: var(--gold); font-weight: 500; }
.pricing-card .btn { width: 100%; }

/* ============================================
   GUARANTEE - MEGA GLOW CARD
   ============================================ */
.guarantee-card {
    text-align: center;
    padding: 60px 50px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    color: #0a0a0f;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 80px var(--gold-glow), 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
}
.guarantee-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: guaranteeShine 5s linear infinite;
}
@keyframes guaranteeShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.guarantee-icon { margin-bottom: 30px; position: relative; }
.guarantee-icon svg { width: 90px; height: 90px; stroke-width: 1.5; }
.guarantee-card h2 { font-size: 44px; margin-bottom: 28px; position: relative; }
.guarantee-card p { opacity: 0.9; max-width: 650px; margin: 0 auto 18px; font-size: 20px; position: relative; line-height: 1.7; }

/* ============================================
   FAQ - ANIMATED ACCORDION
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 16px; margin-top: 70px; }

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
}
.faq-item:hover { border-color: rgba(255,216,77,0.2); }
.faq-item.active {
    border-color: rgba(255,216,77,0.3);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3), 0 0 30px rgba(255,216,77,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 32px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}
.faq-question:hover { background: var(--card-hover); }
.faq-question svg { flex-shrink: 0; color: var(--gold); transition: transform 0.4s ease; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 32px 32px; color: var(--text-dim); margin: 0; font-size: 16px; line-height: 1.8; }

/* ============================================
   FINAL CTA - ULTIMATE GLOW
   ============================================ */
.final-cta {
    text-align: center;
    padding: 120px 70px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,216,77,0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaGlow 5s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%,100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.final-cta h2 { margin-bottom: 18px; position: relative; }
.final-cta > p { color: var(--text-dim); margin-bottom: 40px; position: relative; font-size: 19px; }

.final-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 50px;
    position: relative;
}
.final-summary span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.final-summary span:hover {
    border-color: rgba(255,216,77,0.3);
    box-shadow: 0 0 30px rgba(255,216,77,0.1);
    transform: translateY(-3px);
}
.final-summary span svg { color: var(--gold); }
.final-buttons { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; position: relative; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 100px 0 50px;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
}
.footer-brand h3 { font-size: 30px; margin-bottom: 16px; color: var(--gold); }
.footer-brand p { color: var(--text-dim); font-size: 15px; line-height: 1.8; }
footer h4 { font-size: 15px; margin-bottom: 22px; color: var(--text); }
footer p, footer a { color: var(--text-dim); font-size: 14px; margin-bottom: 12px; display: block; text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--gold); }
header nav a:hover { color: var(--gold); }
.footer-bottom { padding-top: 50px; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 13px; }

/* ============================================
   RESPONSIVE - MOBILE FIRST FIXES
   ============================================ */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .author-grid { grid-template-columns: 1fr; text-align: center; }
    .author-avatar { margin: 0 auto 50px; position: static; width: 250px; height: 250px; font-size: 80px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .level-card { grid-template-columns: 1fr; text-align: center; }
    .level-number { margin: 0 auto 20px; width: 80px; height: 80px; font-size: 32px; }
    .level-badge { margin-top: 20px; display: inline-block; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .container { padding: 0 20px; }
    header nav { gap: 16px; }
    header nav a:not(.btn) { display: none; }
    header nav .btn { padding: 8px 16px; font-size: 12px; }
    .projects-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .final-cta { padding: 60px 24px; }
    /* Hide images on mobile */
    #problem > .container > div:first-child { grid-template-columns: 1fr !important; }
    #problem > .container > div:first-child > div:last-child { display: none; }
    #agitation .container > div:first-child { display: none; }
    #agitation .container > div:nth-child(2) { grid-template-columns: 1fr !important; }
    #agitation .container > div:nth-child(2) svg { display: none; }
    .guarantee-card { padding: 50px 24px; }
    .float-3d { display: none; }
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-badge { padding: 10px 18px; font-size: 12px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 320px; }
    .hero-proof { flex-direction: column; gap: 12px; align-items: center; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 16px; }
    .btn { padding: 16px 28px; font-size: 15px; }
    .btn-large { padding: 18px 32px; font-size: 16px; }
    .pricing-card { padding: 32px 24px; }
    .price-amount { font-size: 48px; }
    .author-stats { flex-direction: column; gap: 20px; }
    .author-stat { min-width: auto; }
    .problem-item { padding: 18px 20px; flex-direction: column; text-align: center; }
    .problem-checkbox { margin: 0 auto 12px; }
    .stat-card { padding: 28px 20px; }
    .stat-number { font-size: 48px; }
    .feature-card { padding: 28px 24px; }
    .level-card { padding: 28px 24px; }
    .faq-question { padding: 20px; font-size: 16px; }
    .faq-answer p { padding: 0 20px 20px; font-size: 15px; }
    .video-wrapper { border-radius: 12px; }
    .play-btn { width: 70px; height: 70px; }
    .play-btn svg { width: 28px; height: 28px; }
    .final-summary { gap: 10px; }
    .final-summary span { padding: 10px 16px; font-size: 13px; }
    .final-buttons { flex-direction: column; width: 100%; }
    .final-buttons .btn { width: 100%; }
    .guarantee-card h2 { font-size: 28px; }
    .guarantee-card p { font-size: 16px; }
    .guarantee-icon svg { width: 60px; height: 60px; }
    /* Hide decorative images on tablet/mobile */
    [style*="position:absolute"][style*="pointer-events:none"] { display: none !important; }
    /* ForWho section responsive */
    #forwho > .container > div { grid-template-columns: 1fr !important; }
    #forwho .section-title { text-align: center !important; }
    /* Transformation responsive */
    #transformation [style*="grid-template-columns:1fr 1fr"][style*="gap:40px"] { grid-template-columns: 1fr !important; }
    #transformation [style*="width:80px;height:80px"] { display: none !important; }
    /* Agitation Adam grid responsive */
    #agitation [style*="grid-template-columns:1fr 200px"] { grid-template-columns: 1fr !important; }
    #agitation [style*="grid-template-columns:1fr 200px"] > div:last-child { display: none; }
    /* Bonuses responsive */
    #bonuses [style*="grid-template-columns: 100px 1fr"] { grid-template-columns: 1fr !important; text-align: center; }
    #bonuses [style*="grid-template-columns: 100px 1fr"] > div:first-child { margin-bottom: 16px; }
    #bonuses [style*="grid-template-columns: 100px 1fr"] h4 { justify-content: center; }
    /* LastArg responsive */
    #lastarg [style*="display:flex;justify-content:center;gap:40px"] { flex-direction: column; gap: 24px; }
    /* Platform section responsive */
    #levels [style*="grid-template-columns:1fr 1fr"][style*="gap:40px"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .hero-title { font-size: 28px; line-height: 1.15; }
    .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
    .hero-badge { padding: 8px 14px; font-size: 11px; }
    .hero-video { margin: 0 -16px; }
    .video-wrapper { border-radius: 0; }
    .section-title { font-size: 24px; }
    .section-label { font-size: 10px; padding: 8px 14px; }
    .problem-summary { padding: 28px 20px; }
    .problem-summary h3 { font-size: 20px; }
    .problem-summary p { font-size: 14px; }
    .stat-number { font-size: 40px; }
    .stat-label { font-size: 15px; }
    .level-number { width: 70px; height: 70px; font-size: 28px; }
    .level-content h3 { font-size: 22px; }
    .pricing-badge { padding: 10px 24px; font-size: 10px; }
    .price-amount { font-size: 42px; }
    .pricing-features li { font-size: 14px; padding: 12px 0 12px 32px; }
    .author-avatar { width: 200px; height: 200px; font-size: 64px; }
    .author-stat-num { font-size: 28px; }
    .project-card { padding: 20px; }
    .icon-box { width: 48px; height: 48px; }
    .final-cta { padding: 40px 20px; }
    .final-summary span { padding: 8px 12px; font-size: 12px; }
    .guarantee-card { padding: 36px 20px; }
    .guarantee-card h2 { font-size: 24px; }
    .footer-grid { gap: 40px; }
    /* ForWho 480px */
    #forwho [style*="minmax(400px"] { grid-template-columns: 1fr !important; }
    #forwho [style*="gap:20px"] > div { padding: 20px !important; }
    #forwho [style*="gap:20px"] > div > div:first-child { width: 40px !important; height: 40px !important; }
    /* Agitation 480px */
    #agitation [style*="grid-template-columns:100px"] { grid-template-columns: 80px 1fr !important; }
    #agitation [style*="font-size:32px"] { font-size: 24px !important; }
    /* Transformation 480px */
    #transformation [style*="padding:20px 32px"] { padding: 16px 20px !important; }
    /* Cases 480px */
    #cases [style*="minmax(200px"] { grid-template-columns: 1fr 1fr !important; }
    /* Bonuses 480px */
    #bonuses h4 svg { display: none; }
    /* LastArg 480px */
    #lastarg [style*="font-size:48px"] { font-size: 36px !important; }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:active { transform: scale(0.98); }
    .problem-item:active { transform: translateX(5px); }
    .faq-question:active { background: var(--card-hover); }
}

/* Skip link accessibility */
.skip-link:focus { top: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .animated-grid, .float-3d, .hero-orbs .section-glow { display: none; }
}
    
/* ============ PREMIERE COUNTDOWN ============ */
.premiere-banner { background: linear-gradient(135deg, rgba(239,68,68,0.15) 0%, rgba(220,38,38,0.1) 100%); border: 1px solid rgba(239,68,68,0.3); border-radius: 16px; padding: 24px 32px; margin-bottom: 32px; text-align: center; }
.premiere-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(239,68,68,0.2); padding: 6px 14px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: #ef4444; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.premiere-label svg { width: 16px; height: 16px; }
.premiere-title { font-size: 1.1rem; color: #fff; margin-bottom: 8px; font-weight: 600; }
.premiere-countdown { display: flex; justify-content: center; gap: 16px; margin: 20px 0; }
.countdown-item { display: flex; flex-direction: column; align-items: center; min-width: 70px; }
.countdown-value { font-size: 2.2rem; font-weight: 800; color: #fff; background: rgba(0,0,0,0.3); padding: 12px 16px; border-radius: 12px; min-width: 70px; font-variant-numeric: tabular-nums; }
.countdown-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-top: 6px; letter-spacing: 0.5px; }
.premiere-note { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 500px; margin: 0 auto; }
.premiere-note strong { color: #fff; }
.premiere-expired { color: #ef4444; font-weight: 600; }
@media (max-width: 640px) { .premiere-countdown { gap: 10px; } .countdown-value { font-size: 1.6rem; padding: 10px 12px; min-width: 55px; } .premiere-banner { padding: 20px 16px; } }

/* ============ QUIZ SECTION ============ */
.quiz-section { background: linear-gradient(180deg, rgba(245,208,0,0.05) 0%, var(--bg-dark) 100%); padding: 100px 0; }
.quiz-container { max-width: 600px; margin: 0 auto; }
.quiz-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 48px; }
.quiz-progress { display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; }
.quiz-progress-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); transition: all 0.3s; }
.quiz-progress-dot.active { background: var(--gold); box-shadow: 0 0 12px rgba(245,208,0,0.5); }
.quiz-progress-dot.done { background: #22c55e; }
.quiz-question { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 28px; line-height: 1.4; text-align: center; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option { padding: 18px 24px; border: 2px solid var(--border); border-radius: 12px; cursor: pointer; transition: all 0.2s; font-size: 16px; text-align: left; background: var(--bg-dark); color: var(--text); }
.quiz-option:hover { border-color: var(--gold); background: rgba(245,208,0,0.1); }
.quiz-option.selected { border-color: var(--gold); background: rgba(245,208,0,0.15); }
.quiz-result { text-align: center; }
.quiz-result-score { font-size: 64px; font-weight: 900; color: var(--gold); margin-bottom: 16px; }
.quiz-result-text { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.6; }
@media (max-width: 600px) { .quiz-card { padding: 28px 20px; } .quiz-question { font-size: 18px; } }

/* ============ CALCULATOR SECTION ============ */
.calc-section { background: var(--bg-alt); padding: 100px 0; }
.calc-container { max-width: 700px; margin: 0 auto; }
.calc-card { background: linear-gradient(135deg, #1a1a2e, #0f0f1a); border: 1px solid var(--border); border-radius: 24px; padding: 48px; }
.calc-label { display: block; font-size: 16px; color: var(--text-secondary); margin-bottom: 12px; }
.calc-input { width: 100%; padding: 16px 20px; border: 2px solid var(--border); border-radius: 12px; background: rgba(255,255,255,0.05); color: var(--text); font-size: 24px; font-weight: 700; }
.calc-input:focus { outline: none; border-color: var(--gold); }
.calc-input::placeholder { color: var(--text-muted); }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.calc-result-box { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 24px; text-align: center; }
.calc-result-box.highlight { background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(22,163,74,0.2)); border: 2px solid #22c55e; }
.calc-result-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.calc-result-value { font-size: 32px; font-weight: 800; color: var(--text); }
.calc-result-box.highlight .calc-result-value { color: #86efac; }
.calc-difference { margin-top: 24px; text-align: center; padding: 24px; background: linear-gradient(135deg, rgba(245,208,0,0.1), rgba(245,208,0,0.05)); border-radius: 16px; border: 1px solid rgba(245,208,0,0.3); }
.calc-difference-label { font-size: 14px; color: var(--text-secondary); margin-bottom: 8px; }
.calc-difference-value { font-size: 42px; font-weight: 900; color: var(--gold); }
.calc-note { font-size: 12px; color: var(--text-muted); margin-top: 24px; text-align: center; }
@media (max-width: 600px) { .calc-card { padding: 28px 20px; } .calc-results { grid-template-columns: 1fr; } .calc-result-value { font-size: 26px; } .calc-difference-value { font-size: 32px; } }

/* ============ PREMIERE PRICING ============ */
.price-original { font-size: 24px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 4px; opacity: 0.6; }
.premiere-info { background: linear-gradient(135deg, rgba(239,68,68,0.15) 0%, rgba(220,38,38,0.1) 100%); border: 2px solid rgba(239,68,68,0.4); border-radius: 16px; padding: 28px 32px; margin-top: 48px; text-align: center; }
.premiere-info-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(239,68,68,0.2); padding: 8px 16px; border-radius: 100px; font-size: 0.9rem; font-weight: 700; color: #ef4444; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.premiere-info-label svg { width: 18px; height: 18px; }
.premiere-info-title { font-size: 1.3rem; color: #fff; margin-bottom: 12px; font-weight: 700; }
.premiere-info-text { color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 600px; margin: 0 auto; }
.premiere-info-text strong { color: #fff; }
.premiere-countdown-inline { display: flex; justify-content: center; gap: 12px; margin: 20px 0; }
.countdown-box { background: rgba(0,0,0,0.3); padding: 12px 16px; border-radius: 10px; min-width: 60px; text-align: center; }
.countdown-box-value { font-size: 1.8rem; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
.countdown-box-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; }

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), #f5d000); z-index: 10001; width: 0%; transition: width 0.1s linear; }

/* ============ EXIT POPUP ============ */
/* exit popup css removed */

/* ============ STICKY CTA BAR ============ */
.sticky-cta { position: fixed; bottom: -100px; left: 0; width: 100%; background: linear-gradient(180deg, rgba(10,10,15,0.95), rgba(10,10,15,0.98)); border-top: 1px solid rgba(245,208,0,0.2); padding: 16px 24px; z-index: 9999; display: flex; align-items: center; justify-content: center; gap: 24px; transition: bottom 0.4s ease; backdrop-filter: blur(10px); }
.sticky-cta.visible { bottom: 0; }
.sticky-cta-text { color: #fff; font-size: 1rem; }
.sticky-cta-text strong { color: var(--gold); }
.sticky-cta-btn { background: linear-gradient(135deg, var(--gold), #f5d000); color: #0a0a0f; padding: 12px 28px; border-radius: 8px; font-weight: 700; text-decoration: none; transition: transform 0.2s; }
.sticky-cta-btn:hover { transform: scale(1.05); }
@media (max-width: 768px) { .sticky-cta { flex-direction: column; gap: 12px; padding: 12px 16px; } .sticky-cta-text { font-size: 0.9rem; text-align: center; } }

/* ============ LIVE TOASTS ============ */
.toast-container { position: fixed; bottom: 100px; left: 24px; z-index: 9998; display: flex; flex-direction: column; gap: 12px; }
.toast { background: rgba(20,20,30,0.95); border: 1px solid rgba(245,208,0,0.2); border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); animation: toastIn 0.4s ease, toastOut 0.4s ease 4.6s forwards; backdrop-filter: blur(8px); }
@keyframes toastIn { from { opacity: 0; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-100%); } }
.toast-icon { width: 36px; height: 36px; background: linear-gradient(135deg, #22c55e, #16a34a); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.toast-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.toast-content { color: #fff; }
.toast-name { font-weight: 600; font-size: 0.95rem; }
.toast-action { font-size: 0.85rem; color: #999; }
@media (max-width: 768px) { .toast-container { left: 12px; right: 12px; bottom: 80px; } .toast { padding: 12px 16px; } }

/* ============ READERS COUNT ============ */
.readers-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); padding: 8px 16px; border-radius: 100px; font-size: 0.9rem; color: #22c55e; margin-bottom: 16px; }
.readers-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: readersPulse 2s infinite; }
@keyframes readersPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }


/* ACCORDION STYLES */
.level-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    grid-column: 1 / -1;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
}
.level-card.expanded .level-accordion {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}
.level-card { cursor: pointer; flex-wrap: wrap; position: relative; }
.expand-hint {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 14px;
    transition: transform 0.3s ease;
}
.level-card.expanded .expand-hint { transform: translateY(-50%) rotate(180deg); }
.accordion-content { padding: 24px; }
.topics-header {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.topic-item {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255,216,77,0.05);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--text);
    transition: background 0.2s ease;
}
.topic-item:hover { background: rgba(255,216,77,0.1); }
.topic-item:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .accordion-content { padding: 16px; }
    .topic-item { padding: 10px 14px; font-size: 13px; }
    .expand-hint { right: 15px; }
}

/* KTORY PAKIET MOBILE STYLES */
.ktory-pakiet-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.ktory-pakiet-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.ktory-pakiet-persona { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width: 768px) {
    .ktory-pakiet-grid-3 { grid-template-columns: 1fr !important; gap: 12px; }
    .ktory-pakiet-grid-2 { grid-template-columns: 1fr !important; gap: 16px; }
    .ktory-pakiet-persona { grid-template-columns: 1fr !important; gap: 16px; }
    #ktory-pakiet h3 { font-size: 22px !important; }
    #ktory-pakiet table { font-size: 12px; }
    #ktory-pakiet th, #ktory-pakiet td { padding: 8px 4px !important; }
}
