.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-glow);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.section-header h1 {
    font-family: var(--bsuite-heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.section-header h1 .highlight {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== */
/* SOCIAL JOB POSTING SECTION */
/* ==================== */
.social-posting-section {
    margin-bottom: 6rem;
}
.social-posting-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
}

/* Left Side - Job Composer */
.job-composer {
    padding: 2.5rem;
    border-right: 1px solid var(--border);
}
.composer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.composer-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.draft-badge {
    padding: 0.3rem 0.75rem;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #f59e0b;
}

/* Job Post Preview */
.job-post-preview {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.post-image-area {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-image-content {
    text-align: center;
    z-index: 2;
    padding: 1.5rem;
}
.hiring-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1rem;
    background: var(--accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.post-image-content h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.post-image-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.post-details {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.post-detail-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}
.post-image-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.1;
    filter: blur(60px);
}
.post-image-decoration.top {
    top: -50px;
    right: -50px;
}
.post-image-decoration.bottom {
    bottom: -50px;
    left: -50px;
}

/* Company Branding */
.company-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: 10px;
}
.company-logo {
    width: 40px;
    height: 40px;
    background: var(--gradient-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
}
.company-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
}
.company-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Post Text */
.post-text {
    margin-top: 1rem;
}
.post-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.post-text .hashtags {
    color: var(--accent);
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* Platform Toggles */
.platform-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.platform-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.platform-toggle:hover {
    border-color: var(--accent);
}
.platform-toggle.active {
    border-color: var(--accent);
    background: var(--accent-glow);
}
.platform-toggle .platform-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: white;
}
.platform-toggle .platform-icon.linkedin {
    background: var(--linkedin);
}
.platform-toggle .platform-icon.facebook {
    background: var(--facebook);
}
.platform-toggle .platform-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.platform-toggle .platform-icon.twitter {
    background: var(--twitter);
}
.platform-toggle .platform-icon.indeed {
    background: var(--indeed);
}
.platform-toggle .platform-icon.glassdoor {
    background: var(--glassdoor);
}
.platform-toggle .platform-icon.naukri {
    background: var(--naukri);
}
.platform-toggle .platform-icon.monster {
    background: var(--monster);
}
.platform-toggle span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.platform-toggle.active span {
    color: var(--text);
}
.platform-toggle .toggle-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-left: auto;
    transition: all 0.3s;
}
.platform-toggle.active .toggle-check {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

/* Right Side - Live Preview */
.live-preview {
    padding: 2.5rem;
    background: var(--bg-secondary);
}
.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.preview-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}
.preview-tabs {
    display: flex;
    gap: 0.5rem;
}
.preview-tab {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.preview-tab:hover {
    transform: scale(1.1);
}
.preview-tab.active {
    border-color: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
.preview-tab.linkedin {
    background: var(--linkedin);
}
.preview-tab.facebook {
    background: var(--facebook);
}
.preview-tab.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.preview-tab.twitter {
    background: var(--twitter);
}

/* Social Preview Cards */
.social-preview-container {
    position: relative;
    height: 480px;
}
.social-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}
.social-preview.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* LinkedIn Preview */
.linkedin-preview {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    color: #000;
}
.linkedin-header {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.linkedin-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
}
.linkedin-user-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}
.linkedin-user-info p {
    font-size: 0.75rem;
    color: #666;
}
.linkedin-user-info small {
    font-size: 0.7rem;
    color: #999;
}
.linkedin-content {
    padding: 0 1rem 1rem;
}
.linkedin-content p {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
}
.linkedin-content .hashtags {
    color: var(--linkedin);
    font-weight: 500;
}
.linkedin-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
}
.linkedin-actions {
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
}
.linkedin-action {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #666;
}

/* Instagram Preview */
.instagram-preview {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    color: #000;
}
.instagram-header {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #eee;
}
.instagram-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 50%;
    padding: 2px;
}
.instagram-avatar-inner {
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--bg-primary);
}
.instagram-user {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
}
.instagram-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1.5rem;
}
.instagram-actions {
    padding: 0.75rem 1rem;
    display: flex;
    gap: 1rem;
}
.instagram-action {
    font-size: 1.25rem;
}
.instagram-caption {
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
    color: #333;
}
.instagram-caption strong {
    font-weight: 600;
}

/* Facebook Preview */
.facebook-preview {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    color: #000;
}
.facebook-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.facebook-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
}
.facebook-user h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}
.facebook-user p {
    font-size: 0.75rem;
    color: #666;
}
.facebook-content {
    padding: 0 1rem 0.75rem;
    font-size: 0.9rem;
    color: #333;
}
.facebook-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
}
.facebook-reactions {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    border-bottom: 1px solid #eee;
}
.facebook-actions {
    padding: 0.5rem;
    display: flex;
    justify-content: space-around;
}
.facebook-action {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Twitter Preview */
.twitter-preview {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    color: #000;
    padding: 1rem;
}
.twitter-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.twitter-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
    flex-shrink: 0;
}
.twitter-content {
    flex: 1;
}
.twitter-user {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.25rem;
}
.twitter-user strong {
    font-size: 0.9rem;
}
.twitter-user span {
    font-size: 0.85rem;
    color: #666;
}
.twitter-text {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.twitter-text a {
    color: var(--linkedin);
    text-decoration: none;
}
.twitter-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
}
.twitter-actions {
    display: flex;
    justify-content: space-between;
    padding-right: 3rem;
}
.twitter-action {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #666;
}

/* Post Button */
.post-now-section {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.selected-platforms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.selected-platforms span {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.selected-count {
    padding: 0.25rem 0.65rem;
    background: var(--accent);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bg-primary);
}


.integrations-section {
    margin-bottom: 6rem;
}
.integrations-section .section-header {
    margin-bottom: 3rem;
}
.integrations-section .section-header h2 {
    font-family: var(--bsuite-heading-font);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

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

.integration-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.integration-card:hover {
    border-color: rgba(74, 222, 128, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.integration-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.integration-card:hover::before {
    transform: scaleX(1);
}

.integration-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.integration-icons {
    display: flex;
    gap: 0.5rem;
}
.integration-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}
.integration-icon.outlook {
    background: var(--outlook);
}
.integration-icon.google {
    background: var(--google);
}
.integration-icon.whatsapp {
    background: var(--whatsapp);
}
.integration-icon.slack {
    background: var(--slack);
}
.integration-icon.teams {
    background: #6264a7;
}
.integration-icon.support {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.integration-icon.jira {
    background: #0052cc;
}
.integration-icon.zendesk {
    background: #03363d;
}

.integration-badge {
    padding: 0.35rem 0.75rem;
    background: var(--accent-glow);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.integration-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: var(--bsuite-heading-font);

}
.integration-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Feature List */
.integration-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: 10px;
}
.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.feature-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Calendar Sync Visual */
.calendar-sync-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    margin-top: 1rem;
}
.calendar-item {
    text-align: center;
}
.calendar-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.5rem;
    color: white;
}
.calendar-item-icon.outlook {
    background: var(--outlook);
}
.calendar-item-icon.google {
    background: var(--google);
}
.calendar-item-icon.buesuite {
    background: var(--gradient-green);
}
.calendar-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.sync-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    animation: pulse-arrow 1.5s ease-in-out infinite;
}
@keyframes pulse-arrow {
    0%,
    100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

/* WhatsApp Actions Visual */
.whatsapp-actions-visual {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1rem;
    margin-top: 1rem;
}
.whatsapp-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.wa-avatar {
    width: 36px;
    height: 36px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}
.wa-bubble {
    background: #dcf8c6;
    padding: 0.75rem 1rem;
    border-radius: 12px 12px 12px 0;
    max-width: 80%;
}
.wa-bubble p {
    font-size: 0.8rem;
    color: #000;
    margin-bottom: 0.5rem;
}
.wa-actions {
    display: flex;
    gap: 0.5rem;
}
.wa-action-btn {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.wa-action-btn.approve {
    background: var(--accent);
    color: var(--bg-primary);
}
.wa-action-btn.reject {
    background: #ef4444;
    color: white;
}

/* Slack Visual */
.slack-visual {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1rem;
    margin-top: 1rem;
}
.slack-channel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}
.slack-hash {
    color: var(--text-muted);
    font-weight: 600;
}
.slack-channel span {
    font-size: 0.85rem;
    font-weight: 500;
}
.slack-message-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
}
.slack-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.slack-msg-content {
    flex: 1;
}
.slack-msg-content strong {
    font-size: 0.8rem;
}
.slack-msg-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Support Ticket Visual */
.ticket-visual {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 1rem;
    margin-top: 1rem;
}
.ticket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 0.5rem;
}
.ticket-item:last-child {
    margin-bottom: 0;
}
.ticket-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ticket-id {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}
.ticket-title {
    font-size: 0.85rem;
    color: var(--text);
}
.ticket-status {
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}
.ticket-status.open {
    background: rgba(249, 115, 22, 0.15);
    color: #f59e0b;
}
.ticket-status.progress {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.ticket-status.resolved {
    background: rgba(74, 222, 128, 0.15);
    color: var(--accent);
}

/* ==================== */
/* JOB BOARDS SECTION */
/* ==================== */
.job-boards-section {
    margin-bottom: 4rem;
}
.job-boards-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
}
.job-boards-header {
    text-align: center;
    margin-bottom: 2rem;
}
.job-boards-header h3 {
    font-family: var(--bsuite-heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.job-boards-header p {
    color: var(--text-muted);
}

.job-boards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.job-board-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}
.job-board-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.job-board-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
}
.job-board-icon.linkedin {
    background: var(--linkedin);
}
.job-board-icon.indeed {
    background: var(--indeed);
}
.job-board-icon.glassdoor {
    background: var(--glassdoor);
}
.job-board-icon.naukri {
    background: var(--naukri);
}
.job-board-icon.monster {
    background: var(--monster);
}
.job-board-icon.ziprecruiter {
    background: #5ba71b;
}
.job-board-icon.dice {
    background: #eb1c26;
}
.job-board-icon.angellist {
    background: #000;
}
.job-board-item span {
    font-size: 0.95rem;
    font-weight: 600;
}
.job-board-item .sync-badge {
    padding: 0.2rem 0.5rem;
    background: var(--accent-glow);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1200px) {
    .social-posting-card {
        grid-template-columns: 1fr;
    }
    .live-preview {
        border-top: 1px solid var(--border);
    }
}
@media (max-width: 1024px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .integrations-page {
        padding: 2rem 1rem;
    }
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    .platform-toggles {
        justify-content: center;
    }
    .calendar-sync-visual {
        flex-direction: column;
    }
    .sync-arrow {
        transform: rotate(90deg);
    }
    .job-boards-grid {
        flex-direction: column;
    }
    .post-now-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
