/* User Segments Test Specific Styles */
.user-segments-content {
    text-align: left;
    padding: 0;
}

.nudge-hero {
    text-align: center;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.nudge-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.nudge-hero h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 40px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    border-left: 4px solid #667eea;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.nudge-process {
    padding: 40px;
    background: #f8f9fa;
}

.nudge-process h4 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    background: #667eea;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    padding: 40px;
    text-align: center;
    background: white;
}

.cta-section h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.cta-section p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
}

.create-nudge-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.create-nudge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-icon {
    font-size: 18px;
}

/* Responsive Design for User Segments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .nudge-hero {
        padding: 30px 20px;
    }

    .nudge-hero h3 {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .nudge-process {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 30px 20px;
    }
}
