#mock-preview {
    font-family: inherit;
    background-color: var(--pv-bg);
    color: var(--pv-text);
    height: 600px; /* Fixed height for browser feel */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mock-scroll-container {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--pv-border) transparent;
}

/* Mock Navbar */
.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--pv-border);
    background: var(--pv-surface);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}
.mock-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.1rem;
}
.mock-logo i { color: var(--pv-primary); font-size: 1.25rem; }

.mock-menu {
    display: flex;
    gap: 1.5rem;
    color: var(--pv-text-muted);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Mock Hero */
.mock-hero {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}
.mock-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--pv-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mock-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}
.mock-hero h1 span {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(135deg, var(--pv-primary), var(--pv-secondary));
}
.mock-hero p {
    font-size: 1.1rem;
    color: var(--pv-text-muted);
    margin: 0 auto 2.5rem auto;
    max-width: 600px;
}

/* Dashboard Preview */
.mock-dashboard-preview {
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
    background: var(--pv-surface);
    border: 1px solid var(--pv-border);
    border-radius: 1rem;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.dash-sidebar { width: 60px; background: var(--pv-primary); opacity: 0.1; border-right: 1px solid var(--pv-border); }
.dash-main { flex: 1; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.dash-header { height: 20px; width: 40%; background: var(--pv-text-muted); opacity: 0.2; border-radius: 1rem; }
.dash-charts { display: flex; gap: 1rem; }
.dash-card { flex: 1; height: 80px; background: var(--pv-primary); opacity: 0.05; border: 1px solid var(--pv-border); border-radius: 0.5rem; }
.dash-list { flex: 1; background: var(--pv-text-muted); opacity: 0.05; border-radius: 0.5rem; }

/* Features Grid */
.mock-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.mock-feature-card {
    text-align: center;
}
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--pv-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Pricing */
.mock-pricing {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}
.pricing-card {
    flex: 1;
    background: var(--pv-bg);
    border: 1px solid var(--pv-border);
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
}
.pricing-card.featured {
    border-color: var(--pv-primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pricing-card h2 { font-size: 3rem; margin: 1rem 0; }
.pricing-card ul { list-style: none; padding: 0; margin: 2rem 0; text-align: left; font-size: 0.9rem; }
.pricing-card li { margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-card li i { color: var(--pv-primary); }

/* Mock Footer */
.mock-footer {
    padding: 4rem 2rem;
    background: var(--pv-surface);
    border-top: 1px solid var(--pv-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Mock Buttons */
.mock-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    cursor: default;
    transition: all 0.2s;
}
.mock-btn-primary { background: var(--pv-primary); color: white; }
.mock-btn-secondary { background: var(--pv-surface); border: 1px solid var(--pv-border); color: var(--pv-text); }

