/* Gallery Specific Styles */
.gallery-main {
    background-color: var(--gray-50);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 3rem;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.gallery-stats .stat-item {
    text-align: center;
}

.gallery-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-stats .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    color: white;
}

/* Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--gray-600);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Mockup Cards */
.mockup-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mockup-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mockup-card.coming-soon {
    opacity: 0.7;
}

.mockup-card.coming-soon:hover {
    transform: translateY(-2px);
}

/* Browser Mockup */
.mockup-preview {
    padding: 1.5rem;
    background: var(--gray-50);
}

.mockup-browser {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.browser-header {
    background: var(--gray-200);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.25rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background-color: #ff5f57;
}

.dot.yellow {
    background-color: #ffbd2e;
}

.dot.green {
    background-color: #28ca42;
}

.browser-url {
    background: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--gray-600);
    flex: 1;
}

.browser-content {
    height: 200px;
    position: relative;
    overflow: hidden;
}

/* Landing Preview */
.landing-preview {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-hero {
    text-align: center;
}

.preview-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.brand-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
}

.preview-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.preview-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.preview-btn {
    width: 80px;
    height: 24px;
    border-radius: 12px;
}

.preview-btn.primary {
    background: var(--primary);
}

.preview-btn.secondary {
    background: var(--gray-300);
}

.preview-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.feature-item {
    width: 40px;
    height: 30px;
    background: var(--gray-200);
    border-radius: 4px;
}

/* Auth Preview */
.auth-preview {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 1rem;
    color: var(--white);
    text-align: center;
}

.preview-auth-header {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.preview-role-selection {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.role-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.role-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.role-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.preview-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field {
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.form-button {
    height: 32px;
    background: var(--white);
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Dashboard Preview */
.dashboard-preview {
    display: flex;
    height: 100%;
}

.preview-sidebar {
    width: 60px;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    padding: 0.5rem;
}

.preview-sidebar.talent {
    background: var(--gray-50);
}

.sidebar-brand {
    width: 100%;
    height: 20px;
    background: var(--primary);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    height: 16px;
    background: var(--gray-200);
    border-radius: 4px;
}

.nav-item.active {
    background: var(--primary);
}

.preview-main {
    flex: 1;
    padding: 0.75rem;
    background: var(--gray-50);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.header-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
}

.header-user {
    width: 24px;
    height: 24px;
    background: var(--gray-300);
    border-radius: 50%;
}

.profile-status {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.profile-status.active {
    background: var(--success);
    color: var(--white);
}

.preview-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.alert-icon {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
}

.alert-text {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stat-card {
    height: 30px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
    height: 60px;
}

.content-card {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Coming Soon Preview */
.coming-soon-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.coming-soon-text {
    font-weight: 500;
    opacity: 0.7;
}

/* Mockup Info */
.mockup-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mockup-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.mockup-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.mockup-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.mockup-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
}

/* Gallery Actions */
.gallery-actions {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.gallery-actions h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.action-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.action-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.action-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.action-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Gallery Footer */
.gallery-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 0;
    margin-top: 4rem;
}

.gallery-footer .container {
    max-width: 1200px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-left p {
    font-size: 0.875rem;
}

.tech-stack {
    display: flex;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--gray-700);
    color: var(--gray-300);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Active brand link */
.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* New Mockup Previews */
.step-indicator {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.preview-form .form-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.preview-form .form-field {
    height: 0.75rem;
    background: var(--gray-200);
    border-radius: 0.25rem;
}

.preview-form .form-field.large {
    height: 1.5rem;
}

.ai-suggestions-panel {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border-left: 3px solid var(--primary);
}

.ai-icon {
    width: 1rem;
    height: 1rem;
    background: var(--primary);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.suggestion-item {
    height: 0.5rem;
    background: var(--primary);
    opacity: 0.3;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

.suggestion-item:last-child {
    margin-bottom: 0;
    width: 70%;
}

/* Search & Matching Preview */
.search-bar {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 0.5rem;
    padding: 0.5rem;
    flex: 1;
    border: 1px solid var(--gray-200);
}

.search-icon {
    width: 0.75rem;
    height: 0.75rem;
    background: var(--gray-400);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.search-input {
    height: 0.5rem;
    background: var(--gray-100);
    border-radius: 0.25rem;
    flex: 1;
}

.view-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: 0.25rem;
    padding: 0.125rem;
    margin-left: 0.75rem;
}

.toggle-btn {
    width: 1.5rem;
    height: 1rem;
    background: var(--gray-200);
    border-radius: 0.125rem;
    margin-right: 0.125rem;
}

.toggle-btn:last-child {
    margin-right: 0;
}

.toggle-btn.active {
    background: var(--primary);
}

.preview-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.filter-chip {
    height: 1rem;
    background: var(--gray-200);
    border-radius: 1rem;
    width: 3rem;
}

.filter-chip:first-child {
    background: var(--primary);
    opacity: 0.8;
}

.preview-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.talent-card {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
}

.talent-avatar {
    width: 2rem;
    height: 2rem;
    background: var(--gray-300);
    border-radius: 50%;
    margin-right: 0.75rem;
}

.talent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.talent-info::before {
    content: '';
    height: 0.75rem;
    background: var(--gray-400);
    border-radius: 0.125rem;
    width: 60%;
}

.talent-info::after {
    content: '';
    height: 0.5rem;
    background: var(--gray-300);
    border-radius: 0.125rem;
    width: 40%;
}

.match-score {
    background: var(--success);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Messages Preview */
.preview-main.messages {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    height: 100%;
}

.conversations-panel {
    border-right: 1px solid var(--gray-200);
    padding: 0.75rem;
}

.conversation-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.conversation-item.active {
    background: var(--primary);
    opacity: 0.9;
}

.conv-avatar {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--gray-300);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.conv-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.conv-info::before {
    content: '';
    height: 0.5rem;
    background: var(--gray-700);
    border-radius: 0.125rem;
    width: 70%;
}

.conv-info::after {
    content: '';
    height: 0.375rem;
    background: var(--gray-500);
    border-radius: 0.125rem;
    width: 90%;
}

.conversation-item.active .conv-info::before,
.conversation-item.active .conv-info::after {
    background: var(--white);
    opacity: 0.9;
}

.unread-badge {
    background: var(--white);
    color: var(--primary);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 600;
}

.chat-area {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0.5rem;
}

.chat-user {
    height: 0.75rem;
    background: var(--gray-400);
    border-radius: 0.125rem;
    width: 40%;
}

.chat-actions {
    display: flex;
    gap: 0.25rem;
}

.chat-actions::before,
.chat-actions::after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    background: var(--gray-300);
    border-radius: 50%;
}

.messages-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.message {
    max-width: 70%;
    padding: 0.375rem 0.5rem;
    border-radius: 0.75rem;
    height: 1rem;
}

.message.received {
    background: var(--gray-200);
    align-self: flex-start;
}

.message.sent {
    background: var(--primary);
    align-self: flex-end;
}

.message-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
}

.input-area {
    flex: 1;
    height: 1.5rem;
    background: var(--gray-100);
    border-radius: 0.75rem;
}

.send-btn {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary);
    border-radius: 50%;
}

/* Contracts Preview */
.content-filters {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.filter-pill {
    height: 1.5rem;
    background: var(--gray-200);
    border-radius: 1rem;
    width: 3rem;
    position: relative;
}

.filter-pill.active {
    background: var(--primary);
}

.search-input {
    flex: 1;
    height: 1.5rem;
    background: var(--gray-100);
    border-radius: 0.75rem;
    margin-left: auto;
    width: 40%;
}

.content-table {
    padding: 0.5rem;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr 0.5fr;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0.5rem;
}

.table-header::before {
    content: '';
    height: 0.75rem;
    background: var(--gray-400);
    border-radius: 0.125rem;
}

.table-header::after {
    content: '';
    height: 0.75rem;
    background: var(--gray-400);
    border-radius: 0.125rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr 0.5fr;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.row-cell {
    height: 0.75rem;
    background: var(--gray-300);
    border-radius: 0.125rem;
}

.row-badge {
    height: 1.25rem;
    border-radius: 0.75rem;
    width: 4rem;
    position: relative;
    opacity: 0.9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.row-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 40%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
}

.row-badge.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.row-badge.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.row-badge.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.row-actions {
    display: flex;
    gap: 0.25rem;
}

.row-actions::before,
.row-actions::after {
    content: '';
    width: 1rem;
    height: 1rem;
    background: var(--gray-300);
    border-radius: 0.25rem;
}

/* Profile Preview Styles */
.profile-preview {
    background: var(--gray-50);
    overflow: hidden;
}

.preview-header {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: white;
    position: relative;
}

.gradient-blue {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.profile-avatar-preview {
    position: relative;
    flex-shrink: 0;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid white;
}

.avatar-badge.verified {
    background: var(--success);
}

.avatar-badge.premium {
    background: var(--warning);
}

.availability-indicator {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 8px;
    background: var(--success);
    border-radius: 4px;
}

.profile-info-preview {
    flex: 1;
    min-width: 0;
}

.profile-name-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    width: 80px;
    margin-bottom: 4px;
}

.profile-type-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    width: 100px;
    margin-bottom: 8px;
}

.profile-rate-preview {
    height: 10px;
    background: var(--warning);
    border-radius: 2px;
    width: 60px;
    margin-bottom: 8px;
}

.profile-stats-preview {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.stat-preview {
    width: 20px;
    height: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.profile-badges-preview {
    display: flex;
    gap: 4px;
}

.badge-preview {
    width: 24px;
    height: 8px;
    border-radius: 4px;
}

.badge-preview.premium {
    background: rgba(245, 158, 11, 0.8);
}

.badge-preview.certified {
    background: rgba(16, 185, 129, 0.8);
}

.badge-preview.fast {
    background: rgba(37, 99, 235, 0.8);
}

.profile-actions-preview {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-self: flex-start;
}

.action-btn {
    width: 32px;
    height: 12px;
    border-radius: 6px;
}

.action-btn.primary {
    background: rgba(255, 255, 255, 0.9);
}

.action-btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.preview-content-layout {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: var(--gray-50);
}

.content-main-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-preview {
    background: white;
    border-radius: 4px;
    padding: 6px;
}

.section-title-preview {
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    width: 60px;
    margin-bottom: 4px;
}

.section-text-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.text-line {
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
}

.text-line.short {
    width: 70%;
}

.specialties-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: white;
    border-radius: 4px;
    padding: 6px;
}

.specialty-card-preview {
    background: var(--gray-100);
    border-radius: 3px;
    height: 20px;
    position: relative;
}

.specialty-card-preview::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.skills-preview {
    background: white;
    border-radius: 4px;
    padding: 6px;
}

.skill-category-preview {
    margin-bottom: 4px;
}

.skill-tags-preview {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}

.skill-tag {
    height: 6px;
    border-radius: 3px;
    width: 20px;
}

.skill-tag.expert {
    background: var(--success);
}

.skill-tag.advanced {
    background: var(--primary);
}

.skill-tag.intermediate {
    background: var(--warning);
}

.timeline-preview {
    background: white;
    border-radius: 4px;
    padding: 6px;
    position: relative;
}

.timeline-preview::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--gray-200);
}

.timeline-item-preview {
    margin-left: 12px;
    margin-bottom: 4px;
    position: relative;
}

.timeline-item-preview::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2px;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.timeline-item-preview:last-child {
    margin-bottom: 0;
}

.sidebar-preview {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-card-preview {
    background: white;
    border-radius: 3px;
    height: 24px;
    position: relative;
}

.review-stars-preview {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 4px;
    background: var(--warning);
    border-radius: 2px;
}

.sidebar-cta-preview {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 3px;
    height: 28px;
    position: relative;
}

.sidebar-cta-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-main {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mockup-card {
        max-width: none;
    }
    
    .mockup-features {
        gap: 0.5rem;
    }
    
    .mockup-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        justify-content: center;
    }
    
    .gallery-actions {
        text-align: center;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .preview-main.messages {
        grid-template-columns: 1fr;
    }
    
    .conversations-panel {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-header {
        padding: 2rem 1rem;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0.25rem;
    }
    
    .preview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
