/* Marketing CRM Specific Styles */

/* Hero Section */
.crm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--accent-color-rgb, 139, 92, 246), 0.9), rgba(var(--primary-color-rgb, 14, 165, 233), 0.9));
    z-index: 2;
}

.crm-hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 48rem;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.hero-stats .stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Features Overview */
.features-overview {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.features-overview .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features-overview .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.features-overview .feature-card:hover::before {
    transform: scaleX(1);
}

.features-overview .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(var(--accent-color-rgb, 139, 92, 246), 0.1);
    border-color: rgba(var(--accent-color-rgb, 139, 92, 246), 0.2);
}

.features-overview .feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.features-overview .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.features-overview .feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.features-overview .feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.features-overview .feature-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.875rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Key Benefits */
.key-benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50), rgba(139, 92, 246, 0.05));
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.benefits-text > p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--white);
    font-size: 1.125rem;
}

.benefit-content h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Dashboard Preview */
.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    width: 100%;
    max-width: 28rem;
}

.dashboard-header {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-title {
    font-weight: 600;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.control.active {
    background: var(--white);
}

.dashboard-content {
    padding: 1.5rem;
}

.metric-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.metric-trend {
    font-size: 0.875rem;
    font-weight: 500;
}

.metric-trend.positive {
    color: var(--secondary-color);
}

/* Adaptive Text Color - يتكيف مع لون الخلفية */
.adaptive-text {
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* للخلفيات الداكنة - النص أبيض */
.dark-bg .adaptive-text,
.metric-card.dark-bg .adaptive-text,
.cta-section.dark-bg .adaptive-text,
.key-benefits.dark-bg .adaptive-text,
.detailed-features.dark-bg .adaptive-text,
.integrations.dark-bg .adaptive-text {
    color: #ffffff !important;
}

/* للخلفيات الفاتحة - النص أسود */
.light-bg .adaptive-text,
.metric-card.light-bg .adaptive-text,
.cta-section.light-bg .adaptive-text,
.key-benefits.light-bg .adaptive-text,
.detailed-features.light-bg .adaptive-text,
.integrations.light-bg .adaptive-text {
    color: #000000 !important;
}

/* للخلفيات الملونة - النص أبيض */
.colored-bg .adaptive-text,
.metric-card.colored-bg .adaptive-text,
.cta-section.colored-bg .adaptive-text,
.key-benefits.colored-bg .adaptive-text,
.detailed-features.colored-bg .adaptive-text,
.integrations.colored-bg .adaptive-text {
    color: #ffffff !important;
}

/* Auto detection based on background brightness */
.metric-card {
    position: relative;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

/* JavaScript will add these classes dynamically */
.metric-card[data-bg-type="dark"] .adaptive-text {
    color: #ffffff !important;
}

.metric-card[data-bg-type="light"] .adaptive-text {
    color: #000000 !important;
}

.metric-card[data-bg-type="colored"] .adaptive-text {
    color: #ffffff !important;
}

/* CTA Section Adaptive Text */
.cta-section[data-bg-type="dark"] .adaptive-text {
    color: #ffffff !important;
}

.cta-section[data-bg-type="light"] .adaptive-text {
    color: #000000 !important;
}

.cta-section[data-bg-type="colored"] .adaptive-text {
    color: #ffffff !important;
}

/* Force white text for CTA title and description only */
.cta-section h2.adaptive-text,
.cta-section p.adaptive-text {
    color: #ffffff !important;
}

/* Other Sections Adaptive Text */
.key-benefits[data-bg-type="dark"] .adaptive-text,
.detailed-features[data-bg-type="dark"] .adaptive-text,
.integrations[data-bg-type="dark"] .adaptive-text {
    color: #ffffff !important;
}

.key-benefits[data-bg-type="light"] .adaptive-text,
.detailed-features[data-bg-type="light"] .adaptive-text,
.integrations[data-bg-type="light"] .adaptive-text {
    color: #000000 !important;
}

.key-benefits[data-bg-type="colored"] .adaptive-text,
.detailed-features[data-bg-type="colored"] .adaptive-text,
.integrations[data-bg-type="colored"] .adaptive-text {
    color: #ffffff !important;
}

.chart-area {
    height: 6rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
}

.bar {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 0.25rem;
    flex: 1;
    min-height: 0.5rem;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
    transform: scaleY(1.1);
}

/* Detailed Features */
.detailed-features {
    padding: 5rem 0;
    background: var(--white);
}

.feature-tabs {
    max-width: 80rem;
    margin: 0 auto;
}

.tab-navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: var(--white);
    border-color: var(--gray-300);
    color: var(--text-color);
    opacity: 0.9;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.tab-btn i {
    font-size: 1.5rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.panel-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.panel-text > p {
    font-size: 1.125rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-highlights {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.highlight i {
    color: var(--accent-color);
    font-size: 1.125rem;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-stats .stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.1));
    border-radius: 0.5rem;
}

.feature-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.feature-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Panel Visuals */
.panel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.campaign-mockup,
.influencer-mockup,
.analytics-mockup,
.automation-mockup {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 24rem;
}

.mockup-header {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    font-weight: 600;
}

/* Campaign Mockup */
.campaign-list {
    padding: 1.5rem;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.campaign-item:hover {
    background: var(--gray-50);
}

.campaign-item.active {
    background: rgba(var(--accent-color-rgb, 139, 92, 246), 0.1);
}

.campaign-status {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--secondary-color);
}

.campaign-name {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.campaign-metrics {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.6;
}

/* Influencer Mockup */
.influencer-grid {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.influencer-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.influencer-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.influencer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
}

.influencer-info {
    flex: 1;
}

.influencer-name {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.influencer-stats {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.6;
}

.influencer-status {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.influencer-status.active {
    background: var(--secondary-color);
}

.influencer-status.pending {
    background: #f59e0b; /* Keep this as is since it's a specific status color */
}

/* Analytics Mockup */
.analytics-content {
    padding: 1.5rem;
}

.chart-container {
    margin-bottom: 1.5rem;
}

.chart-title {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.performance-chart {
    position: relative;
    height: 8rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: translateY(-50%);
}

.chart-points {
    position: relative;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.metric-value {
    font-weight: 600;
    color: var(--text-color);
}

/* Automation Mockup */
.workflow-diagram {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
}

.workflow-arrow {
    width: 1.5rem;
    height: 2px;
    background: var(--gray-300);
    position: relative;
}

.workflow-arrow::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--gray-300);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* Integrations */
.integrations {
    padding: 5rem 0;
    background: var(--white);
}

.integration-categories {
    display: grid;
    gap: 3rem;
}

.category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.integration-item:hover {
    background: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(var(--accent-color-rgb, 139, 92, 246), 0.1);
}

.integration-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.integration-item span {
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.8;
}

/* Pricing */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50), rgba(139, 92, 246, 0.05));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.7;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
}

.period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
}

.plan-header p {
    color: var(--text-color);
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.plan-features .feature:last-child {
    border-bottom: none;
}

.plan-features .feature i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.plan-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--accent-color-rgb, 139, 92, 246), 0.3);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--text-color), rgba(var(--text-color-rgb), 0.8));
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-content,
    .panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tab-navigation {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .workflow-diagram {
        flex-direction: column;
        gap: 1rem;
    }

    .workflow-arrow {
        width: 2px;
        height: 1.5rem;
        transform: rotate(90deg);
    }

    .workflow-arrow::after {
        right: -3px;
        top: -4px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid var(--gray-300);
        border-bottom: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animations for dashboard elements */
.metric-card,
.bar,
.campaign-item,
.influencer-card {
    animation: fadeInUp 0.6s ease forwards;
}

.metric-card:nth-child(1) { animation-delay: 0.1s; }
.metric-card:nth-child(2) { animation-delay: 0.2s; }
.metric-card:nth-child(3) { animation-delay: 0.3s; }

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }
.bar:nth-child(6) { animation-delay: 0.6s; }

.campaign-item:nth-child(1) { animation-delay: 0.1s; }
.campaign-item:nth-child(2) { animation-delay: 0.2s; }
.campaign-item:nth-child(3) { animation-delay: 0.3s; }

.influencer-card:nth-child(1) { animation-delay: 0.1s; }
.influencer-card:nth-child(2) { animation-delay: 0.2s; }
.influencer-card:nth-child(3) { animation-delay: 0.3s; }