/* ====== PULSE-PAGE SPECIFIC STYLES ====== */
        .pulse-hero {
            background: var(--gradient-hero);
            padding: 140px 0 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pulse-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 60%, rgba(45, 53, 130, 0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        .pulse-hero h1 {
            color: #fff;
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: -2px;
            margin-bottom: 16px;
        }

        .pulse-hero p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
            max-width: 560px;
            margin: 0 auto 32px;
            line-height: 1.8;
        }

        /* ====== PLATFORM TABS ====== */
        .platform-tabs-wrap {
            position: sticky;
            top: 60px;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            box-shadow: 0 2px 16px rgba(11, 15, 26, 0.06);
        }

        .platform-tabs {
            display: flex;
            align-items: center;
            gap: 0;
            overflow-x: auto;
            scrollbar-width: none;
            padding: 0 28px;
            max-width: var(--container-max);
            margin: 0 auto;
        }

        .platform-tabs::-webkit-scrollbar {
            display: none;
        }

        .platform-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 16px 22px;
            border-bottom: 3px solid transparent;
            color: var(--text-muted);
            font-weight: 600;
            font-size: 0.87rem;
            white-space: nowrap;
            cursor: pointer;
            transition: var(--transition-fast);
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
        }

        .platform-tab:hover {
            color: var(--text-primary);
        }

        .platform-tab.active {
            color: var(--accent-primary);
            border-bottom-color: var(--accent-primary);
        }

        .platform-tab .tab-icon {
            font-size: 1.1rem;
        }

        .platform-tab .tab-count {
            font-size: 0.7rem;
            background: var(--bg-section);
            color: var(--text-muted);
            padding: 2px 7px;
            border-radius: 99px;
            font-weight: 700;
        }

        .platform-tab.active .tab-count {
            background: rgba(45, 53, 130, 0.1);
            color: var(--accent-primary);
        }

        /* ====== FILTER BAR ====== */
        .filter-bar {
            background: var(--bg-section);
            border-bottom: 1px solid var(--border-subtle);
            padding: 12px 0;
        }

        .filter-bar-inner {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 28px;
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            flex-shrink: 0;
        }

        .date-filter-btns {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .date-filter-btn {
            padding: 6px 14px;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--border-medium);
            background: #fff;
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .date-filter-btn.active,
        .date-filter-btn:hover {
            background: var(--accent-primary);
            color: #fff;
            border-color: var(--accent-primary);
        }

        .filter-sep {
            width: 1px;
            height: 24px;
            background: var(--border-medium);
            flex-shrink: 0;
        }

        .sort-select {
            padding: 7px 14px;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--border-medium);
            background: #fff;
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            font-family: var(--font-body);
            appearance: none;
            padding-right: 28px;
        }

        /* ====== PLATFORM PANELS ====== */
        .platform-panel {
            display: none;
        }

        .platform-panel.active {
            display: block;
        }

        /* ====== REVIEW FEED ====== */
        .reviews-feed {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 22px;
            margin-top: 0;
        }

        .review-card-v2 {
            background: #fff;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            box-shadow: var(--card-shadow);
            transition: var(--transition-base);
            overflow: hidden;
        }

        .review-card-v2:hover {
            border-color: var(--border-accent);
            box-shadow: var(--card-shadow-hover);
            transform: translateY(-4px);
        }

        .rc-header {
            padding: 16px 20px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .rc-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .rc-meta {
            flex: 1;
        }

        .rc-name {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .rc-role {
            font-size: 0.76rem;
            color: var(--text-muted);
        }

        .rc-platform-badge {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 99px;
            flex-shrink: 0;
        }

        .badge-linkedin {
            background: rgba(0, 119, 181, 0.1);
            color: #0077B5;
        }

        .badge-facebook {
            background: rgba(24, 119, 242, 0.1);
            color: #1877F2;
        }

        .badge-instagram {
            background: rgba(193, 53, 132, 0.1);
            color: #C13584;
        }

        .badge-twitter {
            background: rgba(0, 0, 0, 0.06);
            color: #14171A;
        }

        .badge-others {
            background: rgba(45, 53, 130, 0.08);
            color: var(--accent-primary);
        }

        .rc-body {
            padding: 14px 20px;
        }

        .rc-text {
            font-size: 0.92rem;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .rc-image-wrap {
            padding: 10px 20px 0;
        }

        .rc-image {
            width: 100%;
            border-radius: var(--radius-sm);
            object-fit: cover;
            max-height: 240px;
            display: block;
        }

        .rc-image-placeholder {
            width: 100%;
            height: 200px;
            background: var(--bg-section);
            border-radius: var(--radius-sm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .rc-image-placeholder-icon {
            font-size: 2rem;
        }

        .rc-footer {
            padding: 12px 20px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-subtle);
            margin-top: 14px;
        }

        .rc-date {
            font-size: 0.76rem;
            color: var(--text-muted);
        }

        .rc-reactions {
            display: flex;
            gap: 12px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        .rc-reaction {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* ====== PHOTO WALL ====== */
        .photo-wall-section {
            background: var(--bg-section);
            border-top: 1px solid var(--border-subtle);
            padding: 90px 0;
        }

        .photo-wall-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .photo-wall-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 14px;
        }

        .photo-wall-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            aspect-ratio: 1;
            position: relative;
            cursor: pointer;
            background: var(--bg-primary);
            border: 1px solid var(--border-subtle);
            transition: var(--transition-base);
        }

        .photo-wall-item:hover {
            transform: scale(1.03);
            box-shadow: var(--card-shadow-hover);
            z-index: 2;
        }

        .photo-wall-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .photo-wall-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--bg-section) 0%, #e8ecf8 100%);
            color: var(--text-muted);
            font-size: 0.8rem;
            padding: 20px;
            text-align: center;
        }

        .photo-wall-placeholder .ph-icon {
            font-size: 2rem;
            opacity: 0.5;
        }

        .photo-wall-overlay {
            position: absolute;
            inset: 0;
            background: rgba(11, 15, 26, 0.55);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .photo-wall-item:hover .photo-wall-overlay {
            opacity: 1;
        }

        .photo-wall-overlay span {
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            margin-top: 6px;
        }

        .photo-upload-cta {
            text-align: center;
            margin-top: 40px;
            padding: 30px 24px;
            background: #fff;
            border: 1.5px dashed var(--border-accent);
            border-radius: var(--radius-md);
            max-width: 480px;
            margin: 40px auto 0;
        }

        .photo-upload-cta p {
            color: var(--text-muted);
            font-size: 0.88rem;
            margin-top: 8px;
            line-height: 1.6;
        }

        /* ====== LIGHTBOX ====== */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(11, 15, 26, 0.92);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            backdrop-filter: blur(12px);
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 800px;
            max-height: 80vh;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: var(--radius-md);
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: -44px;
            right: 0;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            line-height: 1;
            background: none;
            border: none;
            padding: 4px;
        }

        .lightbox-caption {
            text-align: center;
            margin-top: 12px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.86rem;
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 60px 24px;
            color: var(--text-muted);
        }

        .empty-state-icon {
            font-size: 3rem;
            margin-bottom: 14px;
        }

        .empty-state p {
            font-size: 0.92rem;
            line-height: 1.7;
        }

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

            .photo-wall-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .platform-tabs {
                gap: 0;
            }

            .platform-tab {
                padding: 14px 14px;
                font-size: 0.8rem;
            }
        }